-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
180 lines (180 loc) · 6.47 KB
/
composer.json
File metadata and controls
180 lines (180 loc) · 6.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"$schema": "https://getcomposer.org/schema.json",
"name": "webkernel/webkernel",
"description": "Webkernel is a sovereign application foundation that lets organizations own, control, and scale their business software without subscriptions, cloud lock-in, or vendor dependency.",
"type": "project",
"license": "EPL-2.0",
"keywords": [
"webkernel",
"framework"
],
"require": {
"webkernel/composer-merger": "^0.1.4",
"calebporzio/sushi": "*",
"filament/filament": "*",
"jeremykendall/php-domain-parser": "*",
"laravel/framework": "*",
"laravel/tinker": "*",
"laravel/octane": "*",
"laravel/prompts": "*",
"laravel/sanctum": "*",
"livewire/blaze": "*",
"nikic/php-parser": "*"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.6",
"fakerphp/faker": "^1.23",
"fruitcake/laravel-debugbar": "^4.0",
"laravel/sail": "^1.41",
"pestphp/pest": "^4.1.0",
"pestphp/pest-plugin-laravel": "^4.0",
"psr/log": "^3.0",
"rector/rector": "^2.3",
"laravel/pail": "^1.2.5",
"laravel/pint": "^1.27",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"phpunit/phpunit": "^12.5.12"
},
"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 bootstrap/webkernel/installer-guard.php package:discover"
],
"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"
],
"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');\""
],
"setup": [
"composer install",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate",
"@php artisan migrate --force",
"npm install",
"npm run build"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1 --timeout=0\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test"
],
"pre-package-uninstall": [
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
],
"prod-deploy": [
"composer install --no-dev --optimize-autoloader --prefer-dist --no-interaction --no-progress",
"@php artisan down --retry=60 && php -r \"echo 'Deployment in progress...';\"",
"@php artisan migrate --force",
"composer w-cache",
"npm ci",
"npm run build -- --mode=production",
"@php artisan up"
],
"dev-setup": [
"composer install --prefer-dist",
"composer dump-autoload",
"@php artisan migrate --seed",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:models -M",
"npm ci",
"composer w-clear"
],
"w-clear": [
"@php artisan cache:clear",
"@php artisan config:clear",
"@php artisan route:clear",
"@php artisan view:clear",
"@php artisan event:clear",
"@php artisan clear-compiled",
"@php artisan optimize:clear",
"@php artisan filament:clear-cached-components",
"@php artisan filament:optimize-clear",
"@php -r \"if (class_exists('Barryvdh\\\\Debugbar\\\\ServiceProvider')) \\Illuminate\\\\Support\\\\Facades\\\\Artisan::call('debugbar:clear');\"",
"@php artisan icons:clear",
"@php artisan schedule:clear-cache",
"@php artisan queue:clear",
"composer dump-autoload"
],
"w-clear-sudo": [
"@php bootstrap/webkernel/installer-guard.php ensure-storage-dirs",
"@php bootstrap/webkernel/installer-guard.php fix-permissions",
"@php bootstrap/webkernel/installer-guard.php run-as-owner composer w-clear"
],
"ws-clear": [
"composer w-clear",
"@php artisan filament:optimize",
"@php artisan icons:cache"
],
"w-cache": [
"composer w-clear",
"@php artisan config:cache",
"@php artisan route:cache",
"@php artisan view:cache",
"@php artisan event:cache",
"@php artisan optimize",
"@php artisan filament:cache-components",
"@php artisan filament:optimize",
"@php artisan icons:cache",
"@php artisan queue:restart"
],
"ide-helper": [
"@php artisan clear-compiled",
"@php artisan ide-helper:eloquent",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:models -M",
"@php artisan ide-helper:meta"
]
},
"extra": {
"merge-plugin": {
"include": [
"bootstrap/composer.json",
"modules/**/**/**/composer.json"
],
"recurse": false,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true
},
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"webkernel/composer-merger": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}