-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.21 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.21 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
43
44
45
46
47
48
{
"name": "tribal2/db-handler",
"description": "Library to interact with MySQL databases",
"type": "library",
"license": "MIT",
"keywords": [
"database",
"mysql",
"pdo",
"query",
"builder"
],
"authors": [
{
"name": "Ricardo Tribaldos",
"email": "rtribaldos@barustudio.com"
}
],
"support": {
"issues": "https://github.com/tribal2/php-dbhandler/issues",
"source": "https://github.com/tribal2/php-dbhandler"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Tribal2\\DbHandler\\": "src/"
}
},
"require": {
"panique/pdo-debug": "^0.2.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"pestphp/pest": "^2.24",
"mockery/mockery": "^1.6",
"pestphp/pest-plugin-type-coverage": "^2.5"
},
"scripts": {
"test": "vendor/bin/pest --coverage --min=95 --coverage-html=coverage",
"test-ci": "vendor/bin/pest --coverage --min=97 --coverage-clover ./coverage.xml"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}