-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.84 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
{
"name": "somnambulist/read-models",
"type": "library",
"description": "A stripped down active-record'ish query layer for fetching data from your database.",
"license": "MIT",
"authors": [
{
"name": "Dave Redfern",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"doctrine/dbal": "^4.0",
"pagerfanta/pagerfanta": "^4.3",
"pragmarx/ia-str": "^7.3",
"somnambulist/attribute-model": "^3.0",
"somnambulist/collection": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"creof/doctrine2-spatial": "^1.2",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^3.0",
"fakerphp/faker": "^1.23",
"somnambulist/domain": "^6.0",
"symfony/dotenv": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/messenger": "^6.4",
"symfony/phpunit-bridge": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/var-dumper": "^6.4",
"victorjonsson/markdowndocs": "dev-master",
"symfony/yaml": "^6.4",
"vimeo/psalm": "^5.4"
},
"autoload": {
"psr-4": {
"Somnambulist\\Components\\ReadModels\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Somnambulist\\Components\\ReadModels\\Tests\\": "tests/"
}
},
"suggest": {
"doctrine/orm": "Use full weight Doctrine for managing persistence and data",
"doctrine/migrations": "To build schema changes",
"symfony/http-kernel": "To use the kernel listener, requires >=6.0",
"somnambulist/read-models-bundle": "Symfony integration for read-models"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}