-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 942 Bytes
/
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
{
"name": "patrick-blom/article-limit-per-order",
"description": "This module extends the article structure with the maximum order amount of a single article. This amount can not be exceeded per order.",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"article",
"order",
"limit"
],
"homepage": "https://www.patrick-blom.de/",
"license": [
"GPL-3.0-only"
],
"extra": {
"oxideshop": {
"blacklist-filter": [
"documentation/**/*.*",
"config.inc.TEST.php.dist"
],
"target-directory": "pb/ArticleLimitPerOrder"
}
},
"require": {
"php": ">=7.1",
"oxid-esales/oxideshop-ce": "^v6.5.3"
},
"require-dev": {
"oxid-esales/testing-library": "^v7.1.1",
"phpstan/phpstan": "^0.12.29"
},
"autoload": {
"psr-4": {
"PaBlo\\ArticleLimitPerOrder\\": "../../../source/modules/pb/ArticleLimitPerOrder/"
}
}
}