-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
91 lines (91 loc) · 2.31 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.2.0",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"accentinteractive/laravel-logcleaner": "^1.1",
"awobaz/compoships": "^2.1",
"cocur/slugify": "^4.5.1",
"doctrine/dbal": "^3.0",
"drewm/mailchimp-api": "^2.5",
"google/cloud-translate": "^1.10",
"intervention/image": "^2.4",
"laravel/framework": "^11.19.0",
"laravel/helpers": "^1.1",
"laravel/socialite": "^5.15.1",
"laravel/tinker": "^2.5",
"laravel/ui": "^4.0",
"league/flysystem-aws-s3-v3": "^3.0",
"nunomaduro/collision": "^8.4",
"predis/predis": "^1.1",
"scify/laravel-cookies-consent": "^2.0.1",
"sentry/sentry-laravel": "^4.7.1",
"socialiteproviders/twitter": "^4.1",
"spatie/laravel-newsletter": "^5.2.0",
"spatie/laravel-sitemap": "^7.2.1",
"symfony/http-client": "^7.1",
"symfony/mailgun-mailer": "^7.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
"barryvdh/laravel-ide-helper": "^3.1.0",
"fakerphp/faker": "^1.14",
"filp/whoops": "~2.0",
"laravel/pint": "^1.17.0",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "^10.0",
"symfony/thanks": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Utils/UrlHelpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Helpers\\": "database/helpers/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"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"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform-check": false,
"allow-plugins": {
"symfony/thanks": true,
"php-http/discovery": true
}
}
}