Skip to content

Commit ef8e009

Browse files
authored
Merge pull request #8 from carsdotcom/MR-NaN/laravel-12-support
Laravel 12 Support
2 parents 5633546 + 9f3b743 commit ef8e009

File tree

5 files changed

+1367
-1867
lines changed

5 files changed

+1367
-1867
lines changed

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
php: ['8.2']
12-
laravel: [9.*, 10.*, 11.*]
12+
laravel: [9.*, 10.*, 11.*, 12.*]
1313
include:
1414
- php: 8.1
1515
laravel: 9.*
@@ -29,8 +29,8 @@ jobs:
2929

3030
- name: Install dependencies
3131
run: |
32-
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
33-
composer update --prefer-dist --no-interaction
32+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
33+
composer update --prefer-dist --no-interaction
3434
3535
- name: Run test suite
3636
run: composer run-script test

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
],
1111
"license": "MIT",
1212
"require": {
13-
"laravel/framework": "^9.19 || ^10.0 || ^11.0",
13+
"laravel/framework": "^9.19 || ^10.0 || ^11.0 || ^12.0",
1414
"opis/json-schema": "^2.3",
1515
"php": "^8.1"
1616
},
1717
"require-dev": {
1818
"fakerphp/faker": "^1.9.1",
1919
"mockery/mockery": "^1.4.4",
2020
"nunomaduro/collision": "^6.1|7.*|8.*",
21-
"orchestra/testbench": "7.*|8.*|9.*",
22-
"phpstan/phpstan": "^1.8",
23-
"phpunit/phpunit": "~8.0|~9.0|^10.5",
21+
"orchestra/testbench": "7.*|8.*|9.*|10.*",
22+
"phpstan/phpstan": "^1.8|^2.1",
23+
"phpunit/phpunit": "~8.0|~9.0|^10.5|^11.5.3",
2424
"squizlabs/php_codesniffer": "^3.7"
2525
},
2626
"autoload": {

0 commit comments

Comments
 (0)