forked from schmittjoh/serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.17 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
{
"name": "jms/serializer",
"type": "library",
"description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
"keywords": ["serialization", "deserialization", "json", "jaxb", "xml"],
"homepage": "http://jmsyst.com/libs/serializer",
"license": "MIT",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
},
{
"name": "Asmir Mustafic",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2||^8.0",
"doctrine/annotations": "^1.0",
"doctrine/instantiator": "^1.0.3",
"doctrine/lexer": "^1.1",
"jms/metadata": "^2.0",
"phpstan/phpdoc-parser": "^0.4"
},
"suggest": {
"doctrine/cache": "Required if you like to use cache functionality.",
"doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.",
"symfony/yaml": "Required if you'd like to use the YAML metadata format."
},
"require-dev": {
"ext-pdo_sqlite": "*",
"doctrine/coding-standard": "^8.1",
"doctrine/orm": "~2.1",
"doctrine/persistence": "^1.3.3|^2.0|^3.0",
"doctrine/phpcr-odm": "^1.3|^2.0",
"jackalope/jackalope-doctrine-dbal": "^1.1.5",
"ocramius/proxy-manager": "^1.0|^2.0",
"phpunit/phpunit": "^8.0||^9.0",
"psr/container": "^1.0",
"symfony/dependency-injection": "^3.0|^4.0|^5.0",
"symfony/expression-language": "^3.0|^4.0|^5.0",
"symfony/filesystem": "^3.0|^4.0|^5.0",
"symfony/form": "^3.0|^4.0|^5.0",
"symfony/translation": "^3.0|^4.0|^5.0",
"symfony/validator": "^3.1.9|^4.0|^5.0",
"symfony/yaml": "^3.3|^4.0|^5.0",
"twig/twig": "~1.34|~2.4|^3.0"
},
"autoload": {
"psr-4": {
"JMS\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JMS\\Serializer\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.10-dev"
}
}
}