-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
44 lines (44 loc) · 1.14 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
{
"name": "aura/web",
"type": "library",
"description": "Provides web Request and Response objects for use by web controllers and actions. These are representations of the PHP web environment, not HTTP request and response objects proper.",
"keywords": [
"request",
"response"
],
"homepage": "https://github.com/auraphp/Aura.Web",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Web Contributors",
"homepage": "https://github.com/auraphp/Aura.Web/contributors"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Aura\\Web\\": "src/",
"Aura\\Web\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\Web\\_Config\\Common"
}
}
},
"require-dev": {
"aura/di": "~2.0",
"yoast/phpunit-polyfills": "~1.0"
},
"autoload-dev": {
"psr-4": {
"Aura\\Web\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
}
}