Skip to content

Commit

Permalink
prepare for stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmunir committed Nov 2, 2014
1 parent b7bdcd5 commit 589d64d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 25 deletions.
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,14 @@ The preferred way to install this extension is through [composer](http://getcomp

Either run

```
php composer.phar require --prefer-dist mdmsoft/yii2-autonumber "*"
```

for dev-master

```
php composer.phar require --prefer-dist mdmsoft/yii2-autonumber "dev-master"
```

or add

```
"mdmsoft/yii2-autonumber": "*"
"mdmsoft/yii2-autonumber": "dev-master"
```

to the require section of your `composer.json` file.
Expand Down
43 changes: 25 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
{
"name": "mdmsoft/yii2-autonumber",
"description": "Auto number extension for the Yii framework",
"keywords": ["yii2"," extension"," autonumber"," behavior"],
"license": "BSD-3-Clause",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Misbahul D Munir",
"email": "misbahuldmunir@gmail.com"
}
],
"require": {
"yiisoft/yii2": "*"
},
"autoload": {
"psr-4": { "mdm\\autonumber\\": "" }
}
"name": "mdmsoft/yii2-autonumber",
"description": "Auto number extension for the Yii framework",
"keywords": ["yii2", " extension", " autonumber", " behavior"],
"license": "BSD-3-Clause",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Misbahul D Munir",
"email": "misbahuldmunir@gmail.com"
}
],
"require": {
"yiisoft/yii2": "*"
},
"autoload": {
"psr-4": {
"mdm\\autonumber\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}

0 comments on commit 589d64d

Please sign in to comment.