-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.97 KB
/
composer.json
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
{
"name": "laravel/laravel",
"description": "The skeleton application for the Laravel framework.",
"license": "MIT",
"type": "project",
"version": "1.0.0",
"keywords": [
"laravel",
"framework"
],
"require": {
"php": "^8.3",
"ext-pdo": "*",
"defstudio/telegraph": "^1.55.1",
"dragon-code/laravel-deploy-operations": "^6.3.2",
"dragon-code/laravel-json-response": "^3.0.1",
"graham-campbell/github": "^12.6",
"laravel-lang/locale-list": "^1.4",
"laravel/framework": "^11.29.0",
"laravel/tinker": "^2.10",
"sentry/sentry-laravel": "^4.9.0",
"spatie/laravel-data": "^4.11.1",
"steppinghat/emoji-detector": "^1.6.0"
},
"require-dev": {
"laravel-lang/common": "^6.4",
"laravel/telescope": "^5.2.3",
"nunomaduro/collision": "^8.5.0",
"spatie/laravel-ignition": "^2.8"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"symfony/thanks": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"php artisan vendor:publish --tag=telescope-assets --ansi --force",
"@php artisan lang:update"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
}
}