-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (30 loc) · 936 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
{
"name": "ducks-project/apache",
"description": "PHP polyfill for the Apache Functions. The aim is to provides functions as the PHP way in order to get them available even if PHP is not running as an Apache module.",
"type": "library",
"keywords": ["PHP", "polyfill", "shim", "apache", "functions", "compat", "request", "response", "headers"],
"homepage": "http://github.com/ducks-project/apache/",
"license": "MIT",
"authors": [
{
"name": "Adrien Loyant",
"email": "[email protected]",
"homepage": "http://adrien.loyant.net",
"role": "Owner"
}
],
"require": {
"php": ">=5.3.9"
},
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Ducks\\Component\\Apache\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}