-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
129 lines (128 loc) · 4.5 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.3",
"ahtinurme/octane-health-check": "^1.1",
"althinect/filament-spatie-roles-permissions": "^2.2",
"archilex/filament-toggle-icon-column": "^3.1",
"awcodes/filament-quick-create": "^3.3",
"awcodes/shout": "^2.0",
"aws/aws-sdk-php": "^3.320",
"bezhansalleh/filament-language-switch": "^3.0",
"bezhansalleh/filament-panel-switch": "^1.0",
"brickx/maintenance-switch": "^1.0",
"bugsnag/bugsnag-laravel": "^2.0",
"calebporzio/sushi": "^2.5",
"charrafimed/global-search-modal": "^3.4",
"doctrine/dbal": "^3.8",
"dutchcodingcompany/filament-socialite": "^1.2",
"filament/filament": "^3.2",
"filament/spatie-laravel-media-library-plugin": "^3.2",
"filament/spatie-laravel-settings-plugin": "^3.2",
"filament/spatie-laravel-translatable-plugin": "^3.2",
"guava/filament-icon-picker": "^2.0",
"guzzlehttp/guzzle": "^7.2",
"inertiajs/inertia-laravel": "^1.0",
"kenepa/banner": "^0.0.5",
"laravel/framework": "^11.0",
"laravel/horizon": "^5.29",
"laravel/octane": "^2.3",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5.12",
"laravel/tinker": "^2.8",
"league/flysystem-aws-s3-v3": "^3.29",
"league/flysystem-sftp-v3": "^3.0",
"maatwebsite/excel": "^3.1",
"marvinosswald/filament-input-select-affix": "^0.2.0",
"mpdf/mpdf": "^8.2",
"mvenghaus/filament-plugin-schedule-monitor": "^3.0",
"njxqlus/filament-lightbox": "^3.2",
"njxqlus/filament-progressbar": "^1.0",
"parfaitementweb/filament-country-field": "^2.0",
"predis/predis": "^2.2",
"pxlrbt/filament-environment-indicator": "^2.0",
"pxlrbt/filament-spotlight": "^1.2",
"ralphjsmit/laravel-filament-components": "^2.0",
"saade/filament-laravel-log": "^3.0",
"shuvroroy/filament-spatie-laravel-health": "^2.1",
"spatie/cpu-load-health-check": "^1.0",
"spatie/laravel-backup": "^9.2",
"spatie/laravel-permission": "^6.4",
"spatie/laravel-schedule-monitor": "^3.6",
"spatie/security-advisories-health-check": "^1.1",
"symfony/browser-kit": "^7.0",
"symfony/http-client": "^7.0",
"tapp/filament-auditing": "^3.0",
"tightenco/ziggy": "^2.0",
"tomatophp/filament-developer-gate": "^1.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.5",
"fakerphp/faker": "^1.9.1",
"filament/upgrade": "^3.2",
"laravel/breeze": "^2.0",
"laravel/pint": "^1.0",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"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",
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"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,
"repositories": {
}
}