-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.37 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
{
"name": "zestic/webonxy-middleware",
"type": "library",
"description": "Webonxy GraqhQL middleware",
"keywords": [
"GraphQl",
"PSR-7",
"PSR-15",
"Laminas",
"webonxy"
],
"license": "MIT",
"config": {
"sort-packages": true
},
"require": {
"php": "^8.3",
"firebase/php-jwt": "^6.1.0",
"laminas/laminas-cache": "^4.0",
"laminas/laminas-cache-storage-adapter-filesystem": "^2.4 || ^3.0",
"laminas/laminas-servicemanager": "^4.0",
"nesbot/carbon": "^2.16",
"psr/container": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^2.0 || ^3.0",
"webonyx/graphql-php": "^15.0.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.4",
"phpspec/prophecy": "~1.0",
"phpunit/phpunit": "^10.4@dev"
},
"repositories": {
"laminas/laminas-cache": {
"type": "vcs",
"url": "[email protected]:zestic/laminas-cache.git"
},
"laminas/laminas-cache-storage-adapter-filesystem": {
"type": "vcs",
"url": "[email protected]:zestic/laminas-cache-storage-adapter-filesystem.git"
}
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Zestic\\GraphQL\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Fixture\\": "tests/Fixture/src",
"Test\\Integration\\": "tests/integration",
"Test\\Unit\\": "tests/unit"
}
}
}