-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
51 lines (51 loc) · 1.29 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
51
{
"name": "aura/view",
"type": "library",
"description": "Provides an implementation of the TemplateView and TwoStepView patterns, with support for helpers and for closures as templates, using PHP itself as the templating language.",
"keywords": [
"escape",
"escaper",
"escaping",
"template",
"template view",
"two step view",
"two-step view",
"twostep view",
"view"
],
"homepage": "https://github.com/auraphp/Aura.View",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.View Contributors",
"homepage": "https://github.com/auraphp/Aura.View/contributors"
}
],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"Aura\\View\\": "src/",
"Aura\\View\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "library",
"config": {
"common": "Aura\\View\\_Config\\Common"
}
}
},
"require-dev": {
"aura/di": "~2.0",
"yoast/phpunit-polyfills": "~1.0"
},
"autoload-dev": {
"psr-4": {
"Aura\\View\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
}
}