This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·68 lines (68 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
{
"name": "spaceonfire/data-source",
"type": "library",
"description": "Useful interfaces and abstracts to design your domain model",
"keywords": [
"DDD",
"domain",
"entity",
"mapper",
"repository",
"query"
],
"homepage": "https://github.com/spaceonfire/data-source",
"license": "MIT",
"authors": [
{
"name": "Constantine Karnaukhov",
"email": "[email protected]",
"homepage": "https://www.onfire.space",
"role": "Maintainer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/psr7": "^1.6",
"jawira/case-converter": "^3.4",
"spaceonfire/collection": "^2.5",
"spaceonfire/criteria": "^2.5",
"spaceonfire/laminas-hydrator-bridge": "^2.5",
"webmozart/assert": "^1.6"
},
"require-dev": {
"cycle/orm": "^1.4",
"cycle/schema-builder": "^1.2",
"nette/utils": "^3.0",
"ramsey/uuid": "^3.9|^4.0",
"roave/security-advisories": "dev-latest",
"spaceonfire/value-object": "^2.5",
"spiral/pagination": "^2.7"
},
"suggest": {
"spaceonfire/value-object": "",
"ramsey/uuid": "",
"spiral/pagination": "Needed for QueryInterface",
"cycle/orm": "There are adapters available to use with Cycle ORM",
"cycle/schema-builder": "There are adapters available to use with Cycle ORM",
"nette/utils": ""
},
"autoload": {
"psr-4": {
"spaceonfire\\DataSource\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"spaceonfire\\DataSource\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
},
"config": {
"sort-packages": true
}
}