-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
executable file
·54 lines (54 loc) · 1.34 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
{
"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": "[email protected]"
},
{
"name": "Barry vd. Heuvel",
"email": "[email protected]"
},
{
"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": "^7.2|^8.0",
"omnipay/common": "^3.1"
},
"require-dev": {
"omnipay/tests": "^4.1",
"squizlabs/php_codesniffer": "^3"
},
"extra": {
"branch-alias": {
"dev-master": "5.5.x-dev"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"prefer-stable": true
}