-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
127 lines (127 loc) · 3.87 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"ext-json": "*",
"archtechx/laravel-seo": "^0.10",
"awcodes/filament-badgeable-column": "^2.3",
"barryvdh/laravel-debugbar": "^3.14",
"blade-ui-kit/blade-heroicons": "^2.4",
"codeat3/blade-phosphor-icons": "^2.0",
"cyrildewit/eloquent-viewable": "^7.0",
"doctrine/dbal": "^4.2.1",
"dutchcodingcompany/livewire-recaptcha": "^1.0",
"filament/filament": "^3.2",
"filament/spatie-laravel-media-library-plugin": "^3.2",
"filament/spatie-laravel-translatable-plugin": "^3.2",
"flowframe/laravel-trend": "^0.3.0",
"gehrisandro/tailwind-merge-laravel": "^1.2",
"graham-campbell/markdown": "^15.2",
"guzzlehttp/guzzle": "^7.7.0",
"jenssegers/agent": "^2.6.4",
"laravel-notification-channels/telegram": "^5.0",
"laravel-notification-channels/twitter": "^8.1",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5.6.3",
"laravel/tinker": "^2.8.1",
"laravelcm/laravel-subscriptions": "^1.3",
"laravelcm/livewire-slide-overs": "^1.0",
"livewire/livewire": "^3.5",
"livewire/volt": "^1.6",
"mckenziearts/blade-untitledui-icons": "^1.3",
"notchpay/notchpay-php": "^1.6",
"qcod/laravel-gamify": "1.0.8",
"ramsey/uuid": "^4.7.4",
"sentry/sentry-laravel": "^4.10",
"spatie/laravel-data": "^4.10",
"spatie/laravel-feed": "^4.2.1",
"spatie/laravel-google-fonts": "^1.2.3",
"spatie/laravel-permission": "^6.10.0",
"spatie/laravel-sitemap": "^7.3",
"stevebauman/location": "^7.4.0",
"symfony/http-client": "^7.1.8",
"symfony/mailgun-mailer": "^7.1",
"torchlight/torchlight-laravel": "^0.6",
"vormkracht10/filament-mails": "^2.0",
"wire-elements/modal": "^2.0",
"wire-elements/spotlight": "^2.0",
"yarri/link-finder": "^2.7.10",
"ysfkaya/filament-phone-input": "^3.1"
},
"require-dev": {
"fakerphp/faker": "^1.23.0",
"larastan/larastan": "^3.0",
"laravel/breeze": "^2.0",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6.2",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.32",
"pestphp/pest-plugin-laravel": "^2.1",
"pestphp/pest-plugin-livewire": "^2.1",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0",
"spatie/test-time": "^1.3.2"
},
"autoload": {
"files": [
"app/helpers.php"
],
"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"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@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"
],
"lint": "./vendor/bin/pint",
"test:pest": "pest --parallel",
"test:phpstan": "phpstan analyse --memory-limit=-1",
"test": [
"@test:phpstan",
"@test:pest"
],
"setup": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php artisan key:generate",
"php artisan migrate",
"php artisan db:seed",
"php artisan lcm:admin"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}