Skip to content

Commit

Permalink
test against 8.*
Browse files Browse the repository at this point in the history
  • Loading branch information
arubacao committed Sep 14, 2020
1 parent 51a2541 commit f408dbf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/run-tests.yml
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.1, 7.2, 7.3]
laravel: [5.4.*, 5.5.*, 5.6.*, 5.7.*, 5.8.*, 6.*, 7.*]
php: [7.1, 7.2, 7.3, 7.4]
laravel: [5.4.*, 5.5.*, 5.6.*, 5.7.*, 5.8.*, 6.*, 7.*, 8.*]
include:
- laravel: 5.4.*
testbench: 3.4.*
Expand All @@ -32,11 +32,20 @@ jobs:
- laravel: 7.*
testbench: 5.*
phpunit: ^8.4
- laravel: 8.*
testbench: 6.*
phpunit: ^8.5
exclude:
- laravel: 6.*
php: 7.1
- laravel: 7.*
php: 7.1
- laravel: 8.*
php: 7.1
- laravel: 8.*
php: 7.2
- laravel: 8.*
php: 7.3


name: P${{ matrix.php }} - L${{ matrix.laravel }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -53,7 +53,7 @@ _Only required for Laravel `<=5.4`, for Laravel `>=5.5` [auto-discovery](compose
```
Notes:

- `arubacao/asset-cdn` is functional and fully tested for Laravel `5.4` - `7.*` on PHP `7.0`, `7.1`, `7.2`, `7.3`
- `arubacao/asset-cdn` is functional and fully tested for Laravel `5.4` - `8.*` on PHP `7.0`, `7.1`, `7.2`, `7.3, 7.4`

## Configuration

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -17,12 +17,12 @@
],
"require": {
"php": "^7.0",
"laravel/framework": "~5.4|^6.0|^7.0"
"laravel/framework": "~5.4|^6.0|^7.0|^8.0"
},
"require-dev": {
"league/flysystem-aws-s3-v3": "^1.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "~3.4|^4.0|^5.0",
"orchestra/testbench": "~3.4|^4.0|^5.0|^6.0",
"phpunit/phpunit": "~5.7|~6.0|^7.0|^8.0",
"spatie/temporary-directory": "^1.1"
},
Expand Down

0 comments on commit f408dbf

Please sign in to comment.