-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
45 lines (45 loc) · 920 Bytes
/
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
{
"name": "exonet/powerdns-php",
"type": "library",
"description": "PowerDNS API PHP Client",
"keywords": [
"exonet",
"powerdns-php",
"powerdns-api",
"powerdns"
],
"homepage": "https://github.com/exonet/powerdns-php",
"license": "MIT",
"authors": [
{
"name": "Exonet",
"email": "[email protected]",
"homepage": "https://exonet.nl",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.2.1 || ^0.4.0 || ^0.5.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Exonet\\Powerdns\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Exonet\\Powerdns\\tests\\": "tests"
}
},
"config": {
"sort-packages": true
}
}