Skip to content

Commit 5c28ce2

Browse files
authored
Merge pull request #9 from zak956/master
support for PHP 7.0 and 7.1
2 parents b52fd7d + 38c932d commit 5c28ce2

File tree

8 files changed

+587
-273
lines changed

8 files changed

+587
-273
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
language: php
2+
23
php:
34
- "5.5"
4-
- "5.4"
5+
- "5.6"
6+
- "7.0"
7+
- "7.1"
8+
59
before_script:
610
- composer self-update
711
- composer install --prefer-source
8-
12+
913
script: phpunit --coverage-text --coverage-clover=coverage.clover
1014

1115
after_script:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
}
1818
],
1919
"require": {
20-
"php": "~5.4",
21-
"guzzlehttp/guzzle": "~5.0",
22-
"guzzlehttp/guzzle-services": "~0.5",
20+
"php": ">=5.5",
21+
"guzzlehttp/guzzle": "5.3.1",
22+
"guzzlehttp/guzzle-services": "~0.6",
2323
"monolog/monolog": "~1.7",
2424
"symfony/filesystem": "~2.5",
2525
"symfony/console": "~2.5"
2626
},
2727
"require-dev": {
28-
"mockery/mockery": "dev-master",
28+
"mockery/mockery": "~0.9.4",
2929
"phpunit/phpunit": "~4.0",
30-
"raulfraile/ladybug": "dev-master"
30+
"raulfraile/ladybug": "~1.0.13"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)