forked from ifsnop/mysqldump-php
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "druidfi/mysqldump-php",
"description": "PHP version of mysqldump cli that comes with MySQL",
"type": "library",
"keywords": ["mysql", "mysqldump", "pdo", "php7", "php8", "database", "php", "sql", "mariadb", "mysql-backup"],
"homepage": "https://github.com/druidfi/mysqldump-php",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"authors": [
{
"name": "Druid.fi",
"homepage": "https://github.com/druidfi"
},
{
"name" : "Diego Torres",
"homepage": "https://github.com/ifsnop",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"composer-runtime-api": "^2",
"ext-pdo": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^8.5.15 || ^9"
},
"autoload": {
"psr-4": {
"Druidfi\\Mysqldump\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Druidfi\\Mysqldump\\Tests\\": "tests/"
}
}
}