-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
68 lines (68 loc) · 2.18 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
{
"type": "project",
"name": "webstollen/ws5_mollie",
"description": "JTL-Shop 5 Plugin Container",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"gitlab-domains": [
"gitlab.webstollen.de"
]
},
"require": {
"php": ">=7.3.0",
"mollie/mollie-api-php": "^v2.39.0",
"webstollen/jtl5-core-plugin-library-v1_0_16": "1.0.16"
},
"require-dev": {
"thibautselingue/local-php-security-checker-installer": "^1.0.3",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^8.5",
"phpmetrics/phpmetrics": "^2.7",
"squizlabs/php_codesniffer": "3.*",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.90",
"vimeo/psalm": "^4.8.1",
"phpmd/phpmd": "^2.10.1"
},
"autoload": {
"psr-4": {
"Plugin\\ws5_mollie\\lib\\": "./lib"
}
},
"homepage": "https://www.webstollen.de",
"support": {
"email": "[email protected]",
"source": "https://github.com/mollie/jtl5",
"wiki": "https://github.com/mollie/jtl5/wiki",
"forum": "https://ws-url.de/help",
"docs": "https://ws-url.de/doku-mollie"
},
"authors": [
{
"email": "[email protected]",
"name": "Christian Proske | WebStollen",
"homepage": "https://www.webstollen.de"
}
],
"repositories": {
"202": {
"type": "composer",
"url": "https://gitlab.webstollen.de/api/v4/group/202/-/packages/composer/packages.json"
}
},
"scripts": {
"test": "phpunit",
"analyze": "phpmetrics --report-html=report ./",
"phpcs": "phpcs --standard=PSR12 --encoding=utf8 --ignore=vendor/,adminmenu/app/,report/ -p ./",
"phpcbf": "phpcbf --standard=PSR12 --encoding=utf8 --ignore=vendor/,adminmenu/app/,report/ -p ./",
"php-cs-fixer": "php-cs-fixer fix",
"phpstan": "phpstan analyse lib",
"fix": "phpcbf --standard=PSR12 --encoding=utf8 --ignore=vendor/,adminmenu/app/,report/ -p ./; php-cs-fixer fix",
"psalm": "psalm",
"psalm:fix": "psalm --alter --issues=MissingReturnType,InvalidReturnType,MissingClosureReturnType,LessSpecificReturnType,MissingParamType",
"post-status-cmd": [
"local-php-security-checker-installer && local-php-security-checker"
]
}
}