-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.06 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
{
"name": "cwd/powerdns-client",
"description": "",
"keywords": ["powerdns", "api-client", "client", "dns", "bundle"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ludwig Ruderstaller",
"email": "l.ruderstaller@cwd.at",
"homepage": "https://cwd.at"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"php-http/guzzle6-adapter": "^1.1",
"php-http/discovery": "^1.0",
"symfony/serializer-pack": "~1.0",
"symfony/http-foundation": ">3.4.0",
"webmozart/assert": "~1.3",
"symfony/validator": ">3.4",
"doctrine/annotations": "^1.6",
"doctrine/cache": "^1.8"
},
"suggest": {
"symfony/symfony": "For using bundle integration"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.46",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": ">3.4"
},
"autoload-dev": {
"Cwd\\PowerDNSClient\\Tests": "tests/"
},
"autoload": {
"psr-4": {
"Cwd\\PowerDNSClient\\": ""
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}