-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
59 lines (59 loc) · 1.63 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
{
"name": "white-nl/commerce-mollie-plus",
"description": "Commerce Mollie Plus Plugin for Craft 5",
"type": "craft-plugin",
"keywords": [
"mollie",
"commerce",
"craftcms",
"omnipay",
"yii2"
],
"authors": [
{
"name": "Digital Agency WHITE",
"homepage": "https://white.nl"
}
],
"license": "proprietary",
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"craftcms/commerce": "^5.0.0",
"craftcms/commerce-omnipay": "^4.1.0",
"omnipay/mollie": "^5.5",
"nystudio107/craft-code-editor": "^1.0"
},
"autoload": {
"psr-4": {
"white\\commerce\\mollie\\plus\\": "src/"
}
},
"extra": {
"handle": "commerce-mollie-plus",
"name": "Commerce Mollie Plus",
"developer": "Digital Agency WHITE",
"developerUrl": "https://white.nl",
"hasCpSettings": false,
"hasCpSection": false,
"class": "white\\commerce\\mollie\\plus\\CommerceMolliePlusPlugin"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/ecs": "dev-main"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"php-http/discovery": true
}
}
}