-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·82 lines (82 loc) · 2.83 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
{
"name": "radvance/radvance",
"description": "Radvance PHP Framework",
"homepage": "https://github.com/linkorb/radvance",
"keywords": ["linkorb", "framework", "radvance"],
"type": "application",
"license": "MIT",
"authors": [{
"name": "LinkORB",
"email": "engineering@linkorb.com",
"role": "Development"
}],
"require": {
"silex/silex": "~2.0",
"minerva/orm": "~1.0",
"interophp/injector": "~1.0",
"interophp/module": "~1.0",
"interophp/container": "~1.0",
"interophp/module-manager": "~1.0",
"linkorb/autotune": "~1.0",
"linkorb/objectstorage": "~2.0",
"linkorb/registry-client-php": "~1.0",
"linkorb/registry-whoops": "~1.0",
"symfony/yaml": "^4.0|^3.0|^2.7",
"symfony/config": "^4.0|^3.0|^2.7",
"symfony/security": "^4.0|^3.0|^2.7",
"symfony/console": "^4.0|^3.0|^2.7",
"symfony/form": "^4.0|^3.0|^2.7",
"symfony/translation": "^4.0|^3.0|^2.7",
"symfony/expression-language": "^4.0|^3.0|^2.7",
"symfony/cache": "^5.0|^4.0|^3.0|^2.7",
"symfony/twig-bridge": "^4.0|^3.0|^2.7",
"symfony/process": "^4.0|^3.0|^2.7",
"symfony/dotenv": "^4.0|^3.0|^2.7",
"psr/cache": "~1.0",
"zendframework/zend-diactoros": "~1.0",
"twig/twig": ">=1.8,<2.0-dev",
"userbase/client": "~1.0",
"oyejorge/less.php": "~1.5",
"monolog/monolog": "^1.17",
"texthtml/whoops-silex": "~1.0",
"maximebf/debugbar": "~1.0",
"doctrine/inflector": "~1.0",
"linkorb/xuid": "~1.0",
"knplabs/knp-menu": "~2.0",
"graylog2/gelf-php": "~1.0",
"qandidate/stack-request-id": "~0.4",
"stack/builder": "~1.0",
"stack/run": "~1.0",
"linkorb/boost": "~1.0",
"dbtk/schema-loader": "~2.1",
"sinergi/browser-detector": "~6.0",
"sentry/sentry": "~1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0",
"nyholm/psr7": "^1.1",
"zendframework/zend-stratigility": "^3.1",
"symfony/psr-http-message-bridge": "^1.2",
"linkorb/flex-middleware": "^1.0",
"linkorb/flex-auth-provider": "^1.3",
"linkorb/flex-auth": "^1.3",
"linkorb/flex-log": "^1.0",
"linkorb/envoi": "^1.0"
},
"require-dev": {
"behat/behat": "^3.0",
"behat/mink": "^1.6",
"behat/mink-extension": "^2.0",
"behat/mink-goutte-driver": "^1.1",
"linkorb/haigha": "^2.7",
"friendsofphp/php-cs-fixer": "~2"
},
"bin": ["bin/radvance", "bin/radvance-mysql"],
"extra": {},
"autoload": {
"psr-4": {
"Radvance\\": "src/",
"Radvance\\Behat\\": "tests/behat/"
}
}
}