-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.43 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.43 KB
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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"minimum-stability": "stable",
"require": {
"laravel/framework": "^12.0",
"guzzlehttp/guzzle": "^7.0.1",
"predis/predis": "^1.1",
"ext-simplexml": "*",
"laravel/socialite": "5.*",
"socialiteproviders/discord": "4.1.*",
"llagerlof/moodlerest": "^2.3",
"ext-json": "*",
"laravel/helpers": "^1.4",
"league/flysystem-aws-s3-v3": "*",
"spatie/laravel-html": "*",
"fakerphp/faker": "^1.24"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"filp/whoops": "~2.0",
"mockery/mockery": "0.9.*",
"symfony/dom-crawler": "~3.1",
"symfony/css-selector": "~3.1",
"laravel/tinker": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": true
}
}
}