-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·55 lines (55 loc) · 1.4 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": "coreshop/payum-stripe-bundle",
"type": "pimcore-bundle",
"description": "CoreShop - Stripe Bundle",
"keywords": [
"coreshop",
"pimcore",
"ecommerce",
"stripe"
],
"homepage": "http://www.coreshop.org",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Certimeter Group Mario Ramundo",
"email": "[email protected]",
"homepage": "http://www.certimetergroup.com/",
"role": "Developer"
},
{
"name": "CoreShop Team",
"email": "[email protected]",
"homepage": "https://www.coreshop.org/",
"role": "Developer"
},
{
"name": "Dominik Pfaffenbauer",
"email": "[email protected]",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"flux-se/payum-stripe": "^2.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"CoreShop\\Payum\\StripeBundle\\": "src/CoreShop/Payum/StripeBundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"pimcore": {
"bundles": [
"CoreShop\\Payum\\StripeBundle\\StripeBundle"
]
}
}
}