Skip to content
This repository was archived by the owner on Jul 12, 2020. It is now read-only.

Commit e3f967d

Browse files
committed
Merge pull request #66 from tomphp/feature/patch-builder-version
Lock dependencies and fix tests
2 parents c951cbf + 99821b2 commit e3f967d

File tree

4 files changed

+1255
-266
lines changed

4 files changed

+1255
-266
lines changed

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
language: php
22
before_script:
3+
- composer self-update
34
- composer install --dev --prefer-dist
4-
script: phpunit; php vendor/bin/behat --format progress
5+
script: php vendor/bin/phpunit; php vendor/bin/behat --format progress
56
php:
67
- 5.4
78
- 5.5
9+
- 5.6
10+
- 7.0
11+
12+
matrix:
13+
fast_finish: true
14+
allow_failures:
15+
- php: hhvm
16+
- php: 7

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,18 @@
1111
"nikic/php-parser": "@stable",
1212
"beberlei/assert": "@stable",
1313
"andrewsville/php-token-reflection": "@stable",
14-
"symfony/finder": "@stable",
15-
"symfony/console": "@stable",
16-
"tomphp/patch-builder": "dev-master"
14+
"symfony/finder": "~2.4@stable",
15+
"symfony/console": "~2.4@stable",
16+
"tomphp/patch-builder": "~0.1"
1717
},
1818

1919
"require-dev": {
2020
"php": ">=5.4",
21-
"behat/behat": "@stable",
21+
"behat/behat": "~2.5@stable",
2222
"mikey179/vfsStream": "@stable",
2323
"phake/phake": "@stable",
24-
"symfony/process": "@stable"
24+
"symfony/process": "@stable",
25+
"phpunit/phpunit": "~4.6@stable"
2526
},
2627

2728
"autoload": {

0 commit comments

Comments
 (0)