-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
49 lines (49 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
{
"name": "rah/danpu",
"description": "Zero-dependency MySQL dump library for easily exporting and importing databases",
"keywords": ["mysql", "sql", "dump", "backup", "restore", "export", "import", "library", "mysqldump", "database", "db"],
"homepage": "https://github.com/gocom/danpu",
"license": "MIT",
"authors": [
{
"name": "Jukka Svahn",
"homepage": "https://github.com/gocom",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/gocom/danpu/issues",
"source": "https://github.com/gocom/danpu"
},
"autoload": {
"psr-4": {
"Rah\\Danpu\\": "src/Rah/Danpu/"
}
},
"autoload-dev": {
"psr-4": {
"Rah\\Danpu\\Test\\": "tests/Rah/Danpu/Test/"
}
},
"require": {
"php": ">=5.3.0",
"ext-pdo": "*"
},
"suggest": {
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"squizlabs/php_codesniffer": "3.*",
"satooshi/php-coveralls": "0.6.*"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/phpcs"
}
}