-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 1.04 KB
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.04 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
{
"name": "tea-and-code/api-bundle",
"description": "Adds RESTful API functionality to Symfony2",
"homepage": "http://teaandcode.com",
"type": "symfony-bundle",
"license": "Apache2",
"authors": [
{
"name": "Dave Nash",
"email": "dave.nash@teaandcode.com"
}
],
"minimum-stability": "dev",
"require": {
"symfony/framework-bundle": ">=2.1.0",
"symfony/security-bundle": "*"
},
"require-dev": {
"sensio/framework-extra-bundle": "*",
"symfony/class-loader": "*",
"symfony/yaml": "*",
"symfony/browser-kit": "*",
"symfony/class-loader": "*",
"symfony/finder": "*",
"symfony/css-selector": "*",
"symfony/process": "*",
"doctrine/doctrine-bundle": "*",
"symfony/twig-bundle": "*",
"doctrine/orm": "*",
"symfony/form": "*",
"symfony/validator": "*"
},
"autoload": {
"psr-0": { "TeaAndCode\\APIBundle": "" }
},
"target-dir": "TeaAndCode/APIBundle"
}