-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
57 lines (57 loc) · 1.21 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
50
51
52
53
54
55
56
57
{
"name": "space48/magedbm2",
"description": "Magento 2 database backup and import tool",
"homepage": "https://github.com/space48/magedbm2",
"license": "OSL-3.0",
"keywords": [
"magento2",
"magento",
"database",
"backup",
"magedbm2",
"magedbm"
],
"authors": [
{
"name": "Tomas Gerulaitis",
"email": "[email protected]"
},
{
"name": "Nick Jones",
"email": "[email protected]"
}
],
"bin": [
"bin/magedbm2"
],
"require": {
"php": ">=7.4",
"symfony/console": "^3.4",
"symfony/yaml": "^3.4",
"aws/aws-sdk-php": "^3.52",
"meanbee/libmageconf": "^1.0",
"symfony/process": "^3.4",
"psr/log": "^1.0",
"php-di/php-di": "^6.0",
"adbario/php-dot-notation": "^2.0",
"fakerphp/faker": "^1.9",
"symfony/deprecation-contracts": "2.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0.0",
"phpmd/phpmd": "^2.11",
"php-vfs/php-vfs": "^1.4",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"Meanbee\\Magedbm2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Meanbee\\Magedbm2\\Tests\\": "tests/"
}
}
}