Skip to content

Commit f8b7926

Browse files
committed
Merge pull request #27 from GrahamCampbell/stuff
Composer And Travis Updates
2 parents b7d8c7a + b2fa15e commit f8b7926

File tree

4 files changed

+1531
-8
lines changed

4 files changed

+1531
-8
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
.idea
2-
/vendor
3-
/composer.lock
2+
vendor

.travis.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,24 @@ php:
55
- 5.4
66
- 5.5
77
- 5.6
8+
- hhvm
9+
- hhvm-nightly
10+
11+
matrix:
12+
allow_failures:
13+
- php: hhvm
14+
- php: hhvm-nightly
815

916
script:
10-
- vendor/phpunit/phpunit/composer/bin/phpunit -v
17+
- vendor/bin/phpunit
1118

1219
before_script:
1320
- sudo apt-get -qq update > /dev/null
1421
- phpenv rehash > /dev/null
1522
- composer selfupdate --quiet
16-
- composer install --dev --prefer-dist
23+
- composer install --no-interaction --prefer-source --dev
24+
- vendor/bin/phpunit
25+
- composer update --no-interaction --prefer-source --dev
1726

1827
notifications:
1928
irc: "irc.freenode.org#phpdocumentor"

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
"require": {
1313
"php": ">=5.3.3",
1414
"psr/log": "~1.0",
15-
"nikic/php-parser": "0.9.4",
16-
"phpdocumentor/reflection-docblock": "2.*"
15+
"nikic/php-parser": "~0.9.4",
16+
"phpdocumentor/reflection-docblock": "~2.0"
1717
},
1818
"suggests": {
1919
"symfony/event-dispatcher": "~2.1"
2020
},
2121
"require-dev": {
2222
"behat/behat": "~2.4",
23-
"phpunit/phpunit": "~3.7",
24-
"mockery/mockery": ">=0.7.0"
23+
"phpunit/phpunit": "~4.0",
24+
"mockery/mockery": "~0.8"
2525
},
2626
"extra": {
2727
"branch-alias": {

0 commit comments

Comments
 (0)