-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
101 lines (101 loc) · 2.77 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "apiship/apidq-client-php",
"description": "PHP client for ApiDQ API",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "ApiShip",
"email": "[email protected]"
},
{
"name": "Nikita Krasnikov",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"homepage": "https://apidq.io/",
"type": "library",
"keywords": [
"API",
"Apidq",
"REST",
"Client",
"SDK"
],
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"doctrine/annotations": "^1.8",
"symfony/property-info": "^5.3",
"symfony/property-access": "^v5.3",
"symfony/serializer": "^5.3",
"symfony/cache": ">=v3.1.0",
"league/uri": "^6.5",
"php-http/client-common": "^2.4.0",
"php-http/message-factory": "^v1.0.2",
"php-http/message": "^1.12.0",
"php-http/discovery": "^1.14.1",
"php-http/cache-plugin": "^1.7",
"php-http/logger-plugin": "^1.2",
"psr/cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.99",
"vlucas/phpdotenv": "^5.3",
"phpmd/phpmd": "^2.10",
"phpunit/phpunit": "^9.5",
"php-http/curl-client": "^2.2",
"squizlabs/php_codesniffer": "^3.6",
"neur0toxine/pock": "^0.10",
"phpdocumentor/reflection-docblock": "^5.3"
},
"suggest": {
"ext-curl": "Most HTTP clients need ext-curl to work properly.",
"php-http/client-implementation": "PSR-18 compatible client should be available to use this library.",
"php-http/curl-client": "Simplest PSR-18 client implementation.",
"symfony/http-client": "One of the most popular HTTP clients. Has PSR-18 compatible adapter."
},
"scripts": {
"phpunit": "./vendor/bin/phpunit -c phpunit.xml.dist --coverage-text",
"phpunit-ci": "@php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit --teamcity -c phpunit.xml.dist",
"phpcs": "./vendor/bin/phpcs -p src --runtime-set testVersion 7.3-8.0 && ./vendor/bin/phpcs -p tests --runtime-set testVersion 7.3-8.0 --warning-severity=0",
"phpmd": "./vendor/bin/phpmd src text ./phpmd.xml",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon src --memory-limit=-1",
"lint:fix": "./vendor/bin/phpcbf src",
"lint": [
"@phpcs",
"@phpmd",
"@phpstan"
],
"verify": [
"@lint",
"@phpunit"
]
},
"autoload": {
"psr-4": {
"ApiDQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiDQ\\TestUtils\\": "tests/utils/",
"ApiDQ\\Tests\\": "tests/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x.x-dev"
}
},
"config": {
"bin-dir": "vendor/bin",
"process-timeout": 600,
"allow-plugins": {
"php-http/discovery": true
}
}
}