-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
176 lines (176 loc) · 6.07 KB
/
composer.json
File metadata and controls
176 lines (176 loc) · 6.07 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
{
"name": "he4rt/he4rtdevs",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.3",
"ext-pdo": "*",
"calebporzio/sushi": "^2.5.4",
"dedoc/scramble": "^0.13.17",
"filament/filament": "^5.5.0",
"filament/spatie-laravel-media-library-plugin": "^5.5.0",
"guzzlehttp/guzzle": "^7.10.0",
"he4rt/activity": ">=1",
"he4rt/bot-discord": ">=1",
"he4rt/community": ">=1",
"he4rt/docs": ">=1",
"he4rt/economy": ">=1",
"he4rt/events": ">=1",
"he4rt/gamification": ">=1",
"he4rt/he4rt-core": ">=1",
"he4rt/identity": ">=1",
"he4rt/integration-devto": ">=1",
"he4rt/integration-discord": ">=1",
"he4rt/integration-twitch": ">=1",
"he4rt/panel-admin": "^1.0",
"he4rt/portal": ">=1",
"internachi/modular": "^3.0.2",
"laracord/framework": "dev-next",
"laravel/framework": "^12.56.0",
"laravel/nightwatch": "^1.26.0",
"laravel/sanctum": "^4.3.1",
"laravel/telescope": "^5.20.0",
"laravel/tinker": "^2.11.1",
"league/flysystem-sftp-v3": "^3.33.0",
"livewire/flux": "^2.13.2",
"marvinlabs/laravel-discord-logger": "^1.4.4",
"monicahq/laravel-cloudflare": "^4.1",
"owenvoke/blade-fontawesome": "^3.2.2",
"predis/predis": "^3.4.2",
"ryangjchandler/commonmark-blade-block": "^1.1.1",
"spatie/laravel-backup": "^9.4.1",
"spatie/laravel-medialibrary": "^11.21.0",
"symfony/browser-kit": "v7.0.8",
"torchlight/torchlight-commonmark": "^0.6.0",
"torchlight/torchlight-laravel": "^0.6.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.7.0",
"driftingly/rector-laravel": "^2.3.0",
"fakerphp/faker": "^1.24.1",
"fruitcake/laravel-debugbar": "^4.2.5",
"larastan/larastan": "^3.9.3",
"laravel/boost": "^2.4.2",
"laravel/pail": "^1.2.6",
"laravel/pint": "^1.29.0",
"laravel/sail": "^1.56.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.9.3",
"nunomaduro/pao": "^0.1.5",
"pestphp/pest": "^4.4.6",
"pestphp/pest-plugin-drift": "^4.1.0",
"pestphp/pest-plugin-faker": "^4.0.0",
"pestphp/pest-plugin-laravel": "^4.1.0",
"pestphp/pest-plugin-livewire": "^4.1.0",
"phpstan/extension-installer": "^1.4.3",
"rector/rector": "^2.4.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"bootstrap/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"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"
],
"ide-helper": [
"@php artisan ide-helper:generate -q",
"@php artisan ide-helper:meta -q",
"@php artisan ide-helper:models -q -N --dir='app-modules/*/src/Models' --dir='app/Models'"
],
"setup": [
"composer install",
"npm install",
"composer run-script post-root-package-install",
"composer run-script post-create-project-cmd",
"@php artisan key:generate --ansi",
"@php artisan storage:link --ansi",
"composer run-script ide-helper"
],
"bot": "@php artisan bot:boot",
"dev": [
"Composer\\Config::disableProcessTimeout",
"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"
],
"pint": "vendor/bin/pint --parallel",
"test:pint": "vendor/bin/pint --test --parallel",
"rector": "vendor/bin/rector",
"test:rector": "vendor/bin/rector --dry-run",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"test:phpstan": "vendor/bin/phpstan analyse --ansi",
"test:unit": "vendor/bin/pest --compact --group=unit",
"test:feature": "vendor/bin/pest --compact --group=feature",
"test:cov": "vendor/bin/pest --compact --coverage",
"check": [
"@test:rector",
"@test:pint",
"@test:phpstan"
],
"test": [
"@php artisan config:clear --ansi",
"vendor/bin/pest --compact"
]
},
"extra": {
"laravel": {
"dont-discover": [
"barryvdh/laravel-debugbar"
]
}
},
"config": {
"optimize-autoloader": true,
"bump-after-update": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "app-modules/*",
"options": {
"symlink": true
}
},
{
"type": "vcs",
"url": "https://github.com/danielhe4rt/laracord-framework"
}
]
}