forked from t4web/Base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 855 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (35 loc) · 855 Bytes
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
{
"name": "t4web/base",
"description": "ZF2 Module. A set of generic (abstract) classes which are commonly used across multiple modules.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"base",
"abstract classes"
],
"homepage": "https://github.com/t4web/Base",
"authors": [
{
"name": "Max Gulturyan",
"email": "gulturyan@gmail.com",
"homepage": "http://about.me/maxgu"
}
],
"require": {
"php": ">=5.4.0",
"zendframework/zendframework": "~2.5.0"
},
"require-dev" : {
"phpunit/phpunit": "4.5.*"
},
"autoload": {
"psr-0": {
"T4webBase": "src/",
"T4webBaseTest": "tests/"
},
"classmap": [
"./Module.php"
]
}
}