-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.29 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
{
"name": "formal/orm",
"type": "library",
"description": "",
"keywords": [],
"homepage": "http://github.com/formal/orm",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "baptiste.langlade@hey.com"
}
],
"support": {
"issues": "http://github.com/formal-php/orm/issues"
},
"require": {
"php": "~8.2",
"innmind/immutable": "~5.4",
"innmind/specification": "~4.1",
"ramsey/uuid": "~4.7",
"innmind/reflection": "~5.1",
"innmind/filesystem": "~7.4",
"innmind/json": "~1.3",
"innmind/time-continuum": "~3.3",
"innmind/type": "~1.2",
"formal/access-layer": "~4.0",
"innmind/http-transport": "~7.2",
"innmind/url-template": "~3.1",
"innmind/validation": "~1.4"
},
"autoload": {
"psr-4": {
"Formal\\ORM\\": "src/",
"Properties\\Formal\\ORM\\": "properties/",
"Fixtures\\Formal\\ORM\\": "fixtures/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"require-dev": {
"vimeo/psalm": "~5.13",
"innmind/black-box": "~5.1",
"innmind/coding-standard": "~2.0",
"innmind/operating-system": "~5.2"
}
}