-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.45 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
{
"name": "tsantos/serializer",
"description": "Object (de)serializer component for PHP",
"keywords": ["serializer","metadata","data-transformation"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tales Santos",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TSantos\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\TSantos\\Serializer\\": "tests/"
},
"files": ["tests/Fixture/Model/NoNamespaceDummy.php"]
},
"require": {
"php": "^7.2",
"jms/metadata": "^2.0",
"doctrine/instantiator": "^1.1",
"symfony/event-dispatcher": "^4.3",
"symfony/property-info": "^4.3",
"symfony/filesystem": "^4.3",
"phpdocumentor/reflection-docblock": "^4.2",
"nette/php-generator": "^3.2",
"pimple/pimple": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"friendsofphp/php-cs-fixer": "^2.15",
"symfony/yaml": "^4.3",
"doctrine/annotations": "^1.5"
},
"suggest": {
"doctrine/annotations": "Allow to use annotations format to define class metadata",
"symfony/yaml": "Allow to use Yaml format to define class metadata"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"minimum-stability": "dev"
}