-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.13 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
{
"name": "lagdo/dbadmin-driver-mysql",
"type": "library",
"description": "DbAdmin driver for MySQL.",
"authors": [
{
"name": "Thierry Feuzeu",
"email": "[email protected]"
}
],
"homepage": "https://github.com/lagdo/dbadmin-driver-mysql",
"license": "Apache-2.0",
"keywords": ["Adminer", "Database", "Admin", "Dashboard", "Sql", "MySql"],
"support": {
"issues": "https://github.com/lagdo/dbadmin-driver-mysql/issues",
"source": "https://github.com/lagdo/dbadmin-driver-mysql"
},
"require": {
"lagdo/dbadmin-driver": "dev-main"
},
"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\\MySql\\": "src/"
},
"files": [
"src/start.php"
]
},
"autoload-dev": {
"psr-4": {
"Lagdo\\DbAdmin\\Driver\\MySql\\Tests\\": "tests/"
}
}
}