Skip to content
Open
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
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: ["8.0", "8.1"]
laravel: [8.*, 9.*]
php: ["8.0", "8.1", "8.2"]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
Expand All @@ -17,6 +17,9 @@ jobs:
- laravel: 9.*
testbench: ^7.6
larastan: ^2.0
- laravel: 10.*
testbench: ^8.5.10
larastan: ^2.6.3
os: [ubuntu-latest]

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
Expand Down
106 changes: 53 additions & 53 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
{
"name": "laravel-arcanist/inertia-response-renderer",
"description": "Inertia response renderer for Arcanist",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kai Sassnowski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"inertiajs/inertia-laravel": "^0.5.2",
"laravel-arcanist/arcanist": "^0.7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.17 || ^7.6",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Arcanist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanist\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"laravel": {
"providers": [
"Arcanist\\InertiaResponseRendererServiceProvider"
]
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
"name": "laravel-arcanist/inertia-response-renderer",
"description": "Inertia response renderer for Arcanist",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kai Sassnowski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"inertiajs/inertia-laravel": "^0.6.9",
"laravel-arcanist/arcanist": "^0.7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.30.2",
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^6.24.1 || ^7.22.1",
"phpunit/phpunit": "^9.6.4",
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Arcanist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arcanist\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"laravel": {
"providers": [
"Arcanist\\InertiaResponseRendererServiceProvider"
]
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}
Loading