Skip to content

Commit 3789a6e

Browse files
authored
Merge pull request #13 from codebar-ag/feature-l11
Laravel 11
2 parents 6983a76 + d619411 commit 3789a6e

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
uses: ramsey/composer-install@v2
2424

2525
- name: Run PHPStan
26-
run: ./vendor/bin/phpstan analyse src --error-format=github
26+
run: ./vendor/bin/phpstan analyse src --error-format=github

.github/workflows/run-tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@ jobs:
1414
matrix:
1515
os: [ ubuntu-latest, windows-latest ]
1616
php: [ 8.2, 8.3 ]
17-
laravel: [ 10.* ]
17+
laravel: [ 11.* ]
1818
stability: [ prefer-lowest, prefer-stable ]
19-
include:
20-
- laravel: 10.*
21-
testbench: 8.*
2219

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

@@ -40,7 +37,7 @@ jobs:
4037
4138
- name: Install dependencies
4239
run: |
43-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
40+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
4441
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4542
4643
- name: Set phpunit.xml

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.2",
21+
"php": ">=8.2",
2222
"guzzlehttp/guzzle": "^7.8",
23-
"illuminate/contracts": "^10.0",
23+
"illuminate/contracts": "^11.0",
2424
"saloonphp/laravel-plugin": "^3.2",
2525
"saloonphp/saloon": "^3.4",
2626
"saloonphp/cache-plugin": "^3.0",
2727
"spatie/laravel-package-tools": "^1.16"
2828
},
2929
"require-dev": {
3030
"laravel/pint": "^1.13",
31-
"nunomaduro/collision": "^7.10",
32-
"nunomaduro/larastan": "^2.8",
31+
"nunomaduro/collision": "^8.1",
32+
"larastan/larastan": "^2.8",
3333
"pestphp/pest": "^2.31",
34-
"orchestra/testbench": "^8.20",
34+
"orchestra/testbench": "^9.0",
3535
"pestphp/pest-plugin-laravel": "^2.2",
3636
"pestphp/pest-plugin-arch": "^2.6",
3737
"phpstan/extension-installer": "^1.3",

0 commit comments

Comments
 (0)