-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
87 lines (87 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "sylius/core",
"type": "library",
"description": "Sylius e-commerce core. It integrates all components.",
"keywords": [
"shop",
"ecommerce",
"core",
"store",
"sylius"
],
"homepage": "https://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "https://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "https://sylius.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"knplabs/gaufrette": "^0.8",
"payum/payum": "^1.6",
"php-http/guzzle6-adapter": "^2.0",
"sylius/addressing": "^1.6",
"sylius/attribute": "^1.6",
"sylius/channel": "^1.6",
"sylius/currency": "^1.6",
"sylius/customer": "^1.6",
"sylius/inventory": "^1.6",
"sylius/locale": "^1.6",
"sylius/order": "^1.6",
"sylius/payment": "^1.6",
"sylius/product": "^1.6",
"sylius/promotion": "^1.6",
"sylius/registry": "^1.5",
"sylius/resource": "^1.7",
"sylius/review": "^1.6",
"sylius/shipping": "^1.6",
"sylius/taxation": "^1.6",
"sylius/taxonomy": "^1.6",
"sylius/user": "^1.6",
"symfony/http-foundation": "^4.4 || ^5.2",
"symfony/mime": "^4.4 || ^5.2",
"symfony/string": "^5.2",
"webmozart/assert": "^1.8",
"laminas/laminas-stdlib": "^3.2"
},
"require-dev": {
"phpspec/phpspec": "^7.0",
"symfony/property-access": "^4.4 || ^5.2"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.9-dev"
}
},
"autoload": {
"psr-4": {
"Sylius\\Component\\Core\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\Component\\Core\\spec\\": "spec/"
}
},
"repositories": [
{
"type": "path",
"url": "../../*/*"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}