-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
113 lines (113 loc) · 4.15 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "rshief/kal3a",
"license": "MIT",
"type": "project",
"description": "Aggregation and collection engine.",
"autoload": {
"psr-4": { "AppBundle\\": "src/AppBundle", "OrmAclSecurityBundle\\": "src/OrmAclSecurityBundle" },
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ],
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" },
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"require": {
"php": ">=7.0.0",
"anahkiasen/underscore-php": "^2.0",
"bangpound/atom-models": "^2.0@dev",
"bangpound/callable-compiler-pass": "^1.0",
"bangpound/consul-bundle": "0.1.x@dev",
"bangpound/guzzle-proxy-bundle": "^2.0@dev",
"clue/json-stream": "^0.1",
"dlapps/consul-php-envvar": "dev-SDKv3",
"doctrine/couchdb": "dev-develop as 1.0.x-dev",
"doctrine/couchdb-odm": "dev-develop as 1.0.x-dev",
"doctrine/couchdb-odm-bundle": "dev-develop",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/orm": "^2.5",
"friendsofsymfony/jsrouting-bundle": "2.0.x-dev",
"friendsofsymfony/rest-bundle": "^2.0",
"friendsofsymfony/user-bundle": "^2.0",
"guzzlehttp/guzzle": "^6.1",
"guzzlehttp/oauth-subscriber": "^0.3",
"incenteev/composer-parameter-handler": "^2.0",
"javiereguiluz/easyadmin-bundle": "^1.16.3",
"league/csv": "^8.1",
"mkraemer/react-pcntl": "^2.2",
"nelmio/api-doc-bundle": "^2.11",
"nelmio/cors-bundle": "^1.0",
"ongr/elasticsearch-bundle": "^5.0.1",
"php-amqplib/rabbitmq-bundle": "^1.10",
"phpdocumentor/reflection": "^2.0@alpha",
"react/child-process": "^0.4",
"react/eep": "dev-master",
"react/event-loop": "^0.4",
"react/http": "^0.6",
"react/stream": "^0.5",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"simpleregex/srl-php": "^0.1.0",
"stof/doctrine-extensions-bundle": "^1.2",
"symfony/monolog-bundle": "^3.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/security-acl": "^3.0",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/symfony": "3.3.*",
"yzalis/supervisor-bundle": "^1.3"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:bangpound/consul-php-envvar.git"
},
{
"type": "vcs",
"url": "[email protected]:bangpound/DoctrineCouchDBBundle.git"
},
{
"type": "vcs",
"url": "[email protected]:bangpound/couchdb-odm.git"
},
{
"type": "vcs",
"url": "[email protected]:bangpound/couchdb-client.git"
}
],
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"preferred-install": "source",
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}