Skip to content

Commit a5eb9ce

Browse files
authored
Merge pull request #21 from aternosorg/normalize-composer-json
Normalize composer.json
2 parents bdfa732 + fafdf4c commit a5eb9ce

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
{
22
"name": "aternos/model",
33
"description": "PHP library for simple and complex database models",
4+
"license": "MIT",
5+
"type": "library",
46
"keywords": [
57
"database",
68
"model"
79
],
810
"readme": "README.md",
9-
"type": "library",
10-
"license": "MIT",
1111
"authors": [
1212
{
1313
"name": "Matthias Neid",
1414
"email": "[email protected]"
1515
}
1616
],
1717
"support": {
18-
"source": "https://github.com/aternosorg/php-model",
19-
"issues": "https://github.com/aternosorg/php-model/issues"
18+
"issues": "https://github.com/aternosorg/php-model/issues",
19+
"source": "https://github.com/aternosorg/php-model"
2020
},
21-
"minimum-stability": "stable",
2221
"require": {
2322
"php": ">=8.3",
2423
"ext-json": "*",
@@ -28,21 +27,22 @@
2827
"require-dev": {
2928
"phpunit/phpunit": "^10.5"
3029
},
30+
"suggest": {
31+
"ext-cassandra": "To use the Cassandra NoSQL driver",
32+
"ext-mysqli": "To use the Mysqli Relational driver",
33+
"ext-redis": "To use the Redis Cache driver",
34+
"shyim/opensearch-php-dsl": "OpenSearch DSL query builder"
35+
},
36+
"minimum-stability": "stable",
3137
"autoload": {
3238
"psr-4": {
3339
"Aternos\\Model\\": "src/"
3440
}
3541
},
3642
"autoload-dev": {
3743
"psr-4": {
38-
"Aternos\\Model\\Test\\Tests\\": "test/tests/",
39-
"Aternos\\Model\\Test\\Src\\": "test/src/"
44+
"Aternos\\Model\\Test\\Src\\": "test/src/",
45+
"Aternos\\Model\\Test\\Tests\\": "test/tests/"
4046
}
41-
},
42-
"suggest": {
43-
"ext-redis": "To use the Redis Cache driver",
44-
"ext-cassandra": "To use the Cassandra NoSQL driver",
45-
"ext-mysqli": "To use the Mysqli Relational driver",
46-
"shyim/opensearch-php-dsl": "OpenSearch DSL query builder"
4747
}
4848
}

0 commit comments

Comments
 (0)