forked from MakairaIO/oxid-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.55 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
{
"name": "makaira/oxid-connect",
"type": "oxideshop-module",
"require-dev": {
"phpunit/phpunit": "^8.5",
"pdepend/pdepend": "@stable",
"phpmd/phpmd": "@stable",
"doctrine/dbal": "^2",
"symfony/dependency-injection": "^5.4",
"symfony/expression-language": "^5.4",
"symfony/event-dispatcher": "^5.4",
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/php-compatibility": "^9.3",
"oxid-esales/oxideshop-metapackage-ce": "^6.5"
},
"autoload": {
"classmap": ["src/"],
"psr-4": {
"Makaira\\Connect\\": ["src/Makaira/Connect"]
}
},
"autoload-dev": {
"psr-4": {
"Makaira\\Connect\\": ["tests/Makaira/Connect"]
}
},
"require": {
"php": "7.4.* || 8.0.*",
"composer/installers": "^1.9.0",
"makaira/shared-libs": "^2021.11 || ^2022.1.1"
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpmd"
],
"phpunit": "phpunit",
"phpcs": "phpcs --standard=PSR2 src/Makaira/",
"phpmd": "phpmd src/Makaira/ text codesize,design"
},
"extra": {
"oxideshop": {
"blacklist-filter": [
"tests/**/*",
"phpunit.xml",
".gitignore",
"changelog.txt",
"dic.php",
"src/Makaira/Connect/**/*"
],
"target-directory": "makaira/connect"
}
},
"config": {
"platform": {
"php": "7.4.33"
},
"allow-plugins": {
"composer/installers": true,
"oxid-esales/oxideshop-unified-namespace-generator": false,
"oxid-esales/oxideshop-composer-plugin": false
}
}
}