forked from adnedelcu/multi-tenancy-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.13 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
{
"name": "tahoelimited/multi-tenancy-bundle",
"type": "symfony-bundle",
"description": "A multi tenancy bundle for symfony 2 apps",
"keywords": ["user", "tenant", "tenancy"],
"homepage": "https://github.com/tahoelimited/multi-tenancy-bundle",
"license": "MIT",
"authors": [
{
"name": "Konrad Podgorski",
"email": "[email protected]"
},
{
"name": "Pablo Martelletti",
"email": "[email protected]"
},
{
"name": "Steve Gill",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5",
"symfony/framework-bundle": "~2.3|~3.0",
"doctrine/orm": "~2.2,>=2.2.3|~2.5",
"doctrine/doctrine-bundle": "1.*",
"symfony/twig-bundle": "2.*|3.*",
"symfony/form": "2.*|3.*",
"symfony/security-bundle": "2.*|3.*",
"friendsofsymfony/user-bundle": "~2.0@dev",
"recurly/recurly-client": "2.3.*"
},
"autoload": {
"psr-4": { "Tahoe\\Bundle\\MultiTenancyBundle\\": "" }
}
}