-
-
Notifications
You must be signed in to change notification settings - Fork 242
/
composer.json
104 lines (104 loc) · 3.26 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.0.2",
"ext-iconv": "*",
"devaslanphp/filament-avatar": "^1.0",
"doctrine/dbal": "^3.5",
"dutchcodingcompany/filament-socialite": "^0.2.2",
"filament/filament": "^2.16",
"filament/spatie-laravel-media-library-plugin": "^2.16",
"filament/spatie-laravel-settings-plugin": "^2.16",
"guava/filament-icon-picker": "^1.3",
"guzzlehttp/guzzle": "^7.2",
"jeffgreco13/filament-breezy": "^1.4",
"laravel/framework": "^9.19",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7",
"league/oauth2-client": "^2.6",
"maatwebsite/excel": "^3.1",
"owenvoke/blade-fontawesome": "^2.1",
"protonemedia/laravel-verify-new-email": "^1.6",
"psr/simple-cache": "^1.0",
"pusher/pusher-php-server": "^7.2",
"spatie/laravel-permission": "^5.5",
"stichoza/google-translate-php": "^4.1"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"kkomelin/laravel-translatable-string-exporter": "^1.17",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"install-project-win": [
"npm install",
"composer install",
"npm run build",
"composer dump-autoload",
"copy .env.example .env",
"@php artisan key:generate",
"@php artisan migrate",
"@php artisan db:seed"
],
"install-project": [
"npm install",
"composer install",
"npm run build",
"composer dump-autoload",
"cp .env.example .env",
"@php artisan key:generate",
"@php artisan migrate",
"@php artisan db:seed"
],
"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
}