-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 3.16 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.0.2",
"filament/actions": "^3.0-stable",
"filament/filament": "^3.0-stable",
"filament/forms": "^3.0-stable",
"filament/infolists": "^3.0-stable",
"filament/notifications": "^3.0-stable",
"filament/spatie-laravel-media-library-plugin": "^3.0-stable",
"filament/spatie-laravel-settings-plugin": "^3.0-stable",
"filament/spatie-laravel-translatable-plugin": "^3.0-stable",
"filament/widgets": "^3.0-stable",
"guzzlehttp/guzzle": "^7.2",
"ibrahimbougaoua/filament-rating-star": "^0.0.1",
"kenepa/translation-manager": "^4.0",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/socialite": "^5.9",
"laravel/tinker": "^2.7",
"mcamara/laravel-localization": "^1.8",
"realrashid/sweet-alert": "^7.1",
"spatie/laravel-medialibrary": "^10.0.0",
"spatie/laravel-permission": "^5.10",
"spatie/laravel-settings": "^3.2",
"spatie/laravel-translatable": "^6.5",
"spatie/laravel-translation-loader": "^2.7",
"staudenmeir/laravel-adjacency-list": "^1.13",
"symfony/http-client": "^6.3",
"symfony/mailgun-mailer": "^6.3",
"unlimited/repository-design-pattern-laravel": "^5.5",
"ext-pdo": "*"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.9",
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.9.1",
"filament/upgrade": "^3.0-stable",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Http/Helpers/general.php"
]
},
"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"
],
"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": "stable",
"prefer-stable": true
}