forked from lovecoding-git/larabug-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
109 lines (109 loc) · 2.82 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4",
"calebporzio/sushi": "^2.1",
"coconutcraig/laravel-postmark": "^2.9",
"cviebrock/eloquent-sluggable": "^8.0.1",
"fideloper/proxy": "^4.2",
"filament/filament": "^1.9",
"fruitcake/laravel-cors": "^2.0",
"google/recaptcha": "~1.1",
"guzzlehttp/guzzle": "^6.2",
"inertiajs/inertia-laravel": "^0.3",
"kblais/laravel-uuid": "^1.1",
"laravel-notification-channels/webhook": "^2.2",
"laravel/framework": "^8.0",
"laravel/helpers": "^1.1",
"laravel/horizon": "^5",
"laravel/slack-notification-channel": "^2.0",
"laravel/socialite": "^5",
"laravel/tinker": "^2.0",
"laravel/ui": "^3.2",
"predis/predis": "~1.0",
"reinink/remember-query-strings": "^0.1.0",
"renatomarinho/laravel-page-speed": "^1.8",
"spatie/browsershot": "^3.4",
"spatie/eloquent-sortable": "^3.0",
"spatie/laravel-cookie-consent": "^2.11",
"spatie/laravel-honeypot": "^2.1",
"spatie/laravel-medialibrary": "^8",
"spatie/laravel-ray": "dev-master",
"spatie/laravel-sitemap": "^5.6",
"tedivm/jshrink": "^1.3",
"tightenco/ziggy": "^0.8.0",
"tucker-eric/eloquentfilter": "^2.2"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.8",
"friendsofphp/php-cs-fixer": "^2.16",
"facade/ignition": "^2.5",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.3.3"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"app/Utilities/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"post-update-cmd": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan horizon:publish"
],
"format": [
"vendor/bin/php-cs-fixer fix"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"dont-discover": [
"barryvdh/laravel-debugbar",
"barryvdh/laravel-ide-helper"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}