forked from rgasch/filament-extended-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
105 lines (105 loc) · 3.66 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
{
"name": "rgasch/filament-extended-starter-kit",
"type": "project",
"description": "A Laravel Filament starter kit with lots of useful plugins installed.",
"keywords": ["framework", "laravel", "starter kit"],
"license": "MIT",
"require": {
"php": "^8.1",
"3x1io/filament-menus": "^1.0",
"3x1io/filament-sitemap": "^1.0",
"3x1io/filament-themes": "^1.0",
"3x1io/filament-user": "^1.1",
"awcodes/filament-gravatar": "^1.0",
"bezhansalleh/filament-addons": "^1.0",
"bezhansalleh/filament-language-switch": "^1.0",
"bezhansalleh/filament-shield": "^2.2",
"filament/filament": "^2.0",
"filament/forms": "^2.16",
"filament/notifications": "^2.16",
"filament/spatie-laravel-settings-plugin": "^2.16",
"filament/spatie-laravel-tags-plugin": "^2.0",
"filament/tables": "^2.16",
"filipfonal/filament-log-manager": "^1.0",
"flowframe/laravel-trend": "^0.1.1",
"guzzlehttp/guzzle": "^7.2",
"hollyit/filament-static-assets": "^0.1.2",
"jeffgreco13/filament-breezy": "^1.4",
"jonquihote/filament-static-chart-widgets": "^1.0",
"laravel/framework": "^9.19",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7",
"pxlrbt/filament-environment-indicator": "^0.2.0",
"ralphjsmit/laravel-filament-components": "^1.1",
"ralphjsmit/tall-interactive": "^0.8.12",
"ramnzys/filament-email-log": "^0.2.2",
"ryangjchandler/filament-profile": "^0.2.1",
"saade/filament-fullcalendar": "^1.4",
"savannabits/filament-flatpickr": "^1.0",
"shuvroroy/filament-spatie-laravel-health": "^1.5",
"spatie/cpu-load-health-check": "^1.0",
"spatie/laravel-sitemap": "^6.2",
"spatie/ray": "^1.34",
"stijnvanouplines/blade-country-flags": "^1.0",
"wychoong/filament-fortify": "^0.3.1",
"yepsua/filament-rating-field": "^0.1.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.4",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-faker": "^1.0",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"Themes\\": "resources/views/themes/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@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"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}