-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.21 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
{
"version": "0.5.0",
"name": "dennis-koster/lighthouse-translatable",
"description": "Adds translatable directive for automatic schema generation for translatable fields",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/dennis-koster/lighthouse-translatable",
"keywords": [
"laravel",
"translations",
"translatable",
"lighthouse",
"type",
"graphql"
],
"authors": [
{
"name": "Dennis Koster",
"email": "[email protected]",
"homepage": "https://github.com/dennis-koster"
}
],
"autoload": {
"psr-4": {
"DennisKoster\\LighthouseTranslatable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"nuwave/lighthouse": "^6"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9"
},
"extra": {
"laravel": {
"providers": [
"DennisKoster\\LighthouseTranslatable\\Providers\\LighthouseTranslatableProvider"
]
}
}
}