forked from AfriCC/php-epp2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 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
{
"name": "africc/php-epp2",
"type": "library",
"description": "A High Level EPP (Extensible Provisioning Protocol) TCP/SSL Client for PHP",
"keywords": ["epp", "domains", "registrar", "registry", "client", "tcp"],
"homepage": "https://github.com/AfriCC/php-epp2",
"license": "GPL-3.0+",
"authors": [
{
"name": "Gunter Grodotzki",
"email": "hello@afri.cc",
"homepage": "https://www.afri.cc",
"role": "Developer"
}, {
"name" : "Hubert Kowalski",
"email" : "h.kowalski@hakger.pl",
"homepage" : "https://www.hakger.pl",
"role" : "Contributor"
}
],
"require": {
"php": ">=5.5.0",
"ext-intl": "*",
"ext-openssl": "*"
},
"require-dev": {
"php-coveralls/php-coveralls": "^1.0|^2.0"
},
"autoload": {
"psr-4": {
"AfriCC\\": "src/AfriCC"
}
},
"suggests" : {
"ext-curl" : "Required if you wish to use HTTPClient",
"paragonie/random_compat" : "Better support for random_bytes on earlier PHP"
}
}