-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.57 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.57 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
51
52
53
{
"name": "wobblecode/rest-bundle",
"type": "symfony-bundle",
"description": "A bundle that creates REST Apis based on your current controllers actions",
"keywords": ["symfony", "rest", "restful", "api", "content negotiation"],
"homepage": "https://github.com/wobblecode/WobbleCodeRestBundle",
"license": "MIT",
"authors": [
{
"name": "Luis Hdez",
"email": "luis@wobblecode.com"
}
],
"require": {
"php": "~7.1",
"symfony/framework-bundle": "~3.0|~4.0",
"symfony/dependency-injection": "~3.0|~4.0",
"doctrine/common": "~2.2"
},
"require-dev": {
"symfony/yaml": "~3.1",
"symfony/browser-kit": "*",
"sensio/framework-extra-bundle": "*",
"symfony/security-csrf": "*",
"symfony/templating": "*",
"symfony/class-loader": "*",
"symfony/finder": "*",
"symfony/css-selector": "*",
"symfony/process": "*",
"doctrine/doctrine-bundle": "*",
"symfony/twig-bundle": "*",
"doctrine/orm": "*",
"symfony/form": "*",
"symfony/validator": "*",
"phpunit/phpunit": "^5.3",
"jms/serializer-bundle": "~1.1.0|^2.0"
},
"suggest": {
"jms/serializer-bundle": "~1.1.0|^2.0"
},
"autoload": {
"psr-4": { "WobbleCode\\RestBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Tests\\Fixtures\\": "Tests/Fixtures/" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}