-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.23 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
42
43
44
45
46
47
48
49
50
51
{
"name": "rancoud/database",
"description": "Database package",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sebastien Rancoud",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Rancoud\\Database\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"require": {
"php": ">=7.4.0",
"ext-pdo": "*"
},
"suggest": {
"ext-pdo_mysql": "Needed to connect MySQL",
"ext-pdo_pgsql": "Needed to connect PostgreSQL",
"ext-pdo_sqlite": "Needed to connect SQLite"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16 || ^3.0",
"phpunit/phpunit": "^9.1 || ^10.0 || ^11.0",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"ci": [
"@lint",
"@test"
],
"lint": [
"phpcbf",
"phpcs",
"php-cs-fixer fix"
],
"test": [
"phpdbg -qrr vendor/bin/phpunit --colors --coverage-html ./coverage --coverage-text --coverage-clover ./coverage/clover.xml"
]
}
}