Skip to content

Commit 66d12c0

Browse files
committed
fix: fix everything
1 parent 6a31716 commit 66d12c0

Some content is hidden

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

73 files changed

+5545
-5610
lines changed

.github/workflows/laravel.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Laravel
22

33
on:
44
push:
5-
branches: ['laravel-12.x']
5+
branches: ["laravel-12.x"]
66
pull_request:
7-
branches: ['laravel-12.x']
7+
branches: ["laravel-12.x"]
88

99
jobs:
1010
laravel-tests:
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
1515
with:
16-
php-version: '8.3'
16+
php-version: "8.3"
1717
- uses: actions/checkout@v4
1818
- name: Copy .env
1919
run: php -r "file_exists('.env') || copy('.env.example', '.env');"

CHANGELOG.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,19 @@
22

33
## [1.3.23](https://github.com/justdlabs/inertia.ts/compare/v1.3.22...v1.3.23) (2025-03-03)
44

5-
65
### Bug Fixes
76

8-
* remove husky ([f5bccf3](https://github.com/justdlabs/inertia.ts/commit/f5bccf354f52c1baffc0211538161a987c79ba1c))
7+
- remove husky ([f5bccf3](https://github.com/justdlabs/inertia.ts/commit/f5bccf354f52c1baffc0211538161a987c79ba1c))
98

109
## [1.3.22](https://github.com/justdlabs/inertia.ts/compare/v1.3.21...v1.3.22) (2025-03-03)
1110

1211
## [1.3.21](https://github.com/justdlabs/inertia.ts/compare/v1.3.20...v1.3.21) (2025-03-03)
1312

1413
## [1.3.20](https://github.com/justdlabs/inertia.ts/compare/v1.3.19...v1.3.20) (2025-03-03)
1514

16-
1715
### Bug Fixes
1816

19-
* bump package ([8a31e34](https://github.com/justdlabs/inertia.ts/commit/8a31e346a7d6c0361e614ea8d84a4852301646fb))
17+
- bump package ([8a31e34](https://github.com/justdlabs/inertia.ts/commit/8a31e346a7d6c0361e614ea8d84a4852301646fb))
2018

2119
## [1.3.19](https://github.com/justdlabs/inertia.ts/compare/v1.3.18...v1.3.19) (2025-03-03)
2220

biome.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,13 @@
4646
"fix": "safe",
4747
"options": {
4848
"attributes": ["classList"],
49-
"functions": ["cn", "twJoin", "tv", "composeRenderProps", "composeTailwindRenderProps"]
49+
"functions": [
50+
"cn",
51+
"twJoin",
52+
"tv",
53+
"composeRenderProps",
54+
"composeTailwindRenderProps"
55+
]
5056
}
5157
}
5258
}

bun.lockb

22.8 KB
Binary file not shown.

composer.json

+80-80
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
11
{
2-
"name": "justd/laravel",
3-
"version": "1.4.2",
4-
"type": "project",
5-
"description": "The skeleton application for the Laravel framework.",
6-
"keywords": [
7-
"laravel",
8-
"framework"
9-
],
10-
"license": "MIT",
11-
"require": {
12-
"php": "^8.3",
13-
"inertiajs/inertia-laravel": "^2.0",
14-
"laravel/framework": "^12.0",
15-
"laravel/sanctum": "^4.0",
16-
"laravel/tinker": "^2.10",
17-
"spatie/laravel-data": "^4.7",
18-
"spatie/laravel-typescript-transformer": "^2.4",
19-
"tightenco/ziggy": "^2.0"
20-
},
21-
"require-dev": {
22-
"fakerphp/faker": "^1.23",
23-
"laravel/pint": "^1.13",
24-
"laravel/sail": "^1.26",
25-
"mockery/mockery": "^1.6",
26-
"nunomaduro/collision": "^8.0",
27-
"pestphp/pest": "^3.7"
28-
},
29-
"autoload": {
30-
"psr-4": {
31-
"App\\": "app/",
32-
"Database\\Factories\\": "database/factories/",
33-
"Database\\Seeders\\": "database/seeders/"
34-
},
35-
"files": [
36-
"app/helpers.php"
37-
]
38-
},
39-
"autoload-dev": {
40-
"psr-4": {
41-
"Tests\\": "tests/"
42-
}
43-
},
44-
"scripts": {
45-
"post-autoload-dump": [
46-
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
47-
"@php artisan package:discover --ansi"
48-
],
49-
"post-update-cmd": [
50-
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
51-
],
52-
"post-root-package-install": [
53-
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
2+
"name": "justd/laravel",
3+
"version": "1.4.2",
4+
"type": "project",
5+
"description": "The skeleton application for the Laravel framework.",
6+
"keywords": [
7+
"laravel",
8+
"framework"
549
],
55-
"post-create-project-cmd": [
56-
"@php artisan key:generate --ansi",
57-
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
58-
"@php artisan migrate --graceful --ansi",
59-
"bun i --legacy-peer-deps",
60-
"bun remove @release-it/conventional-changelog @release-it/bumper @commitlint/config-conventional @commitlint/cli release-it"
61-
],
62-
"dev": [
63-
"Composer\\Config::disableProcessTimeout",
64-
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
65-
]
66-
},
67-
"extra": {
68-
"laravel": {
69-
"dont-discover": []
70-
}
71-
},
72-
"config": {
73-
"optimize-autoloader": true,
74-
"preferred-install": "dist",
75-
"sort-packages": true,
76-
"allow-plugins": {
77-
"pestphp/pest-plugin": true,
78-
"php-http/discovery": true
79-
}
80-
},
81-
"minimum-stability": "stable",
82-
"prefer-stable": true
10+
"license": "MIT",
11+
"require": {
12+
"php": "^8.3",
13+
"inertiajs/inertia-laravel": "^2.0",
14+
"laravel/framework": "^12.0",
15+
"laravel/sanctum": "^4.0",
16+
"laravel/tinker": "^2.10",
17+
"spatie/laravel-data": "^4.7",
18+
"spatie/laravel-typescript-transformer": "^2.4",
19+
"tightenco/ziggy": "^2.0"
20+
},
21+
"require-dev": {
22+
"fakerphp/faker": "^1.23",
23+
"laravel/pint": "^1.13",
24+
"laravel/sail": "^1.26",
25+
"mockery/mockery": "^1.6",
26+
"nunomaduro/collision": "^8.0",
27+
"pestphp/pest": "^3.7"
28+
},
29+
"autoload": {
30+
"psr-4": {
31+
"App\\": "app/",
32+
"Database\\Factories\\": "database/factories/",
33+
"Database\\Seeders\\": "database/seeders/"
34+
},
35+
"files": [
36+
"app/helpers.php"
37+
]
38+
},
39+
"autoload-dev": {
40+
"psr-4": {
41+
"Tests\\": "tests/"
42+
}
43+
},
44+
"scripts": {
45+
"post-autoload-dump": [
46+
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
47+
"@php artisan package:discover --ansi"
48+
],
49+
"post-update-cmd": [
50+
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
51+
],
52+
"post-root-package-install": [
53+
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
54+
],
55+
"post-create-project-cmd": [
56+
"@php artisan key:generate --ansi",
57+
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
58+
"@php artisan migrate --graceful --ansi",
59+
"bun i --legacy-peer-deps",
60+
"bun remove @release-it/conventional-changelog @release-it/bumper @commitlint/config-conventional @commitlint/cli release-it"
61+
],
62+
"dev": [
63+
"Composer\\Config::disableProcessTimeout",
64+
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
65+
]
66+
},
67+
"extra": {
68+
"laravel": {
69+
"dont-discover": []
70+
}
71+
},
72+
"config": {
73+
"optimize-autoloader": true,
74+
"preferred-install": "dist",
75+
"sort-packages": true,
76+
"allow-plugins": {
77+
"pestphp/pest-plugin": true,
78+
"php-http/discovery": true
79+
}
80+
},
81+
"minimum-stability": "stable",
82+
"prefer-stable": true
8383
}

0 commit comments

Comments
 (0)