Skip to content

Commit 45aeb8b

Browse files
authored
Merge pull request #712 from code16/l13-compatibility
L13 compatibility
2 parents c559eb1 + 1e422bd commit 45aeb8b

4 files changed

Lines changed: 417 additions & 515 deletions

File tree

.github/workflows/tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
include:
17-
- php: 8.3
18-
env:
19-
LARAVEL: 11.*
20-
TESTBENCH: 9.*
21-
- php: 8.4
22-
env:
23-
LARAVEL: 11.*
24-
TESTBENCH: 9.*
25-
- php: 8.5
26-
env:
27-
LARAVEL: 11.*
28-
TESTBENCH: 9.*
2917
- php: 8.3
3018
env:
3119
LARAVEL: 12.*
@@ -38,6 +26,18 @@ jobs:
3826
env:
3927
LARAVEL: 12.*
4028
TESTBENCH: 10.*
29+
- php: 8.3
30+
env:
31+
LARAVEL: 13.*
32+
TESTBENCH: 11.*
33+
- php: 8.4
34+
env:
35+
LARAVEL: 13.*
36+
TESTBENCH: 11.*
37+
- php: 8.5
38+
env:
39+
LARAVEL: 13.*
40+
TESTBENCH: 11.*
4141

4242
env: ${{ matrix.env }}
4343
steps:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"enshrined/svg-sanitize": "^0.22.0",
2424
"inertiajs/inertia-laravel": "^2.0",
2525
"intervention/image": "^3.4",
26-
"laravel/framework": "^11.0|^12.0",
26+
"laravel/framework": "^11.0|^12.0|^13.0",
2727
"laravel/prompts": "0.*",
2828
"league/commonmark": "^2.4",
2929
"masterminds/html5": "^2.8",
@@ -33,12 +33,12 @@
3333
},
3434
"require-dev": {
3535
"brianium/paratest": "^7.0",
36-
"doctrine/dbal": "^3.5",
36+
"doctrine/dbal": "^3.5|^4.4",
3737
"friendsofphp/php-cs-fixer": "^3.8",
38-
"laravel/pint": "1.18.3",
38+
"laravel/pint": "^1.27",
3939
"mockery/mockery": "^1.5.0",
4040
"nunomaduro/collision": "^8.0",
41-
"orchestra/testbench": "^9.0|^10.0",
41+
"orchestra/testbench": "^9.0|^10.0|^11.0",
4242
"pestphp/pest": "^3.0|^4.0",
4343
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
4444
"phpunit/phpunit": "^11.0|^12.0",

demo/composer.json

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"php": "8.5.*",
66
"bacon/bacon-qr-code": "~2.0",
77
"blade-ui-kit/blade-icons": "^1.6",
8-
"code16/laravel-content-renderer": "^1.2",
8+
"code16/laravel-content-renderer": "^1.5",
99
"enshrined/svg-sanitize": "^0.22.0",
1010
"guzzlehttp/guzzle": "^7.2",
1111
"inertiajs/inertia-laravel": "^2.0",
1212
"intervention/image": "^3.4",
1313
"intervention/image-laravel": "^1.2",
14-
"laravel/framework": "^12.0",
15-
"laravel/tinker": "^2.9",
16-
"masterminds/html5": "^2.8",
14+
"laravel/framework": "^13.0",
15+
"laravel/tinker": "^3.0",
16+
"masterminds/html5": "^2.9",
1717
"pragmarx/google2fa": "^8.0",
18-
"spatie/image-optimizer": "^1.6",
19-
"spatie/laravel-translatable": "^6.0",
18+
"spatie/image-optimizer": "^1.7",
19+
"spatie/laravel-translatable": "^6.13",
2020
"symfony/html-sanitizer": "^7.3",
21-
"technikermathe/blade-lucide-icons": "^3.98",
21+
"technikermathe/blade-lucide-icons": "dev-l13-compatibility",
2222
"tightenco/ziggy": "^2.0"
2323
},
2424
"require-dev": {
@@ -27,9 +27,9 @@
2727
"laravel/boost": "^2.0",
2828
"laravel/sail": "^1.0.1",
2929
"mockery/mockery": "^1.4.4",
30-
"nunomaduro/collision": "^8.6",
30+
"nunomaduro/collision": "^8.9",
3131
"phpunit/phpunit": "^12.0",
32-
"spatie/laravel-ignition": "^2.0",
32+
"spatie/laravel-ignition": "^2.12",
3333
"spatie/laravel-ray": "^1.29",
3434
"spatie/laravel-typescript-transformer": "^2.3"
3535
},
@@ -44,6 +44,12 @@
4444
"Database\\Seeders\\": "database/seeders/"
4545
}
4646
},
47+
"repositories": [
48+
{
49+
"type": "vcs",
50+
"url": "https://github.com/laravel-shift/blade-lucide-icons"
51+
}
52+
],
4753
"autoload-dev": {
4854
"psr-4": {
4955
"Tests\\": "tests/"

0 commit comments

Comments
 (0)