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

Commit

Permalink
Remove PHPUnit as a development dependency
Browse files Browse the repository at this point in the history
This will make it more inline with how Symfony uses PHPUnit and already
considers this a tool installed when developing.

for reference as PR that rejects having phpunit as dependency in symfony
symfony/symfony#12136
  • Loading branch information
henrikbjorn authored and fabpot committed Oct 12, 2014
1 parent be10a76 commit 62b0fa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,7 @@ before_script:
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.3' ]; then sed -i 's/>=2.3,<2.6-dev/2.3.*@dev/g' composer.json; composer update --dev --prefer-source; fi"
- composer install --dev --prefer-source

script: vendor/bin/phpunit
script: phpunit

php:
- 5.3
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Expand Up @@ -43,8 +43,7 @@
"twig/twig": ">=1.8.0,<2.0-dev",
"doctrine/dbal": "~2.2",
"swiftmailer/swiftmailer": "5.*",
"monolog/monolog": "~1.4,>=1.4.1",
"phpunit/phpunit": "~3.7"
"monolog/monolog": "~1.4,>=1.4.1"
},
"suggest": {
"symfony/browser-kit": ">=2.3,<2.6-dev",
Expand Down

0 comments on commit 62b0fa7

Please sign in to comment.