-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (102 loc) · 3.23 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
99
100
101
102
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"barryvdh/laravel-ide-helper": "^2.13",
"bezhansalleh/filament-shield": "^3.0.4",
"filament/filament": "^3.0.71",
"guzzlehttp/guzzle": "^7.8.0",
"joelbutcher/socialstream": "^4.x-dev",
"laravel/framework": "^v10.10",
"laravel/jetstream": "^4.0.3",
"laravel/pint": "^1.13.2",
"laravel/sanctum": "^3.3.1",
"laravel/socialite": "^5.9.1",
"laravel/telescope": "^v4.16.4",
"laravel/tinker": "^2.8.2",
"livewire/livewire": "^3.0.6",
"owenvoke/blade-fontawesome": "^2.4.1",
"ralphjsmit/laravel-filament-seo": "^1.2.1",
"socialiteproviders/discord": "^4.2.0",
"spatie/data-transfer-object": "^3.9.1",
"symfony/http-client": "^6.3.5",
"symfony/mailgun-mailer": "^6.3.5",
"tailflow/castable-dto": "^2.1",
"webbingbrasil/filament-advancedfilter": "^v3.0.0-beta.2"
},
"require-dev": {
"fakerphp/faker": "^1.23.0",
"filament/upgrade": "^3.0-stable",
"laravel/sail": "^1.25.0",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^7.9",
"nunomaduro/larastan": "^2.6.4",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.38",
"phpunit/phpunit": "^10.4.1",
"spatie/laravel-ignition": "^2.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"pint": "./vendor/bin/pint",
"prettier": "npm run prettier",
"style": [
"@pint",
"@prettier"
],
"phpstan": "./vendor/bin/phpstan analyse",
"phpstan-baseline": "./vendor/bin/phpstan analyse --generate-baseline",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan ide-helper:models -W -R",
"@style"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}