-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (99 loc) · 2.99 KB
/
composer.json
File metadata and controls
99 lines (99 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "jiny/jiny",
"type": "project",
"description": "The skeleton application for JinyPHP",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.2",
"dcblogdev/laravel-module-generator": "^2.0.3",
"jiny/admin": "^0.3.0",
"jiny/auth": "^0.3.3",
"jiny/config": "^0.1.0",
"jiny/fortify": "^0.0.2",
"jiny/html": "^0.3.0",
"jiny/icons": "^0.3.1",
"jiny/laravel": "^0.0.2",
"jiny/locale": "^0.3.2",
"jiny/manual": "^0.0.2",
"jiny/modules": "^0.3.2",
"jiny/permit": "^0.3.0",
"jiny/profile": "^0.3.1",
"jiny/social": "^0.3.0",
"jiny/theme": "^0.3.1",
"jiny/ui": "^0.3.2",
"jiny/ui2": "^0.3.0",
"jiny/users": "^0.3.0",
"jiny/widgets": "^0.0.2",
"jiny/wiretable": "^0.3.2",
"laravel/framework": "^11.5",
"laravel/sanctum": "^4.0.2",
"laravel/tinker": "^2.9",
"livewire/livewire": "^3.4",
"nwidart/laravel-modules": "^11.0.8"
},
"require-dev": {
"larastan/larastan": "^2.9.5",
"laravel/pint": "^1.15.2",
"fakerphp/faker": "^1.23.1",
"laravel/sail": "^1.29.1",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^8.1.1",
"pestphp/pest": "^2.34.7",
"pestphp/pest-plugin-laravel": "^2.4",
"spatie/laravel-ignition": "^2.6"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi",
"@npm install",
"@npm run build"
]
},
"extra": {
"laravel": {
"dont-discover": []
},
"merge-plugin": {
"include": [
"Modules/*/composer.json"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"wikimedia/composer-merge-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}