Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Composer improvements
Browse files Browse the repository at this point in the history
* 3.x-dev
* Use new composer constraints notation
* Add PHP requirements
* Remove minimum-stability
  • Loading branch information
soullivaneuh committed May 11, 2016
1 parent 495913a commit 888d901
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,41 +17,40 @@
}
],
"require": {
"symfony/framework-bundle": "~2.3|~3.0",
"sonata-project/doctrine-extensions": "~1.0",
"sonata-project/easy-extends-bundle": "~2.1",
"php": "^5.3 || ^7.0",
"symfony/framework-bundle": "^2.3 || ^3.0",
"sonata-project/doctrine-extensions": "^1.0",
"sonata-project/easy-extends-bundle": "^2.1",
"sonata-project/core-bundle": "^2.3.10",
"sonata-project/datagrid-bundle": "~2.2",
"zendframework/zenddiagnostics": "~1.0"
"sonata-project/datagrid-bundle": "^2.2",
"zendframework/zenddiagnostics": "^1.0"
},
"suggest": {
"sonata-project/doctrine-orm-admin-bundle": "2.2.*",
"guzzle/guzzle" : "*",
"liip/monitor-bundle": "~1.0",
"liip/monitor-bundle": "^1.0",
"videlalvaro/php-amqplib": "2.0.*"
},
"require-dev": {
"sonata-project/doctrine-orm-admin-bundle": "~2.2",
"sonata-project/doctrine-orm-admin-bundle": "^2.2",
"guzzle/guzzle" : "*",
"videlalvaro/php-amqplib": "~2.0",
"liip/monitor-bundle": "~2.0",
"symfony/phpunit-bridge": "~2.7|~3.0",
"swiftmailer/swiftmailer": "~4.3|~5",
"friendsofsymfony/rest-bundle": "~1.1",
"jms/serializer-bundle": "~0.11|~1.0",
"nelmio/api-doc-bundle": "~2.4"
"videlalvaro/php-amqplib": "^2.0",
"liip/monitor-bundle": "^2.0",
"symfony/phpunit-bridge": "^2.7 || ^3.0",
"swiftmailer/swiftmailer": "^4.3 || ^5",
"friendsofsymfony/rest-bundle": "^1.1",
"jms/serializer-bundle": "^0.11 || ^1.0",
"nelmio/api-doc-bundle": "^2.4"
},
"conflict": {
"jms/serializer": "<0.13"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "Sonata\\NotificationBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
"dev-master": "3.x-dev"
}
}
}

0 comments on commit 888d901

Please sign in to comment.