-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
49 lines (49 loc) · 1.41 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
{
"name": "mapeveri/multi-tenancy-bundle",
"description": "Multi-tenancy, is a package for symfony and doctrine to manage tenants in a simple way.",
"version": "1.0.1",
"type": "symfony-bundle",
"keywords": ["symfony", "bundle", "doctrine", "multi tenancy", "php"],
"homepage": "https://github.com/mapeveri/multi-tenancy-bundle",
"license": "MIT",
"authors": [
{
"name": "Martín Peveri",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.2",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.8",
"symfony/console": "5.2.*",
"symfony/property-access": "5.2.*",
"symfony/property-info": "5.2.*",
"symfony/serializer": "5.2.*",
"symfony/uid": "5.2.*",
"symfony/yaml": "5.2.*",
"symfony/expression-language": "5.2.*",
"symfony/event-dispatcher": "5.2.*"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"MultiTenancyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MultiTenancyBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}