-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 826 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 826 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
36
{
"name": "proklung/db-command",
"description": "Консольные команды для экспорта-импорта-сброса базы данных",
"type": "library",
"keywords": [
"php",
"console",
"command"
],
"license": "MIT",
"authors": [
{
"name": "Gavrilov Fedy",
"email": "fedor.gavrilov.75@mail.ru",
"homepage": "https://github.com/ProklUng"
}
],
"support": {
"issues": "https://github.com/ProklUng/db.command/issues",
"source": "https://github.com/ProklUng/db.command"
},
"autoload": {
"psr-4": {
"Prokl\\DbCommands\\": "src"
}
},
"bin": [
"bin/db"
],
"require": {
"php": ">=7.3 || ^8.0",
"ifsnop/mysqldump-php": "^2.9",
"symfony/console": "^4.4 | ^5.0",
"symfony/dotenv": "^4.4 | ^5.0"
}
}