Skip to content

Commit

Permalink
v3.1.2
Browse files Browse the repository at this point in the history
* Improved performances by reducing call within `Illuminate\Container\Container`.

Signed-off-by: crynobone <[email protected]>
  • Loading branch information
crynobone committed Jun 16, 2015
1 parent 27091af commit fc2f2e5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
},
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.1.*",
"orchestra/contracts": "3.1.*"
"illuminate/support": "~5.1.0",
"orchestra/contracts": "~3.1.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"illuminate/database": "5.1.*",
"illuminate/events": "5.1.*",
"illuminate/routing": "5.1.*",
"illuminate/session": "5.1.*",
"illuminate/validation": "5.1.*"
"illuminate/database": "~5.1.0",
"illuminate/events": "~5.1.0",
"illuminate/routing": "~5.1.0",
"illuminate/session": "~5.1.0",
"illuminate/validation": "~5.1.0"
},
"replace": {
"orchestra/support-core": "self.version",
Expand Down
4 changes: 4 additions & 0 deletions docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ title: Support Change Log

## Version 3.1 {#v3-1}

### v3.1.2 {#v3-1-2}

* Improved performances by reducing call within `Illuminate\Container\Container`.

### v3.1.1 {#v3-1-1}

* Fixes `Orchestra\Support\Providers\Traits\EventProviderTrait` import.
Expand Down
2 changes: 1 addition & 1 deletion src/Facades/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.1.*"
"illuminate/support": "~5.1.0"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.1).",
Expand Down
4 changes: 2 additions & 2 deletions src/Providers/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
},
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.1.*",
"orchestra/contracts": "3.1.*"
"illuminate/support": "~5.1.0",
"orchestra/contracts": "~3.1.0"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.1).",
Expand Down
4 changes: 2 additions & 2 deletions src/Support/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
},
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.1.*",
"orchestra/contracts": "3.1.*"
"illuminate/support": "~5.1.0",
"orchestra/contracts": "~3.1.0"
},
"suggest": {
"laravel/framework": "Allow using orchestra/support component outside of Orchestra Platform (~5.1).",
Expand Down

0 comments on commit fc2f2e5

Please sign in to comment.