Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
php: ['8.2']
laravel: [9.*, 10.*, 11.*]
laravel: [9.*, 10.*, 11.*, 12.*]
include:
- php: 8.1
laravel: 9.*
Expand All @@ -29,8 +29,8 @@ jobs:

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-dist --no-interaction

- name: Run test suite
run: composer run-script test
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
],
"license": "MIT",
"require": {
"laravel/framework": "^9.19 || ^10.0 || ^11.0",
"laravel/framework": "^9.19 || ^10.0 || ^11.0 || ^12.0",
"opis/json-schema": "^2.3",
"php": "^8.1"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1|7.*|8.*",
"orchestra/testbench": "7.*|8.*|9.*",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "~8.0|~9.0|^10.5",
"orchestra/testbench": "7.*|8.*|9.*|10.*",
"phpstan/phpstan": "^1.8|^2.1",
"phpunit/phpunit": "~8.0|~9.0|^10.5|^11.5.3",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
Expand Down
Loading