-
-
Notifications
You must be signed in to change notification settings - Fork 928
/
composer.json
45 lines (45 loc) · 1.02 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
{
"name": "league/omnipay",
"type": "metapackage",
"description": "Omnipay payment processing library",
"keywords": [
"omnipay",
"checkout",
"creditcard",
"payment"
],
"homepage": "https://omnipay.thephpleague.com/",
"license": "MIT",
"authors": [
{
"name": "Adrian Macneil",
"email": "adrian@adrianmacneil.com"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
"require": {
"php": "^7.2|^8.0",
"omnipay/common": "^3.1",
"php-http/discovery": "^1.14",
"php-http/guzzle7-adapter": "^1"
},
"require-dev": {
"omnipay/tests": "^3|^4"
},
"autoload-dev": {
"psr-4": { "Omnipay\\Tests\\" : "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev"
}
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}