This repository was archived by the owner on May 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.33 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "nuwave/lighthouse-ws",
"description": "lighthouse-ws provides a driver based solution for GraphQL subscriptions with the Lighthouse package.",
"keywords": [
"laravel",
"websockets",
"graphql",
"subscriptions"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christopher Moore",
"email": "chris@nuwavecommerce.com"
}
],
"require": {
"nuwave/lighthouse": "dev-master",
"illuminate/support": "^5.4",
"illuminate/redis": "^5.4",
"illuminate/broadcasting": "^5.4",
"illuminate/console": "^5.4",
"illuminate/queue": "^5.4",
"cboden/ratchet": "^0.4.0",
"clue/redis-react": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "^3.6",
"friendsofphp/php-cs-fixer": "^2.11",
"laravel/passport": "^6.0"
},
"autoload": {
"psr-4": {
"Nuwave\\Lighthouse\\Subscriptions\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Nuwave\\Lighthouse\\Subscriptions\\SubscriptionServiceProvider"
],
"aliases": {}
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}