-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "jelix/database",
"type": "library",
"description": "Lightweight PHP abstraction layer to access and query SQL databases, with an API to inspect and modify databases schema.",
"keywords": ["database", "sql", "abstract layer", "schema", "postgresql", "mysql", "sqlserver", "oci"],
"homepage": "https://jelix.org",
"license": "LGPL-2.1",
"authors": [
{
"name": "Laurent Jouanneau",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"psr/log": "^1.1.2"
},
"require-dev" : {
"phpunit/phpunit": "8.5.*"
},
"suggest": {
"jelix/profiles": "Ease the management of connection parameters"
},
"archive": {
"exclude": ["/tests"]
},
"autoload": {
"psr-4" : {
"Jelix\\Database\\" : "src/"
}
},
"minimum-stability": "stable"
}