-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 870 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-alert-poc",
"description": "This module allows the customer to be informed as soon as a sold out item is available again.",
"type": "oxideshop-module",
"keywords": [
"oxid",
"modules",
"eShop",
"article",
"alert",
"email"
],
"homepage": "https://www.patrick-blom.de/",
"license": [
"GPL-3.0-only"
],
"extra": {
"oxideshop": {
"blacklist-filter": [
"documentation/**/*.*",
"config.inc.TEST.php.dist"
],
"target-directory": "pb/ArticleAlert"
}
},
"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\\ArticleAlert\\": "../../../source/modules/pb/ArticleAlert/"
}
}
}