We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 48326f9 + 6e1a992 commit 3692afbCopy full SHA for 3692afb
.github/workflows/phpunit.yml
@@ -9,8 +9,11 @@ jobs:
9
strategy:
10
fail-fast: true
11
matrix:
12
- php: [ "8.2", "8.3" ]
13
- laravel: [ "10.0", "11.0" ]
+ php: [ "8.2", "8.3", "8.4" ]
+ laravel: [ "10.0", "11.0", "12.0" ]
14
+ exclude:
15
+ - laravel: "10.0"
16
+ php: "8.4"
17
18
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
19
composer.json
@@ -42,18 +42,18 @@
42
"composer-runtime-api": "^2.2",
43
"dragon-code/simple-dto": "^2.5.1",
44
"dragon-code/support": "^6.6",
45
- "illuminate/console": "^10.0 || ^11.0",
46
- "illuminate/container": "^10.0 || ^11.0",
47
- "illuminate/database": "^10.0 || ^11.0",
48
- "illuminate/support": "^10.0 || ^11.0",
+ "illuminate/console": "^10.0 || ^11.0 || ^12.0",
+ "illuminate/container": "^10.0 || ^11.0 || ^12.0",
+ "illuminate/database": "^10.0 || ^11.0 || ^12.0",
+ "illuminate/support": "^10.0 || ^11.0 || ^12.0",
49
"laravel/prompts": ">=0.1",
50
"symfony/console": "^6.0 || ^7.0"
51
},
52
"require-dev": {
53
"mockery/mockery": "^1.3.1",
54
"nesbot/carbon": "^2.62.1 || ^3.0",
55
- "orchestra/testbench": "^8.0 || ^9.0",
56
- "phpunit/phpunit": "^10.0",
+ "orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
+ "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
57
"ramsey/uuid": "^4.0"
58
59
"conflict": {
@@ -94,4 +94,4 @@
94
]
95
}
96
97
-}
+}
0 commit comments