-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
116 lines (116 loc) · 3.88 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.2",
"akaunting/laravel-version": "^1.0",
"barryvdh/laravel-dompdf": "^2.0",
"blade-ui-kit/blade-icons": "^1.5",
"doctrine/dbal": "^3.5",
"erusev/parsedown-extra": "^0.8.1",
"filament/filament": "^3.0-stable",
"filament/spatie-laravel-media-library-plugin": "^3.0-stable",
"filament/spatie-laravel-tags-plugin": "^3.0-stable",
"guzzlehttp/guzzle": "^7.2",
"hammerstone/sidecar": "^0.4.1",
"kenepa/multi-widget": "^2.0",
"lab404/laravel-impersonate": "^1.7",
"laravel/cashier": "^14.7",
"laravel/framework": "^10.2",
"laravel/horizon": "^5.12",
"laravel/sanctum": "^3.2",
"laravel/slack-notification-channel": "^3.0",
"laravel/tinker": "^2.8",
"laravel/vonage-notification-channel": "^3.1",
"league/flysystem-aws-s3-v3": "^3.5",
"league/html-to-markdown": "^5.1",
"livewire/livewire": "^3.0",
"lukeraymonddowning/honey": "^0.5.0",
"maatwebsite/excel": "^3.1",
"sentry/sentry-laravel": "^4.5",
"shuvroroy/filament-spatie-laravel-health": "^2.0",
"spatie/browsershot": "^3.57",
"spatie/laravel-activitylog": "^4.7",
"spatie/laravel-health": "^1.23",
"spatie/laravel-ignition": "^2.0",
"spatie/laravel-medialibrary": "^10.7",
"spatie/laravel-permission": "^5.8",
"spatie/laravel-ray": "^1.32",
"spatie/laravel-schemaless-attributes": "^2.4",
"spatie/laravel-sluggable": "^3.4",
"spatie/laravel-tags": "^4.3",
"stripe/stripe-php": "^7.116",
"symfony/http-client": "^6.2",
"symfony/postmark-mailer": "^6.2",
"tapp/filament-timezone-field": "^3.0",
"wnx/sidecar-browsershot": "^1.12"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.9",
"beyondcode/helo-laravel": "^1.5",
"fakerphp/faker": "^1.9.1",
"filament/upgrade": "^3.0-stable",
"laravel/breeze": "^1.18",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.3",
"phpunit/phpunit": "^10.0",
"tightenco/duster": "^2.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --force --tag=livewire:assets --ansi",
"@php artisan filament:upgrade"
],
"post-update-cmd": [
"@php artisan horizon:publish --ansi",
"@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"
]
}
}