forked from nuwave/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
136 lines (136 loc) · 5.24 KB
/
composer.json
File metadata and controls
136 lines (136 loc) · 5.24 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "nuwave/lighthouse",
"description": "A framework for serving GraphQL from Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"graphql",
"laravel",
"laravel-graphql"
],
"authors": [
{
"name": "Christopher Moore",
"email": "chris@nuwavecommerce.com",
"homepage": "https://www.nuwavecommerce.com"
},
{
"name": "Benedikt Franke",
"email": "benedikt@franke.tech",
"homepage": "https://franke.tech"
}
],
"homepage": "https://lighthouse-php.com",
"support": {
"issues": "https://github.com/nuwave/lighthouse/issues",
"source": "https://github.com/nuwave/lighthouse"
},
"require": {
"php": "^8",
"ext-json": "*",
"haydenpierce/class-finder": "^0.4 || ^0.5",
"illuminate/auth": "^9 || ^10 || ^11 || ^12",
"illuminate/bus": "^9 || ^10 || ^11 || ^12",
"illuminate/contracts": "^9 || ^10 || ^11 || ^12",
"illuminate/http": "^9 || ^10 || ^11 || ^12",
"illuminate/pagination": "^9 || ^10 || ^11 || ^12",
"illuminate/queue": "^9 || ^10 || ^11 || ^12",
"illuminate/routing": "^9 || ^10 || ^11 || ^12",
"illuminate/support": "^9 || ^10 || ^11 || ^12",
"illuminate/validation": "^9 || ^10 || ^11 || ^12",
"laragraph/utils": "^1.5 || ^2",
"thecodingmachine/safe": "^1 || ^2 || ^3",
"webonyx/graphql-php": "^15"
},
"require-dev": {
"algolia/algoliasearch-client-php": "^3",
"bensampo/laravel-enum": "^5 || ^6",
"dms/phpunit-arraysubset-asserts": "^0.4 || ^0.5 || dev-add-phpunit-11-support",
"ergebnis/composer-normalize": "^2.2.2",
"fakerphp/faker": "^1.21",
"google/protobuf": "^3.21",
"larastan/larastan": "^2.9.14 || ^3.0.4",
"laravel/framework": "^9 || ^10 || ^11 || ^12",
"laravel/legacy-factories": "^1.1.1",
"laravel/pennant": "^1",
"laravel/scout": "^8 || ^9 || ^10",
"mattiasgeniar/phpunit-query-count-assertions": "^1.1",
"mll-lab/graphql-php-scalars": "^6",
"mll-lab/php-cs-fixer-config": "^5",
"mockery/mockery": "^1.5",
"nesbot/carbon": "^2.62.1 || ^3.8.4",
"orchestra/testbench": "^7.50 || ^8.32 || ^9.10 || ^10.1",
"phpbench/phpbench": "^1.2.6",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^1.12.18 || ^2",
"phpstan/phpstan-mockery": "^1.1.3 || ^2",
"phpstan/phpstan-phpunit": "^1.1.1 || ^2",
"phpunit/phpunit": "^9.6.4 || ^10 || ^11",
"predis/predis": "^1.1 || ^2.1",
"pusher/pusher-php-server": "^5 || ^6 || ^7.0.2",
"rector/rector": "^1 || ^2",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"suggest": {
"ext-protobuf": "Improve protobuf serialization performance (used for tracing)",
"google/protobuf": "Required when using the tracing driver federated-tracing",
"laravel/pennant": "Required for the @feature directive",
"laravel/scout": "Required for the @search directive",
"mll-lab/graphql-php-scalars": "Useful scalar types, required for @whereConditions",
"mll-lab/laravel-graphiql": "A graphical interactive in-browser GraphQL IDE - integrated with Laravel",
"pusher/pusher-php-server": "Required when using the Pusher Subscriptions driver"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pieterocp/phpunit-arraysubset-asserts"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nuwave\\Lighthouse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Benchmarks\\": "benchmarks/",
"Tests\\": "tests/"
},
"files": [
"vendor/dms/phpunit-arraysubset-asserts/src/ArraySubsetAsserts.php"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"kylekatarnls/update-helper": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Nuwave\\Lighthouse\\LighthouseServiceProvider",
"Nuwave\\Lighthouse\\Async\\AsyncServiceProvider",
"Nuwave\\Lighthouse\\Auth\\AuthServiceProvider",
"Nuwave\\Lighthouse\\Bind\\BindServiceProvider",
"Nuwave\\Lighthouse\\Cache\\CacheServiceProvider",
"Nuwave\\Lighthouse\\GlobalId\\GlobalIdServiceProvider",
"Nuwave\\Lighthouse\\OrderBy\\OrderByServiceProvider",
"Nuwave\\Lighthouse\\Pagination\\PaginationServiceProvider",
"Nuwave\\Lighthouse\\SoftDeletes\\SoftDeletesServiceProvider",
"Nuwave\\Lighthouse\\Testing\\TestingServiceProvider",
"Nuwave\\Lighthouse\\Validation\\ValidationServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"[ -f vendor/bin/testbench ] && vendor/bin/testbench package:discover || true"
]
}
}