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

Commit d7dbc30

Browse files
authored
Merge pull request #33 from spinen/feature/updatePackageAndAllowLaravel55
Feature/update package and allow laravel55
2 parents ac02f6b + db68b56 commit d7dbc30

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@ env:
1313

1414
matrix:
1515
include:
16-
- php: 5.6
16+
- php: 7.0
1717
env: setup=lowest
18-
- php: 5.6
18+
- php: 7.0
19+
env: setup=stable
20+
- php: 7.1
21+
env: setup=lowest
22+
- php: 7.1
1923
env: setup=stable
2024

2125
sudo: false
@@ -25,7 +29,7 @@ cache:
2529
- $HOME/.composer/cache
2630

2731
before_install:
28-
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
32+
- echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
2933
- travis_retry composer self-update
3034

3135
install:

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": ">=5.5.0",
20-
"illuminate/support": "~5.1.10|5.2.*|5.3.*|5.4.*",
20+
"illuminate/support": "~5.1.10|5.2.*|5.3.*|5.4.*|5.5.*",
2121
"swiftmailer/swiftmailer": "~5.1"
2222
},
2323
"require-dev": {
@@ -38,6 +38,8 @@
3838
}
3939
},
4040
"config": {
41-
"preferred-install": "dist"
42-
}
41+
"sort-packages": true
42+
},
43+
"minimum-stability": "dev",
44+
"prefer-stable": true
4345
}

0 commit comments

Comments
 (0)