-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (46 loc) · 1.28 KB
/
composer.json
File metadata and controls
52 lines (46 loc) · 1.28 KB
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
{
"name": "hakam/multi-tenancy-bundle",
"description": "Flexible and production-ready multi-tenancy bundle for Symfony.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Ramy Hakam",
"email": "pencilsoft1@gmail.com"
}
],
"require": {
"php": "^8.2",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/filesystem": "^6.4|^7.0",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.15 || ^3.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"symfony/var-exporter": "^6.4|^7.0|^8.0",
"psr/cache": "^3.0",
"symfony/cache-contracts": "^3.0"
},
"autoload": {
"psr-4": {
"Hakam\\MultiTenancyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hakam\\MultiTenancyBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4|^7.0",
"phpunit/phpunit": "^10.0",
"doctrine/doctrine-fixtures-bundle": "^3.6",
"dg/bypass-finals": "^1.9"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}