-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.38 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "mehr-als-nix/zf2-featureflags",
"description": "Feature toggling for ZF2. This module akt like an wrapper for qandidate-labs/qandidate-toggle.",
"keywords": ["zf2", "module", "feature-toggle"],
"support": {
"wiki": "https://github.com/MehrAlsNix/zf2-featureflags/wiki"
},
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Siad Ardroumli",
"email": "siad.ardroumli@gmail.com"
}
],
"require": {
"php": "^5.5 || ^7.0",
"qandidate/toggle": "^1.0",
"zendframework/zend-servicemanager": "^2.6 || ~3.0",
"zendframework/zend-modulemanager": "^2.6",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-authentication": "^2.5",
"zendframework/zend-view": "^2.5",
"zendframework/zend-config": "^2.6 || ^3.0",
"zendframework/zend-eventmanager": "^2.6 || ~3.0",
"zendframework/zend-http": "~2.3",
"alex-oleshkevich/zf-annotations": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7",
"zendframework/zend-test": "^2.6 || ^3.1",
"zendframework/zend-log": "^2.6",
"zendframework/zend-serializer": "^2.6",
"zendframework/zend-i18n": "^2.5"
},
"autoload": {
"psr-4": {
"MehrAlsNix\\": "src/"
},
"classmap": [
"./Module.php"
]
},
"autoload-dev": {
"psr-4": {
"MehrAlsNix\\FeatureToggleTest\\": "tests/FeatureToggleTest"
}
}
}