-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.01 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
{
"name": "zestic/graphql-component",
"type": "library",
"description": "GraphQL component",
"keywords": [
"GraqhQL",
"Laminas"
],
"license": "MIT",
"config": {
"sort-packages": true
},
"require": {
"php": "^8.3",
"firebase/php-jwt": "^6.10.1",
"laminas/laminas-diactoros": "^2.6 || ^3.5",
"laminas/laminas-servicemanager": "^4.0",
"netglue/laminas-messenger": "^2.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^2.0 || ^3.0",
"zestic/contracts": "^0.2",
"zestic/app-library": "^v0.13.0|^v0.14.0",
"zestic/webonxy-middleware": "^1.1.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Zestic\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixture\\": "tests/Fixture",
"Tests\\Unit\\": "tests/unit"
}
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"repositories": {
"laminas/laminas-di": {
"type": "vcs",
"url": "[email protected]:zestic/laminas-di.git"
}
}
}