forked from thephpleague/omnipay-common
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
69 lines (69 loc) · 1.83 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
69
{
"name": "omnipay/common",
"type": "library",
"description": "Common components for Omnipay payment processing library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"purchase"
],
"homepage": "https://github.com/thephpleague/omnipay-common",
"license": "MIT",
"authors": [
{
"name": "Adrian Macneil",
"email": "[email protected]"
},
{
"name": "Barry vd. Heuvel",
"email": "[email protected]"
},
{
"name": "Jason Judge",
"email": "[email protected]"
},
{
"name": "Del"
},
{
"name": "Omnipay Contributors",
"homepage": "https://github.com/thephpleague/omnipay-common/contributors"
}
],
"autoload": {
"psr-4": { "Omnipay\\Common\\" : "src/Common" },
"classmap": ["src/Omnipay.php"]
},
"require": {
"php": "^5.6|^7",
"php-http/client-implementation": "^1",
"php-http/message": "^1.5",
"php-http/discovery": "^1.2.1",
"symfony/http-foundation": "^2.1|^3|^4|^5",
"moneyphp/money": "^3.1"
},
"require-dev": {
"omnipay/tests": "^3",
"php-http/mock-client": "^1",
"squizlabs/php_codesniffer": "^3",
"phpro/grumphp": "^0.14"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"suggest": {
"league/omnipay": "The default Omnipay package provides a default HTTP Adapter."
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
}