-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
49 lines (49 loc) · 1.28 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": "bestit/shopware-mage-tasks",
"suggest": {
"b3nl/sw-migrations": "This library is needed if you want to use the task shopware/migrate"
},
"description": "Common tasks to deploy a shopware project using MagePHP",
"keywords": ["Shopware", "MagePHP", "Deployment"],
"require": {
"php": "^8.0",
"andres-montanez/magallanes": "^3.0 || ^4.0",
"league/flysystem": "^1.0"
},
"autoload": {
"psr-4": {
"BestIt\\Mage\\Tasks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BestIt\\Mage\\Tasks\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Ahmad El-Bardan",
"email": "ahmad.el-bardan@bestit-online.de"
}
],
"minimum-stability": "stable",
"require-dev": {
"best-it/php_codesniffer": "^3.4 || ^4.0.0-RC1",
"phpunit/phpunit": "^9.0",
"league/flysystem-memory": "^1.0",
"vlucas/phpdotenv": "^3.3",
"mikey179/vfsstream": "^1.6.6"
},
"scripts": {
"low-level-tests": [
"phpcs -n",
"phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}