Skip to content

Commit b2aace5

Browse files
authored
Merge pull request #54 from codebar-ag/feature-l11
Laravel 11
2 parents 07063e8 + fc5ed65 commit b2aace5

File tree

2 files changed

+14
-17
lines changed

2 files changed

+14
-17
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,9 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ ubuntu-latest ]
16-
php: [ 8.2, 8.3 ]
17-
laravel: [ 10.* ]
16+
php: [ 8.3 ]
17+
laravel: [ 11.* ]
1818
stability: [ 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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^8.2",
22+
"php": ">=8.2",
2323
"guzzlehttp/guzzle": "^7.8",
24-
"illuminate/contracts": "^10.19",
24+
"illuminate/contracts": "^11.0",
2525
"spatie/laravel-package-tools": "^1.16",
26-
"cloudinary/cloudinary_php": "^2.12",
26+
"cloudinary/cloudinary_php": "^2.13",
2727
"nesbot/carbon": "^2.72"
2828
},
2929
"require-dev": {
30-
"laravel/pint": "^1.13",
31-
"nunomaduro/collision": "^7.10",
32-
"nunomaduro/larastan": "^2.8",
33-
"orchestra/testbench": "^8.20",
34-
"pestphp/pest": "^2.30",
35-
"pestphp/pest-plugin-arch": "^2.6",
36-
"pestphp/pest-plugin-laravel": "^2.2",
30+
"laravel/pint": "^1.14",
31+
"nunomaduro/collision": "^8.1",
32+
"larastan/larastan": "^2.9",
33+
"orchestra/testbench": "^9.0",
34+
"pestphp/pest": "^2.34",
35+
"pestphp/pest-plugin-arch": "^2.7",
36+
"pestphp/pest-plugin-laravel": "^2.3",
3737
"phpstan/extension-installer": "^1.3",
3838
"phpstan/phpstan-deprecation-rules": "^1.1",
3939
"phpstan/phpstan-phpunit": "^1.3",
40-
"spatie/laravel-ray": "^1.33"
40+
"spatie/laravel-ray": "^1.35"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)