forked from webbaard/payum-mollie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1.07 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
{
"name": "webbaard/payum-mollie",
"type": "library",
"description": "The Payum extension. It provides Mollie payment integration. used to be maintained by Rafał Muszyński but couldn't see any activity",
"keywords": ["payment", "payum", "mollie", "sepa", "directdebit", "creditcard"],
"homepage": "https://sourcefabric.org",
"license": "GPLv3",
"authors": [
{
"name": "Tim Huijzers",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"payum/core": "^1.5",
"mollie/mollie-api-php": "^2.44"
},
"require-dev": {
"payum/core": "^1.3@dev",
"php-http/guzzle6-adapter": "^1.0",
"phpspec/phpspec": "^4.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"PayHelper\\Payum\\Mollie\\": ""
}
},
"autoload-dev": {
"psr-4": { "PayHelper\\Payum\\Mollie\\spec\\": "spec/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}