-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
68 lines (68 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "findologic/plugin-plentymarkets-api",
"type": "project",
"description": "Findologic api plugin for plentymarkets system",
"require": {
"php": "^8.0",
"ext-simplexml": "*",
"findologic/http_request2": "2.4",
"squizlabs/php_codesniffer": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^8",
"plentymarkets/plugin-ceres": "^5.0",
"plentymarkets/plugin-io": "^5.0",
"plentymarkets/plugin-interface": "dev-stable7"
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=phpcs.xml",
"fix": "./vendor/bin/phpcbf --standard=phpcs.xml",
"test": "XDEBUG_MODE=coverage phpunit -c tests/phpunit.xml",
"test-win": "phpunit -c tests/phpunit.xml"
},
"repositories": [
{
"type": "package",
"package": [
{
"name": "plentymarkets/plugin-io",
"version": "5.0.35",
"source": {
"type": "git",
"url": "https://github.com/plentymarkets/plugin-io",
"reference": "5.0.35"
}
}
]
},
{
"type": "package",
"package": [
{
"name": "plentymarkets/plugin-ceres",
"version": "5.0.35",
"source": {
"type": "git",
"url": "https://github.com/plentymarkets/plugin-ceres",
"reference": "5.0.35"
}
}
]
},
{
"type": "git",
"url": "https://github.com/findologic/plugin-interface.git"
}
],
"autoload": {
"psr-4": {
"Findologic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Findologic\\Tests\\": "tests/",
"Plenty\\Modules\\Webshop\\ItemSearch\\": "vendor/plentymarkets/plugin-interface/ItemSearch/"
}
}
}