Skip to content

Commit 0832f2f

Browse files
committed
Added HHVM and 5.6 to travis
Using PHPUnit from composer
1 parent 2f7f7d3 commit 0832f2f

5 files changed

Lines changed: 733 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
.buildpath
2-
.settings
3-
.project
1+
vendor/

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ language: php
22

33
before_install:
44
- git submodule update --init
5+
- composer install
56

67
php:
8+
- "hhvm"
9+
- "5.6"
710
- "5.5"
811
- "5.4"
912
- "5.3"
@@ -13,4 +16,4 @@ branches:
1316
- master
1417
- develop
1518

16-
script: php test/run.php
19+
script: php test.php

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
"require": {
1717
"php": ">=5.3.0"
1818
},
19+
"require-dev": {
20+
"phpunit/phpunit": "4.1.*"
21+
},
1922
"autoload": {
2023
"classmap": ["src/docopt.php"]
2124
}
22-
}
25+
}

0 commit comments

Comments
 (0)