-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
71 lines (71 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "sylius/payum-bundle",
"type": "symfony-bundle",
"description": "Payum integration for Symfony e-commerce applications.",
"keywords": [
"payments",
"payment",
"payum"
],
"homepage": "https://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "https://pjedrzejewski.com"
},
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
},
{
"name": "Sylius project",
"homepage": "https://sylius.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"payum/payum": "^1.6",
"payum/payum-bundle": "^2.4",
"php-http/guzzle6-adapter": "^2.0",
"sylius/core": "^1.6",
"sylius/currency": "^1.6",
"sylius/order-bundle": "^1.6",
"sylius/payment-bundle": "^1.6",
"sylius/resource-bundle": "^1.7"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"symfony/dependency-injection": "^4.4 || ^5.2"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.9-dev"
}
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\PayumBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\Bundle\\PayumBundle\\spec\\": "spec/"
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}