-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
37 lines (37 loc) · 1.03 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
{
"name": "ctubio/php-proxy-keyserver",
"description": "PHP proxy and extensible web interface forwarding standard HKP requests to a local or remote SKS OpenPGP Keyserver.",
"type": "project",
"keywords": ["php", "proxy", "keyserver", "hkp", "sks"],
"homepage": "https://github.com/ctubio/php-proxy-keyserver",
"license": "MIT",
"authors": [{
"name": "Carles Tubio",
"homepage": "https://pgp.key-server.io"
}],
"support": {
"email": "carles.tubio@key-server.io",
"source": "https://github.com/ctubio/php-proxy-keyserver/tree/master",
"issues": "https://github.com/ctubio/php-proxy-keyserver/issues"
},
"require": {
"php": "~5.6",
"monolog/monolog": "~1.13",
"jenssegers/proxy": "2.*",
"dflydev/apache-mime-types": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"ctubio\\HKPProxy\\": "src/ctubio/HKPProxy/"
}
},
"scripts": {
"post-create-project-cmd" : [
"make quickstart"
]
}
}