-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.17 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "lagdo/dbadmin-driver-sqlite",
"type": "library",
"description": "DbAdmin driver for SQLite.",
"authors": [
{
"name": "Thierry Feuzeu",
"email": "thierry.feuzeu@gmail.com"
}
],
"homepage": "https://github.com/lagdo/dbadmin-driver-sqlite",
"license": "Apache-2.0",
"keywords": ["Adminer", "Database", "Admin", "Dashboard", "SQL", "SQLite"],
"support": {
"issues": "https://github.com/lagdo/dbadmin-driver-sqlite/issues",
"source": "https://github.com/lagdo/dbadmin-driver-sqlite"
},
"require": {
"php": ">=8.1.0",
"lagdo/dbadmin-driver": "0.22.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"behat/behat": "^3.10",
"dvdoug/behat-code-coverage": "5.0.*",
"php-coveralls/php-coveralls": "^2.5",
"phpunit/phpcov": "^8.2"
},
"autoload": {
"psr-4": {
"Lagdo\\DbAdmin\\Driver\\Sqlite\\": "src/"
},
"files": [
"src/register.php"
]
},
"autoload-dev": {
"psr-4": {
"Lagdo\\DbAdmin\\Driver\\Sqlite\\Tests\\": "tests/"
}
}
}