-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
90 lines (90 loc) · 2.73 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"license": "MIT",
"type": "project",
"keywords": [
"framework",
"laravel"
],
"require": {
"php": "^8.0",
"ext-pdo": "*",
"fruitcake/laravel-cors": "^2.0.4",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.70.2",
"laravel/sanctum": "^v2.12.1",
"laravel/tinker": "^v2.6.2",
"mll-lab/laravel-graphql-playground": "^2.6",
"nuwave/lighthouse": "^v5.25.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
"barryvdh/laravel-ide-helper": "^2.10",
"brianium/paratest": "^6.3",
"ergebnis/composer-normalize": "^2.15",
"facade/ignition": "^2.16.0",
"fakerphp/faker": "^1.16.0",
"friendsofphp/php-cs-fixer": "^3.1",
"laravel/sail": "^v1.12.4",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^v5.10.0",
"phpunit/phpunit": "^9.5.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"chmod -R 777 public/"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi",
"php artisan lighthouse:ide-helper"
],
"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"
],
"analyse": "phpstan analyse --configuration=phpstan.neon",
"ide-helper": [
"@php artisan ide-helper:eloquent",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan ide-helper:models --nowrite",
"@php artisan lighthouse:ide-helper",
"@php scripts/fixes/graphql-fix-namespace-directive-definition.php"
]
}
}