-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.5 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
{
"name": "darvinstudio/darvin-payment-bundle",
"description": "This Omnipay-based bundle provides basic payment logic for Symfony applications.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"api",
"darvin",
"gateway",
"omnipay",
"merchant",
"payment",
"pay",
"telr",
"sberbank",
"symfony"
],
"authors": [
{
"name": "Darvin Studio",
"email": "[email protected]",
"homepage": "https://www.darvin-studio.ru"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"darvinstudio/darvin-utils-bundle": "*",
"doctrine/orm": "*",
"fresh/doctrine-enum-bundle": "^6||^7",
"league/omnipay": "^3",
"ramsey/uuid": "^3||^4",
"symfony/validator": "*",
"symfony/workflow": "*",
"twig/twig": "*"
},
"suggest": {
"darvinstudio/darvin-admin-bundle": "Allow admin CRUD operations",
"darvinstudio/darvin-config-bundle": "Allow admin email notifications",
"darvinstudio/omnipay-sberbank": "Needed to support Sberbank payment",
"darvinstudio/omnipay-telr": "Needed to support Telr payment",
"monolog/monolog": "Allows more advanced logging of the application flow",
"smdmphd/omnipay-yookassa": "Needed to support YooKassa payment"
},
"autoload": {
"psr-4": { "Darvin\\PaymentBundle\\": "" }
}
}