Skip to content

Commit

Permalink
Switched to caret operator for version constraints in composer.json
Browse files Browse the repository at this point in the history
It's now the recommended composer operator
see https://getcomposer.org/doc/articles/versions.md\#caret
  • Loading branch information
yohang committed Dec 1, 2015
1 parent ea8bca6 commit e60cb8d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions composer.json
Expand Up @@ -18,17 +18,17 @@
],
"require": {
"php": ">=5.3.9",
"symfony/options-resolver": "~2.6|~3.0",
"symfony/event-dispatcher": "~2.6|~3.0",
"symfony/property-access": "~2.6|~3.0"
"symfony/options-resolver": "^2.6|^3.0",
"symfony/event-dispatcher": "^2.6|^3.0",
"symfony/property-access": "^2.6|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"pimple/pimple": "~1.0",
"symfony/dependency-injection": "~2.6|~3.0",
"symfony/framework-bundle": "~2.6|~3.0",
"symfony/security": "~2.6|~3.0",
"twig/twig": "~1.13"
"phpunit/phpunit": "^4.0",
"pimple/pimple": "^1.0",
"symfony/dependency-injection": "^2.6|^3.0",
"symfony/framework-bundle": "^2.6|^3.0",
"symfony/security": "^2.6|^3.0",
"twig/twig": "^1.13"
},
"suggest": {
"pimple/pimple": "Needed for use with PimpleFactory",
Expand Down

0 comments on commit e60cb8d

Please sign in to comment.