-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.06 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "aternos/model",
"description": "PHP library for simple and complex database models",
"license": "MIT",
"type": "library",
"keywords": [
"database",
"model"
],
"readme": "README.md",
"authors": [
{
"name": "Matthias Neid",
"email": "matthias@aternos.org"
}
],
"support": {
"issues": "https://github.com/aternosorg/php-model/issues",
"source": "https://github.com/aternosorg/php-model"
},
"require": {
"php": ">=8.4",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^12.3"
},
"suggest": {
"ext-mysqli": "To use the Mysqli Relational driver",
"ext-redis": "To use the Redis Cache driver",
"shyim/opensearch-php-dsl": "OpenSearch DSL query builder"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Aternos\\Model\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aternos\\Model\\Test\\Src\\": "test/src/",
"Aternos\\Model\\Test\\Tests\\": "test/tests/"
}
}
}