-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.25 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mismatch/sailor-bundle",
"type": "symfony-bundle",
"description": "Integrate Sailor into Symfony",
"keywords": ["graphql", "sailor", "client", "symfony-bundle"],
"license": "MIT",
"authors": [
{
"name": "Kevin Mian Kraiker",
"email": "kevin.mian@gmail.com",
"homepage": "https://github.com/CRC-Mismatch"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"nette/php-generator": "^3.6||^4.0",
"spawnia/sailor": "^0.29",
"symfony/cache-contracts": "^2.2||^3.0",
"symfony/config": "^5.0||^6.0",
"symfony/console": "^5.0||^6.0",
"symfony/dependency-injection": "^5.0||^6.0",
"symfony/error-handler": "^5.0||^6.0",
"symfony/event-dispatcher": "^5.0||^6.0",
"symfony/filesystem": "^5.0||^6.0",
"symfony/http-kernel": "^5.0||^6.0",
"symfony/serializer": "^5.0||^6.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"symfony/framework-bundle": "^5.0||^6.0",
"symfony/http-client": "^5.0||^6.0",
"symfony/phpunit-bridge": "^5.3",
"psr/http-client": "^1.0",
"nyholm/psr7": "^1.5",
"friendsofphp/php-cs-fixer": "^3.8",
"guzzlehttp/guzzle": "^7.0",
"php-http/mock-client": "^1.5"
},
"suggest": {
"symfony/http-client": "^5.0 || ^6.0 for a complete Symfony Http Client Contracts (and PSR-18, but requires additional PSR-7) implementation",
"guzzlehttp/guzzle": "^7.0 for a complete PSR-18 (and PSR-7) implementation",
"php-http/socket-client": "^2.0.2 for a complete PSR-18 (and PSR-7) implementation",
"php-http/curl-client": "^2.1.0 for a PSR-18 implementation (requires additional PSR-7)",
"nyholm/psr7": "For a PSR-7 implementation"
},
"autoload": {
"psr-4": {
"Mismatch\\SpawniaSailorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mismatch\\SpawniaSailorBundle\\Tests\\": "tests/"
}
},
"conflict": {
},
"extra": {
"branch-alias": {
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}