-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
98 lines (98 loc) · 2.74 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
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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"license": "MIT",
"type": "project",
"keywords": [
"framework",
"laravel"
],
"require": {
"php": "^8.1",
"doctrine/dbal": "^2.10",
"filament/filament": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"inertiajs/inertia-laravel": "^0.5.4",
"laravel/framework": "^9.22",
"laravel/horizon": "^5.0",
"laravel/ui": "^4.0",
"league/csv": "^9.6",
"pusher/pusher-php-server": "^7.0",
"sentry/sentry-laravel": "^2.12.0",
"symfony/http-client": "^6.0",
"symfony/mailgun-mailer": "^6.0",
"tightenco/ziggy": "^1.4.6",
"ylsideas/feature-flags": "^1.5"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
"ergebnis/composer-normalize": "^2.26",
"ergebnis/php-cs-fixer-config": "^4.4",
"fakerphp/faker": "^1.13",
"mockery/mockery": "^1.3",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.0",
"phpunit/phpunit": "^9.0",
"spatie/laravel-ignition": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeds/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.1.0"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-update-cmd": [
"@composer normalize",
"@php artisan filament:upgrade"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"analyse": [
"vendor/bin/phpstan analyze"
],
"analyze": [
"vendor/bin/phpstan analyze"
],
"cs": [
"mkdir -p .build/php-cs-fixer",
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --diff --verbose"
]
}
}