This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.03 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
66
67
68
69
70
71
72
73
74
75
{
"name": "detailnet/dfw-file-module",
"description": "Zend Framework 2 Module for dfw-file",
"type": "library",
"keywords": [
"dfw",
"detailnet",
"file",
"zf2",
"module"
],
"homepage": "https://github.com/detailnet/dfw-file-module/",
"license": "MIT",
"authors": [
{
"name": "Ivan Wolf",
"email": "ivan.wolf@detailnet.ch"
}
],
"require": {
"php": ">=5.4.0",
"psr/log": "~1.0",
"ocramius/proxy-manager": "~0.5",
"zendframework/zend-loader": "2.*",
"zendframework/zend-modulemanager": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-servicemanager": "2.*",
"detailnet/dfw-core": "~0.1.1",
"detailnet/dfw-log": "~0.2.0",
"detailnet/dfw-file": "~0.1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4.5",
"squizlabs/php_codesniffer" : "~2.2.0",
"phpmd/phpmd": "~2.1.3",
"satooshi/php-coveralls": "dev-master",
"zendframework/zend-http": "2.*",
"knplabs/gaufrette": "0.1.*",
"league/flysystem": "0.3.*",
"detailnet/dfw-bernard": "~0.1.3",
"detailnet/bernard-module": "~0.1.3",
"detailnet/gaufrette-module": "0.1.2"
},
"suggest": {
"knplabs/gaufrette": "For usage of Gaufrette based storage",
"detailnet/gaufrette-module": "For usage of Gaufrette based storage",
"league/flysystem": "For usage of Flysystem based storage"
},
"autoload": {
"psr-0": {
"Detail\\File\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"DetailTest\\File\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"archive": {
"exclude": [
"!vendor",
"tests",
"*phpunit.xml",
".travis.yml",
"build.xml",
"build.properties",
"composer.phar"
]
}
}