-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
50 lines (50 loc) · 1.9 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
{
"name": "plentymarkets/shopware-connector",
"license": "MIT",
"type": "shopware-plugin",
"description": "plentymarkets Shopware connector",
"keywords": [
"plentymarkets",
"plenty",
"Shopware",
"connector"
],
"homepage": "https://github.com/plentymarkets/plentymarkets-shopware-connector",
"require": {
"php": "^7.2",
"viison/address-splitter": "dev-master",
"composer/installers": "^1.0",
"league/tactician": "^1.0",
"myclabs/deep-copy": "^1.0",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^5.0",
"k10r/codestyle": "^1.0"
},
"suggest": {
"ramsey/uuid": "Needed to generate UUID's for each transfer object - provided by shopware",
"monolog/monolog": "Needed to provide logging functionality - provided by shopware",
"symfony/console": "Dependency of all console commands - provided by shopware",
"doctrine/orm": "Needed for the BacklogService and the DoctrineIdentityStorage - provided by shopware",
"beberlei/assert": "Needed for all validations and various other places - provided by shopware"
},
"autoload": {
"psr-4": {
"PlentyConnector\\": "",
"SystemConnector\\": "Connector",
"PlentymarketsAdapter\\": "Adapter\\PlentymarketsAdapter",
"ShopwareAdapter\\": "Adapter\\ShopwareAdapter"
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c tests/ --colors=always",
"cs": "./vendor/bin/php-cs-fixer fix --show-progress=dots --verbose",
"test-travis": "./vendor/bin/phpunit -c tests/ --colors=always",
"cs-travis": "./vendor/bin/php-cs-fixer fix --dry-run --show-progress=dots --verbose --stop-on-violation"
},
"extra": {
"installer-name": "PlentyConnector"
}
}