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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{
"name": "williamdes/mariadb-mysql-kbs",
"description": "An index of the MariaDB and MySQL Knowledge bases",
"homepage": "https://github.com/williamdes/mariadb-mysql-kbs",
"type": "library",
"readme": "https://github.com/williamdes/mariadb-mysql-kbs#readme",
"license": "MPL-2.0",
"funding": [
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/packagist/williamdes/mariadb-mysql-kbs"
},
{
"type": "github",
"url": "https://github.com/sponsors/williamdes"
}
],
"keywords": [
"mariadb",
"mysql",
"dataset",
"kb",
"knowledge-base",
"json",
"library",
"mysql-knowledge-bases",
"mariadb-knowledge-bases",
"composer-package",
"npm-package"
],
"support": {
"email": "williamdes@wdes.fr",
"issues": "https://github.com/williamdes/mariadb-mysql-kbs/issues",
"source": "https://github.com/williamdes/mariadb-mysql-kbs"
},
"authors": [
{
"name": "William Desportes",
"email": "williamdes@wdes.fr"
}
],
"scripts": {
"build": "@php ./src/merge.php",
"test": "@php phpunit",
"phpstan": "@php phpstan",
"phpcs": "@php phpcs",
"phpcbf": "@php phpcbf"
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8 || ^9 || ^10 || ^11",
"phpstan/phpstan": "^1.10",
"wdes/coding-standard": "^3.3.2",
"swaggest/json-schema": "^0.12.42"
},
"autoload": {
"psr-4": {
"Williamdes\\MariaDBMySQLKBS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Williamdes\\MariaDBMySQLKBS\\Test\\": "test/"
}
},
"non-feature-branches": [
"update/*"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
|