Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit e13396c

Browse files
committed
Merge branch 'release/0.2.0'
2 parents e6b6d2c + 3f6dde7 commit e13396c

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ php:
55
- 5.5
66
- 5.6
77
- 7.0
8-
- hhvm
8+
- 7.1
99

1010
env:
1111
global:
@@ -20,6 +20,14 @@ matrix:
2020

2121
sudo: false
2222

23+
cache:
24+
directories:
25+
- $HOME/.composer/cache
26+
27+
before_install:
28+
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
29+
- travis_retry composer self-update
30+
2331
install:
2432
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
2533
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
@@ -29,4 +37,4 @@ before_script: mkdir -p build/logs
2937

3038
script: vendor/bin/phpunit
3139

32-
after_script: if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then vendor/bin/coveralls -v -n; fi
40+
after_script: vendor/bin/coveralls -v -n

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.1
1+
0.2.0

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
],
1818
"require": {
1919
"php": ">=5.5.0",
20-
"illuminate/support": "~5.1.10|5.2.*|5.3.*",
20+
"illuminate/support": "~5.1.10|5.2.*|5.3.*|5.4.*",
2121
"swiftmailer/swiftmailer": "~5.1"
2222
},
2323
"require-dev": {
2424
"mockery/mockery": "^0.9.1",
2525
"phpunit/phpunit": "~4.0|~5.0",
2626
"psy/psysh": "^0.5.1",
27-
"satooshi/php-coveralls": "^0.6.1",
27+
"satooshi/php-coveralls": "^0.6.1|^1",
2828
"symfony/var-dumper": "~2.7|~3.0"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)