-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 991 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 991 Bytes
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
{
"name": "byhaskell/doctrine-db-switcher-bundle",
"description": "Symfony bundle to extend doctrine to support db switcher and multi tenants",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "byhaskell",
"email": "by.haskell@gmail.com"
}
],
"require": {
"php": "^7.2.5",
"symfony/config": "^5.1.1",
"symfony/dependency-injection": "^5.1.1",
"symfony/http-kernel": "^5.1.1",
"doctrine/doctrine-bundle": "^2.1",
"doctrine/doctrine-migrations-bundle": "^3.0",
"symfony/orm-pack": "^2.0",
"doctrine/annotations": "^1.10"
},
"autoload": {
"psr-4": {
"byhaskell\\DoctrineDbSwitcherBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"byhaskell\\DoctrineDbSwitcherBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2@dev"
}
}