-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.41 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
{
"name": "c975l/shop-bundle",
"type": "symfony-bundle",
"description": "Shop Bundle for eCommerce with Symfony",
"keywords": ["symfony", "bundle"],
"homepage": "https://github.com/975L/ShopBundle",
"license": "MIT",
"authors": [
{
"name": "Laurent Marquet",
"email": "laurent.marquet@laposte.net",
"homepage": "https://github.com/LaurentMarquet",
"role": "Developer"
},
{
"name": "975L Community",
"homepage": "https://github.com/975L"
}
],
"require": {
"php": ">=8.0",
"c975l/config-bundle": "*",
"c975l/site-bundle": "*",
"c975l/sharebuttons-bundle": "*",
"cocur/slugify": "*",
"doctrine/orm": "*",
"easycorp/easyadmin-bundle": "*",
"knplabs/knp-paginator-bundle": "*",
"stripe/stripe-php": "*",
"symfony/routing": "*",
"symfony/security-bundle": "*",
"symfony/translation": "*"
},
"require-dev": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"c975L\\ShopBundle\\": "src/"
}
},
"config": {
"sort-packages": true
},
"support": {
"email": "contact@975l.com",
"source": "https://github.com/975L/ShopBundle",
"issues": "https://github.com/975L/ShopBundle/issues"
}
}