-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.04 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": "fond-of-spryker/product-url-store",
"description": "Add Store Relationship to product url",
"license": "MIT",
"authors": [
{
"name": "Daniel Rose",
"email": "[email protected]"
},
{
"name": "Jozsef Geng",
"email": "[email protected]"
},
{
"name": "Markus Nörenberg",
"email": "[email protected]"
},
{
"name": "Pascal Fischer",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"spryker/product": "~6.7.0"
},
"require-dev": {
"spryker/code-sniffer": "^0.11",
"spryker/development": "^3.6",
"codeception/codeception": "^2.3",
"mikey179/vfsstream": "^1.6",
"phpro/grumphp": "^0.14",
"sebastian/phpcpd": "^4.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FondOfSpryker\\": "src/FondOfSpryker/"
}
},
"autoload-dev": {
"psr-4": {
"FondOfSpryker\\": "tests/FondOfSpryker/",
"Generated\\": "tests/Generated/"
}
}
}