This repository was archived by the owner on Mar 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.63 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.63 KB
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
{
"minimum-stability": "dev",
"require": {
"doctrine/common": "~2.1",
"maglnet/magl-markdown": "~1.1",
"phly/mustache": "~1.0",
"phly/phly-blog": "dev-master",
"phly/phly-contact": "dev-master",
"php": ">=5.3.3",
"zendframework/zendframework": "~2.2",
"zendframework/zendservice-recaptcha": "~2.0",
"league/html-to-markdown": "^4.2"
},
"autoload": {
"psr-4": {
"Api\\": "module/Api",
"Application\\": "module/Application/src/Application",
"Archives\\": "module/Archives/src/Archives",
"Changelog\\": "module/Changelog/src/Changelog",
"Downloads\\": "module/Downloads/src/Downloads",
"Issues\\": "module/Issues/src/Issues",
"Manual\\": "module/Manual/src/Manual",
"PageController\\": "module/PageController/src/PageController",
"Search\\": "module/Search/src/Search",
"Security\\": "module/Security/src/Security",
"Sitemap\\": "module/Sitemap/src/Sitemap",
"ZfSiteBlog\\": "module/ZfSiteBlog/src/ZfSiteBlog"
},
"classmap": [
"module/Application/Module.php",
"module/Archives/Module.php",
"module/Changelog/Module.php",
"module/Downloads/Module.php",
"module/Issues/Module.php",
"module/Manual/Module.php",
"module/PageController/Module.php",
"module/Search/Module.php",
"module/Security/Module.php",
"module/Sitemap/Module.php",
"module/ZfSiteBlog/Module.php"
]
}
}