-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
57 lines (57 loc) · 2.11 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
{
"name": "egeloen/serializer",
"description": "Serializer for PHP 5.6+ supporting JSON, XML, YAML & CSV",
"keywords": [ "serializer" ],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|^7.0",
"doctrine/instantiator": "^1.0",
"doctrine/lexer": "^1.0",
"symfony/options-resolver": "^2.7|^3.0"
},
"require-dev": {
"doctrine/annotations": "^1.2",
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "^2.0",
"nikic/php-parser": "^1.4",
"phpdocumentor/reflection": "^3.0",
"phpunit/phpunit": "^5.4",
"phpunit/phpunit-mock-objects": "^3.2.3",
"psr/cache": "^1.0",
"symfony/event-dispatcher": "^2.7|^3.0",
"symfony/phpunit-bridge": "^2.7|^3.0",
"symfony/property-info": "^2.7|^3.0",
"symfony/property-access": "^2.7|^3.0",
"symfony/yaml": "^2.7|^3.0"
},
"suggest": {
"doctrine/annotations": "Allow you to use the mapping annotations.",
"ext-dom": "Allow you to use the XML serialization visitor and mapping.",
"ext-json": "Allow you to use the JSON serialization/deserialization visitors and mapping.",
"ext-simplexml": "Allow you to use the XML deserialization visitor and mapping.",
"phpdocumentor/reflection": "Allow you to parse PHP type more efficiently",
"symfony/event-dispatcher": "Allow you to use the event dispatching system.",
"symfony/property-access": "Allow you to use the Symfony accessor/mutator.",
"symfony/property-info": "Allow you to use the mapping type auto discovery.",
"symfony/yaml": "Allow you to use the YAML serialization/deserialization visitors and mapping."
},
"autoload": {
"psr-4": { "Ivory\\Serializer\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\Serializer\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}