Skip to content

Commit 59beb0d

Browse files
authored
Fix failing CI tests (#58)
* remove useless laravel pest plugin * up requirements in `composer.json` * ci: remove old PHP and Laravel versions
1 parent ffdaee3 commit 59beb0d

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,14 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.2, 8.1, 8.0, 7.4, 7.3]
13-
laravel: [9.*, 8.*, 7.*, 6.*]
12+
php: [8.2, 8.1, 8.0]
13+
laravel: [9.*, 8.*]
1414
dependency-version: [prefer-stable]
1515
include:
1616
- laravel: 9.*
1717
testbench: 7.*
1818
- laravel: 8.*
1919
testbench: 6.*
20-
- laravel: 7.*
21-
testbench: 5.*
22-
- laravel: 6.*
23-
testbench: 4.*
2420
exclude:
2521
- laravel: 6.*
2622
php: 8.2

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
}
2727
],
2828
"require": {
29-
"php": "^7.2|^8.0|^8.1",
30-
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
31-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
29+
"php": "^8.0|^8.1",
30+
"illuminate/contracts": "^8.0|^9.0",
31+
"illuminate/support": "^8.0|^9.0"
3232
},
3333
"require-dev": {
34-
"phpunit/phpunit": "^8.5.22|^9.4",
35-
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
36-
"pestphp/pest-plugin-laravel": "^1.3"
34+
"phpunit/phpunit": "^9.5",
35+
"orchestra/testbench": "^7.0",
36+
"pestphp/pest": "^1.22"
3737
},
3838
"autoload": {
3939
"psr-4": {

0 commit comments

Comments
 (0)