-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.32 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
{
"name": "tsantos/serializer-benchmark",
"type": "project",
"description": "PHP application to benchmark serializer libraries and compare its performance",
"keywords": ["serialize"],
"homepage": "https://github.com/tsantos84/serializer-benchmark",
"authors": [
{
"name": "Tales Santos",
"email": "tales.augusto.santos@gmail.com"
},
{
"name": "Eduard Sukharev",
"email": "sukharev.eh@gmail.com"
}
],
"autoload": {
"psr-4": {
"TSantos\\Benchmark\\" : "src/"
}
},
"require": {
"php": "^7.1",
"jms/serializer": "^1.7",
"symfony/serializer": "^4.0",
"tsantos/serializer": "@dev",
"beberlei/assert": "^2.8",
"zumba/json-serializer": "^2.1",
"phpbench/phpbench": "@dev",
"symfony/yaml": "^4.0",
"symfony/filesystem": "^4.0",
"symfony/property-access": "^4.0",
"doctrine/cache": "^1.7",
"nilportugues/serializer":"dev-master",
"blackfire/php-sdk": "^1.14",
"tebru/gson-php": "dev-master",
"better-serializer/better-serializer": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/tsantos84/php-serializer"
}
]
}