-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.09 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.09 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
44
{
"name": "mamuz/mamuz-content-manager",
"type": "library",
"description": "Provides simple content manager for ZF2 with Doctrine",
"homepage": "https://github.com/mamuz/MamuzContentManager",
"license": "MIT",
"keywords": [
"cms",
"markdown",
"zf2",
"doctrine"
],
"authors": [
{
"name": "Marco Muths",
"email": "mamuz.de@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.4",
"zendframework/zend-mvc": "~2.3",
"zendframework/zend-servicemanager": "~2.3",
"zendframework/zend-eventmanager": "~2.3",
"zendframework/zend-modulemanager": "~2.3",
"zendframework/zend-view": "~2.3",
"zendframework/zend-http": "~2.3",
"zendframework/zend-form": "~2.3",
"doctrine/doctrine-orm-module": "~0.8",
"maglnet/magl-markdown": "~1.3"
},
"require-dev": {
"satooshi/php-coveralls": "0.6.*",
"phpunit/phpunit": "4.*",
"mockery/mockery": "0.9.*",
"mamuz/php-dependency-analysis": "0.*"
},
"autoload": {
"psr-0": {
"MamuzContentManager\\": "src/"
}
}
}