-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
43 lines (43 loc) · 1.2 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
{
"name": "crate/crate-pdo",
"description": "PDO adapter for CrateDB",
"authors": [
{
"name": "Crate.io",
"email": "office@crate.io",
"homepage": "https://crate.io",
"role": "maintainer"
}
],
"license": "Apache-2.0",
"homepage": "https://github.com/crate/crate-pdo",
"keywords": ["database", "pdo", "cratedb"],
"require": {
"php": "^7.3|^8.0|^8.1|^8.2|^8.3",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.2"
},
"autoload": {
"psr-0": {
"Crate\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload-dev": {
"psr-0": {
"CrateTest\\PDO\\": "test",
"CrateIntegrationTest\\PDO\\": "test"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit --coverage-clover build/logs/clover.xml",
"coverage-html": "XDEBUG_MODE=coverage phpunit --coverage-html build/logs/html",
"multicover": "./devtools/php-multicover.sh",
"check-style": "phpcs",
"fix-style": "phpcbf"
}
}