Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 6462b01

Browse files
authored
Merge pull request #20 from codete/phpunit-in-composer
Add phpunit/phpunit to composer.json
2 parents 8d245ba + 0813d29 commit 6462b01

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ before_script:
1212
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source
1313
- composer install --dev --prefer-source
1414

15+
script:
16+
- ./vendor/bin/phpunit
17+
1518
matrix:
1619
allow_failures:
1720
- env: SYMFONY_VERSION=dev-master

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"symfony/framework-bundle": ">=2.7"
1616
},
1717
"require-dev": {
18-
"symfony/expression-language": ">=2.7"
18+
"symfony/expression-language": ">=2.7",
19+
"phpunit/phpunit": "^5.7"
1920
},
2021
"autoload": {
2122
"psr-4": {

0 commit comments

Comments
 (0)