This repository has been archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
65 lines (62 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "phpro/zf-smartcrud",
"description": "Module for creating smartcrud with the ZF2 MVC layer.",
"type": "zf-module",
"license": "BSD-3-Clause",
"keywords": [
"smartcrud",
"zend",
"zf2",
"module"
],
"homepage": "https://github.com/phpro/zf-smartcrud",
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"zendframework/zend-config": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-http": "2.*",
"zendframework/zend-eventmanager": "2.*",
"zendframework/zend-form": "2.*",
"zendframework/zend-modulemanager": "2.*",
"zendframework/zend-stdlib": "2.*",
"zendframework/zend-servicemanager": "2.*",
"zendframework/zend-session": "2.*",
"zendframework/zend-view": "2.*",
"zendframework/zend-version": "2.*",
"symfony/console": "2.*"
},
"require-dev": {
"phpspec/phpspec": "~2.0.1",
"fabpot/PHP-CS-Fixer": "~1.5.0",
"doctrine/doctrine-orm-module": "0.8.*",
"doctrine/doctrine-mongo-odm-module":"0.8.*",
"zendframework/zend-db": "2.*",
"zendframework/zend-permissions-acl":"2.*",
"bjyoungblood/bjy-authorize": "1.3.*",
"rwoverdijk/assetmanager": "~1.3.5"
},
"suggest": {
"rwoverdijk/assetmanager": "~1.3.5",
"doctrine/doctrine-orm-module": "If you want to use the Doctrine ORM Gateway",
"doctrine/doctrine-mongo-odm-module": "If you want to use the Doctrine ODM Gateway",
"zendframework/zend-db": "If you want to use the Zend DB Gateway"
},
"autoload": {
"psr-0": {
"Phpro\\SmartCrud": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"bin": ["bin/smartcrud"]
}