-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.52 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.52 KB
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
{
"name": "quellabs/objectquel",
"description": "A sophisticated ORM system with a unique query language and streamlined architecture",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Floris van den Berg",
"email": "floris@quellabs.com"
}
],
"keywords": [
"ORM",
"ObjectQuel",
"query language",
"entity manager"
],
"support": {
"email": "support@quellabs.com",
"issues": "https://github.com/quellabs/objectquel/issues",
"forum": "https://github.com/quellabs/objectquel/discussions",
"wiki": "https://github.com/quellabs/objectquel/wiki",
"docs": "https://objectquel.quellabs.com/docs",
"source": "https://github.com/quellabs/objectquel"
},
"config": {
"platform": {
"php": "8.3"
}
},
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-pdo": "*",
"robmorgan/phinx": "^0.16",
"cakephp/database": "^5.3",
"softcreatr/jsonpath": "^0.8",
"quellabs/contracts": "^1",
"quellabs/support": "^1",
"quellabs/signal-hub": "^1",
"quellabs/annotation-reader": "^1",
"quellabs/sculpt": "^1"
},
"autoload": {
"psr-4": {
"Quellabs\\ObjectQuel\\": "src/"
}
},
"extra": {
"discover": {
"sculpt": {
"provider": "Quellabs\\ObjectQuel\\Sculpt\\ServiceProvider",
"config": [
"config/app.php",
"config/database.php"
]
}
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/quellabs"
}
]
}