-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.43 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
{
"name": "remi-san/serializer",
"description" : "A universal, config-less PHP serializer for all purpose.",
"license" : "MIT",
"keywords": [
"PHP",
"Serializer"
],
"authors": [
{
"name": "Rémi San",
"email": "[email protected]",
"homepage": "http://remi-san.github.io/",
"role": "Developer"
}
],
"require": {
"php": ">=5.5",
"ocramius/generated-hydrator": "^1.2|^2.0",
"doctrine/instantiator": "^1.0"
},
"require-dev": {
"symfony/console": "^2.7|^3.0",
"phpunit/phpunit": "^4.5",
"mockery/mockery": "^0.9",
"friendsofphp/php-cs-fixer": "^1.10",
"squizlabs/php_codesniffer": "~2.0",
"league/event": "^2.1",
"league/tactician": "^1.0"
},
"suggest": {
"symfony/console": "To use the console module to generate proxies",
"league/event": "Allows to deal with event within your application.",
"league/tactician": "Allows to deal with command within your application."
},
"autoload": {
"psr-4": {
"RemiSan\\Serializer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RemiSan\\Serializer\\Sample\\": "sample/src/"
}
},
"bin": [
"bin/serializer"
],
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}