-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
71 lines (71 loc) · 1.92 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
{
"name": "nuwave/lighthouse-example",
"description": "An example project using nuwave/lighthouse",
"license": "MIT",
"type": "project",
"keywords": [
"graphql",
"laravel",
"lighthouse-php",
"laravel-graphql"
],
"require": {
"php": "^8.2",
"laravel/framework": "^11",
"laravel/tinker": "^2.9",
"mll-lab/laravel-graphiql": "^3",
"nuwave/lighthouse": "^6"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3",
"ergebnis/composer-normalize": "^2.28",
"fakerphp/faker": "^1.9.1",
"haydenpierce/class-finder": "^0.5",
"larastan/larastan": "^2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8",
"phpunit/phpunit": "^11"
},
"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-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@ide-helper"
],
"ide-helper": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan lighthouse:ide-helper"
]
}
}