Skip to content

Commit c49fec5

Browse files
committed
Merge branch 'release/1.0.1'
2 parents 08a40ac + 3f0b063 commit c49fec5

8 files changed

+1044
-722
lines changed

.coveralls.yml

Whitespace-only changes.

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
vendor
22
.idea
3-
coverage
4-
coverage.xml
3+
build

.travis.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
language: php
2+
3+
php:
4+
- 5.6
5+
- 7.0
6+
- 7.1
7+
8+
sudo: false
9+
10+
cache:
11+
directories:
12+
- $HOME/.composer/cache
13+
14+
before_install:
15+
- travis_retry composer self-update
16+
17+
install:
18+
- travis_retry composer install --no-interaction --prefer-dist --no-suggest
19+
20+
script: vendor/bin/phpunit
21+
22+
after_success:
23+
- travis_retry php vendor/bin/coveralls -v

composer.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@
2727
"email": "[email protected]"
2828
}
2929
],
30-
"minimum-stability": "dev",
30+
"config": {
31+
"preferred-install": "dist"
32+
},
33+
"minimum-stability": "stable",
3134
"require": {
35+
"php": ">=5.6",
3236
"league/flysystem": "^1.0",
33-
"illuminate/support": "5.4.*",
34-
"mikey179/vfsStream": "^1.6"
37+
"illuminate/support": "5.4.x",
38+
"mikey179/vfsStream": "^1.6",
39+
"satooshi/php-coveralls": "^1.0"
3540
},
3641
"require-dev": {
3742
"phpunit/phpunit": "^5",

0 commit comments

Comments
 (0)