forked from nilportugues/php-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (48 loc) · 1.38 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
{
"name": "nilportugues/serializer",
"type": "library",
"description": "Serialize PHP variables, including objects, in any format. Support to unserialize it too.",
"keywords": ["json", "serialize", "serializer"],
"homepage": "http://nilportugues.com",
"license": "MIT",
"authors": [
{
"name": "Nil Portugués Calderó",
"email": "[email protected]",
"role": "Project Lead Developer"
},
{
"name": "Zumba Fitness, LLC",
"email": "[email protected]",
"role": "Author of the original idea: https://github.com/zumba/json-serializer"
},
{
"name": "Juan Basso",
"email": "[email protected]",
"role": "Author of the original idea: https://github.com/zumba/json-serializer"
}
],
"require": {
"php": ">=5.6.0",
"symfony/yaml": "2.*|3.*"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"nilportugues/php_backslasher": "~0.2",
"fabpot/php-cs-fixer": "^1.9",
"doctrine/collections": "^1.3"
},
"autoload": {
"psr-4": {
"NilPortugues\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Test\\Serializer\\": "tests/"
}
},
"config": {
"bin-dir": "bin/"
}
}