Skip to content

Commit 7f9af64

Browse files
author
Jon Baker
committed
Laravel 8 support
1 parent 3ea3ca7 commit 7f9af64

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.travis.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ os: linux
44

55
cache:
66
directories:
7-
- $HOME/.cache/pip
8-
- $HOME/.composer/cache/files
7+
- $HOME/.cache/pip
8+
- $HOME/.composer/cache/files
99

1010
php:
1111
- 7.1
@@ -19,13 +19,18 @@ env:
1919
- LARAVEL_VERSION=5.8.*
2020
- LARAVEL_VERSION=6.*
2121
- LARAVEL_VERSION=7.*
22-
22+
- LARAVEL_VERSION=8.x-dev
23+
2324
jobs:
2425
exclude:
2526
- php: 7.1
2627
env: LARAVEL_VERSION=6.*
2728
- php: 7.1
2829
env: LARAVEL_VERSION=7.*
30+
- php: 7.1
31+
env: LARAVEL_VERSION=8.x-dev
32+
- php: 7.2
33+
env: LARAVEL_VERSION=8.x-dev
2934

3035
before_install:
3136
- echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
@@ -42,5 +47,4 @@ script: vendor/bin/phpunit tests/
4247

4348
notifications:
4449
email:
45-
recipients:
46-
me@jdavidbaker.com
50+
recipients: me@jdavidbaker.com

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"jdavidbakr",
77
"LaravelCacheGarbageCollector"
88
],
9+
"minimum-stability": "dev",
910
"homepage": "https://github.com/jdavidbakr/LaravelCacheGarbageCollector",
1011
"license": "MIT",
1112
"authors": [
@@ -17,14 +18,14 @@
1718
}
1819
],
1920
"require": {
20-
"illuminate/support": "~5.5|6.*|7.*",
21-
"php" : ">=5.4.0",
21+
"illuminate/support": "~5.5|6.*|7.*|8.*",
22+
"php": ">=7.1.0",
2223
"mockery/mockery": "^1.3"
2324
},
2425
"require-dev": {
25-
"phpunit/phpunit" : "4.*|5.*|6.*|7.*|8.*",
26+
"phpunit/phpunit": "4.*|5.*|6.*|7.*|8.*",
2627
"squizlabs/php_codesniffer": "~2.3",
27-
"orchestra/testbench": "3.*|4.*|5.*"
28+
"orchestra/testbench": "3.*|4.*|5.*|6.*"
2829
},
2930
"autoload": {
3031
"psr-4": {

0 commit comments

Comments
 (0)