1
0
Fork 0
mirror of https://github.com/archtechx/jobpipeline.git synced 2025-12-12 17:14:04 +00:00

drop < L9 support

This commit is contained in:
Saade 2023-02-15 17:02:38 -03:00
parent 33c2c9de36
commit 02327a8cd8
2 changed files with 6 additions and 9 deletions

View file

@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ["7.3", "8.0", "8.1"]
laravel: ["^6.0", "^8.0", "^9.0", "^10.0"]
php: ["8.0", "8.1"]
laravel: ["^9.0", "^10.0"]
include:
- laravel: "^9.0"
testbench: "^7.0"
@ -18,10 +18,6 @@ jobs:
exclude:
- laravel: "^10.0"
php: "8.0"
- laravel: "^10.0"
php: "7.3"
- laravel: "^9.0"
php: "7.3"
steps:
- name: Checkout code
@ -36,7 +32,7 @@ jobs:
uses: supercharge/redis-github-action@1.1.0
- name: Install dependencies
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
run: composer require "laravel/framework:${{matrix.laravel}}"
- name: Run tests
run: vendor/bin/phpunit

View file

@ -19,10 +19,11 @@
}
},
"require": {
"illuminate/support": "^6.0|^8.0|^9.0|^10.0"
"php": "^8.0",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^6.0|^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0",
"spatie/valuestore": "^1.2",
"ext-redis": "*"
},