-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
86 lines (86 loc) · 2.95 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "graviton/graviton",
"version": "0.7.0-dev",
"description": "The base package for graviton",
"license": "GPL",
"authors": [
{
"name": "Lucas Bickel",
"email": "[email protected]"
},
{
"name": "Dario Nuevo",
"email": "[email protected]"
},
{
"name": "Markus Dessler",
"email": "[email protected]"
},
{
"name": "Beat Luginbühl",
"email": "[email protected]"
},
{
"name": "Manuel Kipfer",
"email": "[email protected]"
}
],
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"autoload": {
"psr-0": { "": "src/", "Graviton": "src/", "Graviton": "/app/htdocs/src"}
},
"require-dev": {
"libgraviton/codesniffer": "dev-master@dev",
"phpunit/phpunit": "*",
"liip/functional-test-bundle": "@dev",
"phpmd/phpmd": "@dev",
"fabpot/php-cs-fixer": "0.4.*@dev",
"davidbadura/faker-bundle": "~1.0"
},
"require": {
"php": "~5.4",
"symfony/symfony": "~2.5",
"doctrine/orm": "~2.4",
"doctrine/doctrine-bundle": ">=1.2",
"twig/extensions": "~1.0",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.3",
"sensio/distribution-bundle": "~2.3",
"sensio/framework-extra-bundle": "~2.3",
"sensio/generator-bundle": "~2.3",
"jms/serializer-bundle": "*",
"jms/di-extra-bundle": "~1.3",
"doctrine/mongodb-odm": "1.0.*@dev",
"doctrine/mongodb-odm-bundle": "3.0.*@dev",
"stof/doctrine-extensions-bundle": "~1.1",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"misd/guzzle-bundle": "~1.0",
"knplabs/knp-paginator-bundle": "~2.4",
"symfony/icu": "~1.0.0",
"php-jsonpointer/php-jsonpointer": "@dev",
"php-jsonpatch/php-jsonpatch": "@dev",
"nulpunkt/monolog-elasticsearch-logstashformat": "*",
"graviton/php-rql-parser": "dev-master"
},
"config": {
"github-oauth": {
"github.com": "e404bdf27d2529d3a3b94532ab79d019992315d6"
}
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web"
}
}