-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1022 Bytes
/
composer.json
File metadata and controls
55 lines (55 loc) · 1022 Bytes
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
{
"name": "gm314/siesta",
"description": "PHP 7 ORM Library",
"require": {
"php": ">=8.1.0",
"symfony/console": "*",
"psr/log": "*",
"gm314/nitria": "*",
"gm314/common": "*",
"ext-dom" : "*",
"ext-libxml" : "*",
"ext-json" : "*",
"ext-mysqli" : "*"
},
"require-dev": {
"codeception/codeception": "^5.2",
"phpdocumentor/phpdocumentor": "*"
},
"authors": [
{
"name": "Gregor Müller",
"email": "gm@gm314.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/gperler/siesta/issues"
},
"keywords": [
"Object relational mapper",
"ORM",
"Siesta"
],
"autoload": {
"psr-0": {
"Siesta\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SiestaTest\\": "tests"
}
},
"license": "MIT",
"type": "library",
"homepage": "https://gperler.github.io",
"bin": [
"src/Siesta/Console/siesta"
],
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}