Skip to content

Commit

Permalink
Order composer configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanueleMinotto committed May 27, 2016
1 parent f36c883 commit fbfeb33
Showing 1 changed file with 22 additions and 19 deletions.
41 changes: 22 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
{
"name": "adespresso/feature-bundle",
"description": "Manage release of new features",
"license": "Apache-2.0",
"type": "symfony-bundle",
"authors": [
{
"name": "Carlo Forghieri",
"email": "[email protected]"
"email": "[email protected]",
"name": "Carlo Forghieri"
}
],
"require": {
"php": "^5.4||^7.0",
"symfony/framework-bundle": "^2.3||^3.0",
"symfony/security": "^2.3||^3.0",
"symfony/twig-bundle": "^2.3||^3.0",
"doctrine/orm": "^2.2.3",
"friendsofsymfony/user-bundle": "1.3.*",
"sonata-project/admin-bundle": "^2.3.4",
"sonata-project/doctrine-orm-admin-bundle": "^2.3.1"
},
"autoload": {
"exclude-from-classmap": [
"/Tests/"
Expand All @@ -27,9 +13,26 @@
"Ae\\FeatureBundle\\": ""
}
},
"config": {
"sort-packages": true
},
"description": "Manage release of new features",
"license": "Apache-2.0",
"name": "adespresso/feature-bundle",
"require": {
"php": "^5.4 || ^7.0",
"doctrine/orm": "^2.2.3",
"friendsofsymfony/user-bundle": "1.3.*",
"sonata-project/admin-bundle": "^2.3.4",
"sonata-project/doctrine-orm-admin-bundle": "^2.3.1",
"symfony/framework-bundle": "^2.7 || ^3.0",
"symfony/security": "^2.3 || ^3.0",
"symfony/twig-bundle": "^2.3 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8||^5.0",
"fabpot/php-cs-fixer": "^1.11",
"matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
"fabpot/php-cs-fixer": "^1.11"
}
"phpunit/phpunit": "^4.8 || ^5.0"
},
"type": "symfony-bundle"
}

0 comments on commit fbfeb33

Please sign in to comment.