-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.2 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
{
"name": "shopsys/read-model",
"type": "library",
"description": "[experimental] Read model layer for Shopsys Framework",
"keywords": ["Read Model", "Shopsys Framework", "SSFW"],
"license": "proprietary",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\ReadModelBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\ReadModelBundle\\": "tests/"
}
},
"require": {
"php": "^8.1",
"shopsys/form-types-bundle": "12.1.x-dev",
"shopsys/framework": "12.1.x-dev",
"shopsys/migrations": "12.1.x-dev",
"shopsys/plugin-interface": "12.1.x-dev",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"webmozart/assert": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5.20",
"shopsys/coding-standards": "12.1.x-dev"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}