Skip to content

Commit b2e5f39

Browse files
Laravel 10 Support
* update to Laravel 10 * Support only PHP 8.1+ --------- Co-authored-by: James <[email protected]>
1 parent 087532d commit b2e5f39

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.0'
19+
php-version: '8.1'
2020
coverage: none
2121

2222
- name: Install composer dependencies

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
laravel: [9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 9.*
20+
- laravel: 10.*
2121
testbench: 7.*
2222

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

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@
1919
"inertiajs/inertia-laravel": "Needed for basic inertia functionality"
2020
},
2121
"require": {
22-
"php": "^8.0",
23-
"spatie/laravel-package-tools": "^1.9.2",
24-
"illuminate/contracts": "^9.0"
22+
"php": "^8.1",
23+
"spatie/laravel-package-tools": "^1.14.0",
24+
"illuminate/contracts": "^10.0"
2525
},
2626
"require-dev": {
27-
"inertiajs/inertia-laravel": "^0.6",
27+
"inertiajs/inertia-laravel": "^v0.6.9",
2828
"jetbrains/phpstorm-attributes": "^1.0",
29-
"nunomaduro/collision": "^6.0",
29+
"nunomaduro/collision": "^v6.1",
3030
"nunomaduro/larastan": "^2.0.1",
31-
"orchestra/testbench": "^7.0",
32-
"pestphp/pest": "^1.21",
33-
"pestphp/pest-plugin-laravel": "^1.1",
31+
"orchestra/testbench": "^v8.0",
32+
"pestphp/pest": "^v1.21",
33+
"pestphp/pest-plugin-laravel": "^v1.1",
3434
"phpstan/extension-installer": "^1.1",
3535
"phpstan/phpstan-deprecation-rules": "^1.0",
3636
"phpstan/phpstan-phpunit": "^1.0",
37-
"phpunit/phpunit": "^9.5"
37+
"phpunit/phpunit": "^9.6"
3838
},
3939
"autoload": {
4040
"psr-4": {

0 commit comments

Comments
 (0)