forked from tmihalicka/JMSSerializerModule
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 1.58 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
{
"name": "iceshack/jms-serializer-module",
"description": "Zend Framework 2 Module that integrates the jms serializer library",
"type": "library",
"license": "MIT",
"keywords": [
"serialize",
"deserialize",
"json",
"xml",
"jms",
"module",
"zf2"
],
"authors": [
{
"name": "Moritz Schröder",
"email": "[email protected]",
"homepage": "https://www.molabs.de"
},
{
"name": "Martin Parsiegla",
"email": "[email protected]",
"homepage": "http://speanet.info"
},
{
"name": "Piotr Zając",
"email": "[email protected]",
"homepage": "http://unixslayer.pl"
},
{
"name": "Tomas Mihalicka",
"email": "[email protected]",
"homepage": "http://mihalicka.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Spea/JMSSerializerModule/contributors"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-servicemanager": "2.*",
"doctrine/doctrine-module": ">=0.5.1",
"jms/serializer": "1.*"
},
"require-dev": {
"zendframework/zend-developer-tools": "dev-master"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"JMSSerializerModule\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}