Skip to content

Commit

Permalink
add Laravel 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed Sep 8, 2020
1 parent fc534ce commit af7f740
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
strategy:
matrix:
php: ['7.1', '7.2', '7.3', '7.4']
laravel: ['~5.6.0', '~5.7.0', '~5.8.0', '^6.0', '^7.0']
laravel: ['~5.6.0', '~5.7.0', '~5.8.0', '^6.0', '^7.0', '^8.0']
phpunit: ['^7.0', '^8.0', '^9.0']
dependency-version: ['prefer-lowest', 'prefer-stable']
exclude:
Expand All @@ -80,6 +80,10 @@ jobs:
php: '7.1'
- phpunit: '^9.0'
php: '7.2'
- laravel: '^8.0'
php: '7.1'
- laravel: '^8.0'
php: '7.2'

steps:
- name: checkout code
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
],
"require": {
"php": "^7.1",
"illuminate/config": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0",
"illuminate/container": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0",
"illuminate/support": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0",
"illuminate/config": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0",
"illuminate/container": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0 || ^7.0 || ^8.0",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"psr/log": "^1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A bunch of Laravel facades / services are able to be faked, such as the Dispatch
## Version support

- **PHP**: 7.1, 7.2, 7.3, 7.4
- **Laravel**: 5.6, 5.7, 5.8, 6.0, 7.0
- **Laravel**: 5.6, 5.7, 5.8, 6.0, 7.0, 8.0
- **PHPUnit**: 7.0, 8.0, 9.0

## Installation
Expand Down

0 comments on commit af7f740

Please sign in to comment.