Skip to content
Closed
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
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@ name: Tests

on:
push:
branches: [ main, develop ]
branches:
- main
- develop
pull_request:
branches: [ main, develop ]
branches:
- main
- develop

jobs:
build:

runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [8.2, 8.3, 8.4]
laravel: [11]
laravel: [11, '12']

steps:
- name: Checkout Code
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"php": "^8.2",
"ext-json": "*",
"laravel-json-api/neomerx-json-api": "^5.0.3",
"laravel/framework": "^11.0",
"laravel/framework": "^11.0|^12.0",
"nyholm/psr7": "^1.8",
"ramsey/uuid": "^4.0",
"symfony/psr-http-message-bridge": "^7.0"
Expand All @@ -37,8 +37,8 @@
"laravel/legacy-factories": "^1.4.0",
"laravel/ui": "^4.4",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.5"
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^10.5|^11.5.3"
},
"suggest": {
"cloudcreativity/json-api-testing": "Required to use the test helpers."
Expand Down
Loading