Skip to content
This repository was archived by the owner on Feb 3, 2022. It is now read-only.

Commit 1c86f01

Browse files
committed
Merge branch 'release/v1.5.0'
2 parents 3eaff76 + 8a89742 commit 1c86f01

File tree

12 files changed

+484
-177
lines changed

12 files changed

+484
-177
lines changed

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"tests"
2424
],
2525
"in": [
26-
"vendor/"
26+
"vendor"
2727
]
2828
}
2929
],

composer.json

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,20 @@
22
"name": "meanbee/magedbm",
33
"description": "Magento database backup and import tool",
44
"license": "MIT",
5-
"keywords": ["magento", "database", "magedbm"],
5+
"keywords": [
6+
"magento",
7+
"database",
8+
"magedbm"
9+
],
10+
"homepage": "https://github.com/meanbee/magedbm",
611
"authors": [
712
{
813
"name": "Tom Robertshaw",
914
"email": "tom.robertshaw@meanbee.com"
15+
},
16+
{
17+
"name": "MageDBM Contributors",
18+
"homepage": "https://github.com/meanbee/magedbm/contributors"
1019
}
1120
],
1221
"minimum-stability": "dev",
@@ -15,16 +24,30 @@
1524
"n98/magerun": "1.*",
1625
"aws/aws-sdk-php": "2.*",
1726
"piwik/ini": "dev-master",
18-
"ifsnop/mysqldump-php":"2.*",
27+
"ifsnop/mysqldump-php": "2.*",
1928
"herrera-io/phar-update": "2.*"
2029
},
21-
"require-dev": {},
30+
"require-dev": {
31+
"squizlabs/php_codesniffer": "^2.3"
32+
},
2233
"bin": [
2334
"bin/magedbm"
2435
],
2536
"autoload": {
2637
"psr-0": {
2738
"Meanbee\\Magedbm\\": "src/"
2839
}
40+
},
41+
"scripts": {
42+
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 src",
43+
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 src",
44+
"extra": {
45+
"branch-alias": {
46+
"dev-master": "1.5.1-dev"
47+
}
48+
},
49+
"config": {
50+
"sort-packages": true
51+
}
2952
}
3053
}

0 commit comments

Comments
 (0)