-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 993 Bytes
/
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
{
"name": "riskio/tactician-module",
"description": "Tactician module for Zend Framework",
"type": "library",
"keywords": [
"zf2", "tactician"
],
"license": "MIT",
"homepage": "https://github.com/RiskioFr/tactician-module",
"authors": [
{
"name": "Nicolas Eeckeloo",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"league/tactician": "^1.0",
"league/tactician-container": "^2.0",
"zendframework/zend-servicemanager": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"TacticianModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TacticianModule\\Test\\": "tests/"
}
},
"extra": {
"zf": {
"config-provider": "TacticianModule\\ConfigProvider",
"module": "TacticianModule\\Module"
}
}
}