Skip to content

Commit 0f577a0

Browse files
authored
Merge pull request #142 from inovector/misc/laravel12
add support to laravel to 12
2 parents 4d22c0e + 6c4d15e commit 0f577a0

File tree

96 files changed

+1957
-2300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+1957
-2300
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, develop ]
88

99
jobs:
1010
run-tests:
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
php: [ 8.2, 8.3 ]
33-
laravel: [ ^10.47|^11.0 ]
33+
laravel: [ ^10.47, ^11.0, ^12.0 ]
3434

3535
name: P${{ matrix.php }} - L${{ matrix.laravel }}
3636

@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Set Laravel version
4949
run: |
50-
sed -i 's/^10.47|^11.0/${{ matrix.laravel }}/g' composer.json
50+
sed -i 's/^10.47|^11.0|^12.0/${{ matrix.laravel }}/g' composer.json
5151
5252
- name: Install composer dependencies
5353
uses: ramsey/composer-install@v2

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,27 @@
2323
"php": "^8.2",
2424
"ext-fileinfo": "*",
2525
"guzzlehttp/guzzle": "^7.8",
26-
"illuminate/contracts": "^10.47|^11.0",
27-
"inertiajs/inertia-laravel": "^1.0",
26+
"illuminate/contracts": "^10.47|^11.0|^12.0",
27+
"inertiajs/inertia-laravel": "^1.0|^2.0",
2828
"inovector/twitteroauth": "^7.0",
2929
"intervention/image": "^2.7",
3030
"laravel/horizon": "^5.0",
3131
"php-ffmpeg/php-ffmpeg": "^1.0",
3232
"spatie/laravel-package-tools": "^1.14",
3333
"spatie/temporary-directory": "^2.1",
34-
"tightenco/ziggy": "1.*"
34+
"tightenco/ziggy": "^2.5"
3535
},
3636
"require-dev": {
37-
"laradumps/laradumps": "^3.1",
37+
"laradumps/laradumps": "^4.0",
3838
"nunomaduro/collision": "^8.1",
39-
"orchestra/testbench": "^9.2",
40-
"pestphp/pest": "^2.34",
41-
"pestphp/pest-plugin-faker": "^2.0",
42-
"pestphp/pest-plugin-laravel": "^2.0",
39+
"orchestra/testbench": "^9.2|^10.0",
40+
"pestphp/pest": "^2.34|^3.0",
41+
"pestphp/pest-plugin-faker": "^2.0|^3.0",
42+
"pestphp/pest-plugin-laravel": "^2.0|^3.0",
4343
"phpstan/extension-installer": "^1.1",
4444
"phpstan/phpstan-deprecation-rules": "^1.0",
4545
"phpstan/phpstan-phpunit": "^1.0",
46-
"phpunit/phpunit": "^10.5"
46+
"phpunit/phpunit": "^10.5|^11.0"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)