-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.48 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
{
"name": "payum/omnipay-v3-bridge",
"type": "library",
"description": "This bridge allows you to use omnipay gateways but in payum like way.",
"keywords": ["payment", "omnipay"],
"homepage": "https://payum.forma-pro.com/",
"license": "MIT",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
},
{
"name": "Payum project",
"homepage": "https://payum.forma-pro.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/OmnipayBridge/contributors"
}
],
"require": {
"php": "^7.2 | ^8.0",
"payum/core": "^1.6.1",
"omnipay/common": "^3.2",
"php-http/client-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.5",
"omnipay/dummy": "^3.0",
"php-http/guzzle7-adapter": "^1.0"
},
"suggest": {
"php-http/guzzle7-adapter": "Guzzle 7 HTTP Adapter"
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": { "Payum\\OmnipayV3Bridge\\": "src" }
},
"autoload-dev": {
"psr-4": { "Payum\\OmnipayV3Bridge\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}