-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 992 Bytes
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 992 Bytes
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" : "muckiware/product-expert-plugin",
"description" : "Muckiware ProductExpert Plugin for Shopware 6",
"version": "v1.0.0",
"keywords": [
"shopware6",
"plugin"
],
"type" : "shopware-platform-plugin",
"license" : "MIT",
"authors": [
{
"name": "muckiware"
}
],
"extra" : {
"shopware-plugin-class" : "MuckiProductExpertPlugin\\MuckiProductExpertPlugin",
"copyright" : "(c) by muckiware",
"label" : {
"de-DE" : "Mucki ProductExpert Erweiterung",
"en-GB" : "Mucki ProductExpert Plugin"
}
},
"require" : {
"php" : ">= 8.2",
"brick/phonenumber": "^0.8.0"
},
"require-dev" : {
"phpstan/phpstan" : "*"
},
"autoload" : {
"psr-4" : {
"MuckiProductExpertPlugin\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"MuckiProductExpertPlugin\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"php-http/discovery": false
}
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -n --no-progress"
}
}