-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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
{
"name": "fond-of-codeception/spryker",
"description": "Spryker module for codeception",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Rose",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"codeception/codeception": "^5.0.0",
"spryker/propel": "^3.20.0",
"spryker/search": "^8.0.0",
"spryker/search-elasticsearch": "^1.0.0",
"spryker/synchronization-behavior": "^1.0.0",
"spryker/transfer": "^3.1.1",
"spryker/development": "^3.34"
},
"require-dev": {
"spryker/code-sniffer": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Generated\\": "src/Generated",
"Orm\\": "src/Orm",
"FondOfCodeception\\": "src/FondOfCodeception",
"Propel\\Generator\\Behavior\\Synchronization\\": "src/Propel/Generator/Behavior/Synchronization"
}
},
"autoload-dev": {
"psr-4": {
"FondOfCodeception\\": "tests/FondOfCodeception",
"Propel\\Generator\\Behavior\\Synchronization\\": "tests/Propel/Generator/Behavior/Synchronization"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}