Skip to content

Commit 0c66563

Browse files
Merge branch 'l12-compatibility' of github.com:laravel-shift/laravel-vat-eu-validator into laravel-shift-l12-compatibility
2 parents dbe3ac9 + 7af4494 commit 0c66563

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

.github/workflows/run-tests.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ jobs:
1818
matrix:
1919
os: [ubuntu-latest, windows-latest]
2020
php: [8.3, 8.2]
21-
laravel: ['10.*', '11.*']
21+
laravel: ['10.*', '11.*', '12.*']
2222
stability: [prefer-lowest, prefer-stable]
2323
include:
24-
- laravel: 10.*
25-
testbench: 8.*
26-
- laravel: 11.*
27-
testbench: 9.*
24+
- laravel: 10.*
25+
testbench: 8.*
26+
- laravel: 11.*
27+
testbench: 9.*
28+
- laravel: 12.*
29+
testbench: 10.*
2830

2931
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3032

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@
2525
"php": "^8.2",
2626
"ext-soap": "*",
2727
"ext-openssl": "*",
28-
"illuminate/contracts": "^10.0|^11.0",
29-
"illuminate/support": "^10.0|^11.0"
28+
"illuminate/contracts": "^10.0|^11.0|^12.0",
29+
"illuminate/support": "^10.0|^11.0|^12.0"
3030
},
3131
"require-dev": {
32-
"driftingly/rector-laravel": "^1.2",
32+
"driftingly/rector-laravel": "^1.2|^2.0",
3333
"friendsofphp/php-cs-fixer": "^3.59",
34-
"orchestra/testbench": "^8.1|^9.1",
34+
"orchestra/testbench": "^8.1|^9.1|^10.0",
3535
"phpstan/extension-installer": "^1.4",
36-
"phpstan/phpstan": "^1.4.7",
37-
"phpstan/phpstan-deprecation-rules": "^1.2",
38-
"phpstan/phpstan-phpunit": "^1.4",
36+
"phpstan/phpstan": "^1.4.7|^2.1",
37+
"phpstan/phpstan-deprecation-rules": "^1.2|^2.0",
38+
"phpstan/phpstan-phpunit": "^1.4|^2.0",
3939
"phpunit/phpunit": "^10.5|^11.0",
40-
"rector/rector": "^1.1"
40+
"rector/rector": "^1.1|^2.0"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)