-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
61 lines (59 loc) · 1.65 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
58
59
60
61
{
"name": "gointegro/hateoas",
"description": "GOintegro HATEOAS Lib",
"keywords": ["Doctrine", "HATEOAS", "REST", "API", "JSON-API"],
"homepage": "http://www.gointegro.com",
"license": "MIT",
"authors": [
{
"name": "Javier Lorenzana",
"email": "[email protected]"
},
{
"name": "Adolfo Castro Menna",
"email": "[email protected]"
},
{
"name": "GOintegro Devs",
"homepage": "http://www.gointegro.com"
}
],
"require": {
"php": ">=5.4.0",
"symfony/doctrine-bridge": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/orm": "*",
"rhumsaa/uuid": "*",
"predis/predis": "*",
"symfony/http-foundation": "*",
"symfony/http-kernel": "*",
"symfony/filesystem": "*",
"symfony/routing": "*",
"symfony/security-core": "*",
"symfony/translation": "*",
"symfony/security": "*",
"symfony/validator": "*",
"symfony/yaml": "*",
"gointegro/json": "*",
"gointegro/raml": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpdocumentor/phpdocumentor": "*",
"codeception/codeception": "*",
"codeclimate/php-test-reporter": "dev-master"
},
"suggest": {
"stof/doctrine-extensions-bundle": "*",
"nelmio/solarium-bundle": "*"
},
"autoload": {
"psr-0": { "GoIntegro\\Hateoas": "" }
},
"target-dir": "GoIntegro/Hateoas",
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
}
}