-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.22 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
{
"name": "payhelper/stripe-sca-checkout",
"description": "Provide SCA compatible Stripe integration.",
"keywords": ["payment", "stripe", "sca", "payum"],
"license": "MIT",
"authors": [
{
"name": "Bruno DA SILVA",
"email": "[email protected]"
},
{
"name": "Guillaume LAJARIGE",
"email": "[email protected]"
},
{
"name": "Payum project (this project was ignited using their skeleton application)",
"homepage": "https://payum.forma-pro.com/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Combodo/CombodoPayumStripe/graphs/contributors"
}
],
"require": {
"php": "^7.2",
"payum/core": "^1.5",
"php-http/guzzle6-adapter": "^1.0",
"stripe/stripe-php": "^6.38"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Combodo\\StripeV3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Combodo\\StripeV3\\Tests\\": "tests/"
}
}
}