-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
50 lines (50 loc) · 1.13 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
45
46
47
48
49
50
{
"name": "aura/html",
"type": "library",
"description": "Provides HTML escapers and helpers, including form input helpers.",
"keywords": [
"html",
"form",
"input",
"helper",
"helpers",
"escape",
"escaper",
"escapers",
"escaping"
],
"homepage": "https://github.com/auraphp/Aura.Html",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Html Contributors",
"homepage": "https://github.com/auraphp/Aura.Html/contributors"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Aura\\Html\\": "src/",
"Aura\\Html\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\Html\\_Config\\Common"
}
}
},
"require-dev": {
"yoast/phpunit-polyfills": "~1.0"
},
"autoload-dev": {
"psr-4": {
"Aura\\Html\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
}
}