-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.35 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
52
53
54
{
"name": "mamuz/mamuz-blog",
"type": "library",
"description": "Provides blog feature for ZF2 with Doctrine",
"homepage": "https://github.com/mamuz/MamuzBlog",
"license": "MIT",
"keywords": [
"blog",
"markdown",
"zf2",
"doctrine",
"twitter-bootstrap"
],
"authors": [
{
"name": "Marco Muths",
"email": "mamuz.de@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"mamuz/mamuz-blog-feed": "To provide rss and/or atom feeds"
},
"require": {
"php": ">=5.4",
"ext-intl": "*",
"zendframework/zend-mvc": "~2.3",
"zendframework/zend-servicemanager": "~2.3",
"zendframework/zend-eventmanager": "~2.3",
"zendframework/zend-modulemanager": "~2.3",
"zendframework/zend-loader": "~2.3",
"zendframework/zend-view": "~2.3",
"zendframework/zend-http": "~2.3",
"zendframework/zend-form": "~2.3",
"zendframework/zend-i18n": "~2.3",
"doctrine/doctrine-orm-module": "~0.8",
"maglnet/magl-markdown": "~1.3",
"neilime/zf2-twb-bundle": "~2.4",
"hashids/hashids": "~1.0.5",
"cocur/slugify": "~1.0"
},
"require-dev": {
"satooshi/php-coveralls": "0.6.*",
"phpunit/phpunit": "4.*",
"mockery/mockery": "0.9.*",
"mamuz/php-dependency-analysis": "0.*"
},
"autoload": {
"psr-0": {
"MamuzBlog\\": "src/"
}
}
}