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
69 lines (69 loc) · 1.76 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
69
{
"name": "spaceonfire/cycle-bridge",
"description": "",
"type": "library",
"keywords": [
"cycle",
"orm",
"criteria"
],
"homepage": "https://github.com/spaceonfire/cycle-bridge",
"license": "MIT",
"authors": [
{
"name": "Constantine Karnaukhov",
"email": "[email protected]",
"homepage": "https://www.onfire.space",
"role": "Maintainer"
}
],
"require": {
"php": "^7.4|^8.0",
"cycle/orm": "^1.7",
"spaceonfire/collection": "^3.0",
"spaceonfire/common": "^3.0",
"spaceonfire/criteria": "^3.0",
"spaceonfire/data-source": "^3.0",
"spaceonfire/exception": "^3.0",
"spaceonfire/laminas-hydrator-bridge": "^3.0",
"spaceonfire/type": "^3.0",
"symfony/event-dispatcher-contracts": "^2.0|^3.0",
"symfony/polyfill-php80": "^1.22",
"symfony/polyfill-php81": "^1.22",
"webmozart/expression": "^1.0"
},
"require-dev": {
"cycle/migrations": "^2.0",
"cycle/schema-builder": "^1.2",
"cycle/schema-migrations-generator": "^1.0",
"phpunit/phpunit": "^9.5",
"psr/log": "^1.1",
"roave/security-advisories": "dev-latest",
"spaceonfire/container": "^3.0",
"spaceonfire/value-object": "^3.0",
"symfony/console": "^5.2|^6.0",
"symfony/event-dispatcher": "^5.2|^6.0",
"symfony/lock": "^5.2|^6.0",
"symfony/uid": "^5.2|^6.0"
},
"suggest": {
"cycle/migrations": "^2.0",
"cycle/schema-builder": "^1.2",
"cycle/schema-migrations-generator": "^1.0",
"symfony/console": "^5.2|^6.0",
"symfony/lock": "^5.2|^6.0"
},
"autoload": {
"psr-4": {
"spaceonfire\\Bridge\\Cycle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"spaceonfire\\Bridge\\Cycle\\": "tests"
}
},
"config": {
"sort-packages": true
}
}