forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.36 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.36 KB
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
{
"name": "dunglas/api-bundle",
"type": "symfony-bundle",
"description": "JSON-LD / Hydra REST API for Symfony",
"keywords": ["REST", "API", "JSON", "JSON-LD", "Hydra"],
"homepage": "http://api-platform.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "http://dunglas.fr"
}
],
"require": {
"php": ">=5.5",
"symfony/serializer": "~3.0|~2.7@beta",
"symfony/validator": "~2.5|~3.0",
"symfony/framework-bundle": "~2.6|~3.0",
"symfony/proxy-manager-bridge": "~2.3",
"ocramius/proxy-manager": "~1.0",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/inflector": "~1.0",
"doctrine/doctrine-bundle": "~1.2",
"dunglas/php-property-info": "~0.2",
"phpdocumentor/reflection": "^1.0.7"
},
"require-dev": {
"symfony/symfony": "~2.7@beta",
"friendsofsymfony/user-bundle": "dev-master",
"phpspec/phpspec": "~2.0",
"behat/behat": "~3.0",
"behat/symfony2-extension": "~2.0",
"behat/mink": "~1.5",
"behat/mink-extension": "~2.0",
"behat/mink-browserkit-driver": "~1.1",
"behatch/contexts": "~2.1"
},
"suggest": {
"friendsofsymfony/user-bundle": "To use the FOSUserBundle bridge."
},
"autoload": {
"psr-4": { "Dunglas\\ApiBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}