This repository was archived by the owner on Oct 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.67 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
{
"name": "fagundes/zff-base",
"description": "A ZF2 module that gathers a set of classes which are commonly used in several ZF2 projects",
"type": "library",
"license": "MIT",
"keywords": [
"zf2", "twbs", "bootstrap 3", "bootstrap 4", "doctrine 2", "util"
],
"homepage": "https://github.com/fagundes/ZffBase",
"authors": [
{
"name": "Vinícius Fagundes",
"email": "mvlacerda@gmail.com"
}
],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-mvc": "~2.5",
"zendframework/zend-modulemanager": "~2.5",
"zendframework/zend-validator": "~2.5",
"zendframework/zend-view": "~2.5",
"rwoverdijk/assetmanager": "~1.6"
},
"require-dev": {
"doctrine/doctrine-orm-module": "0.*",
"fagundes/zff-table": "~3.2",
"zendframework/zend-serializer": "~2.5",
"zendframework/zend-log": "~2.5",
"zendframework/zend-i18n": "~2.5",
"phpunit/phpunit": "~4",
"squizlabs/php_codesniffer": "~2"
},
"suggest": {
"twbs/bootstrap": "To support Element\\Bs* Form Elements usage",
"fagundes/zff-table": "To support Service & Table integration usage",
"doctrine/doctrine-orm-module": "To support AbstractEntity, AbstractEntityRepository, AbstractForm, AbstractFieldset usage"
},
"autoload": {
"psr-4": {
"Zff\\Base\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZffTest\\Base\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev",
"dev-develop": "0.2.x-dev"
}
}
}