We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d00b5 commit 79d7a70Copy full SHA for 79d7a70
.travis.yml
@@ -1,14 +1,20 @@
1
language: php
2
3
php:
4
- - 5.6
5
- - 5.5
6
- 5.4
+ - 5.5
+ - 5.6
7
+ - 7.0
8
- hhvm
9
10
11
+matrix:
12
+ allow_failures:
13
+ - php: 7.0
14
+ - php: hhvm
15
+
16
before_install:
17
- composer self-update
18
+ - composer install
19
-script:
- - phpunit
20
+script: ./vendor/bin/phpunit
composer.json
@@ -21,6 +21,9 @@
21
"php": ">=5.4.0",
22
"ext-curl": "*"
23
},
24
+ "require-dev": {
25
+ "phpunit/phpunit": "~4.0"
26
+ },
27
"autoload": {
28
"psr-4": {
29
"Embed\\": "src"
0 commit comments