forked from thephpleague/omnipay-mollie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·51 lines (51 loc) · 1.29 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
{
"name": "omnipay/mollie",
"type": "library",
"description": "Mollie driver for the Omnipay payment processing library",
"keywords": [
"gateway",
"merchant",
"mollie",
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/thephpleague/omnipay-mollie",
"license": "MIT",
"authors": [
{
"name": "Adrian Macneil",
"email": "adrian@adrianmacneil.com"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
},
{
"name": "Omnipay Contributors",
"homepage": "https://github.com/thephpleague/omnipay-mollie/contributors"
}
],
"autoload": {
"psr-4": { "Omnipay\\Mollie\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Omnipay\\Mollie\\Test\\": "tests/" }
},
"require": {
"php": "^8.1",
"omnipay/common": "^3.1"
},
"require-dev": {
"omnipay/tests": "^4.1",
"vimeo/psalm": "^4.23",
"myonlinestore/coding-standard": "^3.1",
"myonlinestore/php-devtools": "^0.3.2"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}