-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
114 lines (114 loc) · 3.68 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "code4romania/rezultatevot",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"filament"
],
"license": "MIT",
"require": {
"php": "^8.2",
"andreiio/blade-remix-icon": "^3.5",
"archtechx/laravel-seo": "^0.10.1",
"awcodes/filament-tiptap-editor": "^3.4",
"blade-ui-kit/blade-icons": "^1.7",
"codeat3/blade-google-material-design-icons": "^1.19",
"datlechin/filament-menu-builder": "^0.6.0",
"dedoc/scramble": "^0.11.25",
"filament/filament": "^3.2",
"filament/spatie-laravel-media-library-plugin": "^3.2",
"haydenpierce/class-finder": "^0.5.3",
"jeffgreco13/filament-breezy": "^2.4",
"laravel/framework": "^11.34",
"laravel/horizon": "^5.29",
"laravel/sanctum": "^4.0",
"laravel/scout": "^10.11",
"laravel/tinker": "^2.10",
"league/csv": "^9.18",
"league/flysystem-aws-s3-v3": "^3.29",
"league/flysystem-read-only": "^3.28",
"livewire/livewire": "^3.5",
"maatwebsite/excel": "^3.1",
"sentry/sentry-laravel": "^4.10",
"spatie/temporary-directory": "^2.2",
"staudenmeir/belongs-to-through": "^2.16",
"tpetry/laravel-query-expressions": "^1.4",
"typesense/typesense-php": "^4.9"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14",
"barryvdh/laravel-ide-helper": "^3.2",
"fakerphp/faker": "^1.24",
"friendsofphp/php-cs-fixer": "^3.65",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.18",
"laravel/sail": "^1.38",
"laravel/telescope": "^5.2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.5",
"phpunit/phpunit": "^11.5",
"spatie/laravel-ignition": "^2.9"
},
"autoload": {
"files": [
"app/helpers.php"
],
"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 artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan filament:upgrade",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan ide-helper:models --nowrite"
],
"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"
],
"test": [
"@php artisan test"
],
"analyse": [
"./vendor/bin/phpstan analyse"
]
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}