-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
47 lines (47 loc) · 1.11 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
{
"name": "aternos/model",
"description": "PHP library for simple and complex database models",
"keywords": [
"database",
"model"
],
"readme": "README.md",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matthias Neid",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/aternosorg/php-model",
"issues": "https://github.com/aternosorg/php-model/issues"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"ext-json": "*"
},
"require-dev": {
"elasticsearch/elasticsearch": "^7.10",
"phpunit/phpunit": "^10.2"
},
"autoload": {
"psr-4": {
"Aternos\\Model\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aternos\\Model\\Test\\Tests\\": "test/tests/",
"Aternos\\Model\\Test\\Src\\": "test/src/"
}
},
"suggest": {
"ext-redis": "To use the Redis Cache driver",
"ext-cassandra": "To use the Cassandra NoSQL driver",
"ext-mysqli": "To use the Mysqli Relational driver",
"elasticsearch/elasticsearch": "To use the Elasticsearch Search driver"
}
}