mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 17:24:03 +00:00
drop < L9 support
This commit is contained in:
parent
fb5471a901
commit
644cbfe5ac
2 changed files with 7 additions and 10 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -7,8 +7,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
php: ["7.3", "8.0", "8.1"]
|
php: ["8.0", "8.1"]
|
||||||
laravel: ["^6.0", "^8.0", "^9.0", "^10.0"]
|
laravel: ["^9.0", "^10.0"]
|
||||||
include:
|
include:
|
||||||
- laravel: "^9.0"
|
- laravel: "^9.0"
|
||||||
testbench: "^7.0"
|
testbench: "^7.0"
|
||||||
|
|
@ -17,10 +17,6 @@ jobs:
|
||||||
exclude:
|
exclude:
|
||||||
- laravel: "^10.0"
|
- laravel: "^10.0"
|
||||||
php: "8.0"
|
php: "8.0"
|
||||||
- laravel: "^10.0"
|
|
||||||
php: "7.3"
|
|
||||||
- laravel: "^9.0"
|
|
||||||
php: "7.3"
|
|
||||||
|
|
||||||
|
|
||||||
name: Tests (PHPUnit) - L${{ matrix.laravel }}
|
name: Tests (PHPUnit) - L${{ matrix.laravel }}
|
||||||
|
|
@ -35,7 +31,7 @@ jobs:
|
||||||
php-version: ${{matrix.php}}
|
php-version: ${{matrix.php}}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: composer require "laravel/framework:^${{matrix.laravel}}.0"
|
run: composer require "laravel/framework:${{matrix.laravel}}"
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: vendor/bin/phpunit
|
run: vendor/bin/phpunit
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,11 +19,12 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"illuminate/support": "^6.0|^8.0|^9.0|^10.0",
|
"php": "^8.0",
|
||||||
"illuminate/database": "^6.0|^8.0|^9.0|^10.0"
|
"illuminate/support": "^9.0|^10.0",
|
||||||
|
"illuminate/database": "^9.0|^10.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"orchestra/testbench": "^4.0|^6.0|^7.0|^8.0"
|
"orchestra/testbench": "^7.0|^8.0"
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true
|
"prefer-stable": true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue