Updated composer/travis settings

This commit is contained in:
William DURAND 2012-04-19 18:51:53 +02:00
parent 8c0aa1d274
commit 2a36274a75
2 changed files with 16 additions and 14 deletions

View File

@ -1,12 +1,12 @@
language: php language: php
php: php:
- 5.3.2 - 5.3.2
- 5.3 - 5.3
- 5.4 - 5.4
before_script: before_script:
- wget -nc http://getcomposer.org/composer.phar - curl -s http://getcomposer.org/installer | php
- php composer.phar install - php composer.phar install --dev
script: phpunit script: phpunit

View File

@ -17,7 +17,9 @@
"require": { "require": {
"symfony/framework-bundle": "2.1.*", "symfony/framework-bundle": "2.1.*",
"symfony/twig-bundle": "2.1.*", "symfony/twig-bundle": "2.1.*",
"symfony/form": "2.1.*", "symfony/form": "2.1.*"
},
"require-dev": {
"symfony/css-selector": "2.1.*", "symfony/css-selector": "2.1.*",
"symfony/browser-kit": "2.1.*", "symfony/browser-kit": "2.1.*",
"symfony/validator": "2.1.*", "symfony/validator": "2.1.*",
@ -27,4 +29,4 @@
"psr-0": { "Nelmio\\ApiDocBundle": "" } "psr-0": { "Nelmio\\ApiDocBundle": "" }
}, },
"target-dir": "Nelmio/ApiDocBundle" "target-dir": "Nelmio/ApiDocBundle"
} }