Skip to content

Commit

Permalink
Merge pull request #12 from imliam/laravel-8
Browse files Browse the repository at this point in the history
Add Laravel 8 support
  • Loading branch information
imliam authored Sep 13, 2020
2 parents 001d3c1 + bd6a2bd commit d7e5938
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: imliam
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
max-parallel: 15
fail-fast: false
matrix:
php-versions: ['7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4']
composer-flags: ['--prefer-lowest', '--prefer-stable']
env:
- LARAVEL_VERSION='^6.0' TESTBENCH_VERSION='^4.0'
- LARAVEL_VERSION='^7.0' TESTBENCH_VERSION='^5.0'
- LARAVEL_VERSION='^8.0' TESTBENCH_VERSION='^6.0'
name: Test on PHP ${{ matrix.php-versions }}, Laravel ${{ matrix.laravel-versions }} and ${{ matrix.composer-flags }}
steps:
- name: Checkout
Expand Down
1 change: 0 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ preset: laravel

disabled:
- single_class_element_per_statement
- self_accessor
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"role": "Developer"
}],
"require": {
"php": "^7.2",
"illuminate/support": "^6.0|^7.0"
"php": "^7.3",
"illuminate/support": "^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"larapack/dd": "^1.0",
"orchestra/testbench": "^4.0|^5.0",
"orchestra/testbench": "^5.0|^6.0",
"mockery/mockery": "^1.0"
},
"autoload": {
Expand Down

0 comments on commit d7e5938

Please sign in to comment.