-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.02 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
69
70
71
72
73
74
75
76
{
"name": "mops1k/api-client-bundle",
"description": "Client for making work with any api more easy",
"keywords": [
"api-sdk",
"http",
"php-http",
"symfony",
"symfony-bundle",
"bundle"
],
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"composer-runtime-api": "^2.1.0",
"php-http/client-common": "^2.7",
"php-http/client-implementation": "*",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.0",
"php-http/multipart-stream-builder": "^1.3",
"phpdocumentor/reflection-docblock": "^5.3",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"symfony/event-dispatcher": "*",
"symfony/framework-bundle": "^6.2",
"symfony/mime": "^6.2",
"symfony/serializer": "^6.2"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"guzzlehttp/psr7": "^2.6",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "^1.0",
"php-http/mock-client": "^1.0",
"phpdocumentor/type-resolver": "^1.7",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-beberlei-assert": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.4",
"psr/cache-implementation": "2.0|3.0",
"roave/security-advisories": "dev-latest",
"symfony/config": "^6.3",
"symfony/property-access": "^6.2",
"symfony/property-info": "^6.2",
"symfony/var-exporter": "^6.2",
"symplify/easy-coding-standard": "^12.0"
},
"autoload": {
"psr-4": {
"ApiClientBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiClientBundle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Aleksandr Kvintilyanov",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}