-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 828 Bytes
/
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
{
"name": "sidus/database-maintenance-bundle",
"description": "Simple database maintenance with Doctrine and MySQL",
"keywords": [
"mysql",
"doctrine",
"maintenance",
"database"
],
"homepage": "https://github.com/VincentChalnot/SidusDatabaseMaintenanceBundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vincent Chalnot",
"email": "[email protected]",
"homepage": "http://chalnot.fr",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Sidus\\DatabaseMaintenanceBundle\\": ""
}
},
"require": {
"php": ">=7.2",
"symfony/console": ">=4.0",
"doctrine/orm": ">=2.5",
"doctrine/doctrine-bundle": ">=1.6"
}
}