-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
87 lines (87 loc) · 2.78 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
{
"name": "nathanaelgt/siamel",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.3",
"fakerphp/faker": "^1.23.1",
"filament/filament": "^3.2.71",
"jeffgreco13/filament-breezy": "^2.4",
"laravel/framework": "^11.5",
"laravel/tinker": "^2.9",
"mallardduck/blade-lucide-icons": "^1.21",
"malzariey/filament-daterangepicker-filter": "^2.6",
"saade/filament-fullcalendar": "^3.2",
"thiktak/filament-simple-list-entry": "dev-fix/has-badge-not-found"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13.4",
"doctrine/dbal": "^3.8.3",
"laravel-lang/lang": "^15.1",
"lukeraymonddowning/pest-plugin-larastrap": "^0.3.0",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^8.1.1",
"pestphp/pest": "^2.34.7",
"pestphp/pest-plugin-laravel": "^2.4",
"pestphp/pest-plugin-livewire": "^2.1",
"spatie/laravel-ignition": "^2.5.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"Database\\Seeders\\Data\\": "database/seeders/data/",
"Database\\Seeders\\Datasets\\": "database/seeders/datasets/"
},
"files": [
"app/Utilities/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan icons:cache",
"@php artisan filament:upgrade"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"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"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/NathanaelGT/filament-simple-list-entry/"
}
],
"minimum-stability": "stable",
"prefer-stable": true
}