-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.33 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
49
50
{
"name": "crate/crate-dbal",
"description": "Doctrine Database Abstraction Layer (DBAL) 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-dbal",
"keywords": ["database", "dbal", "doctrine", "cratedb"],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0|^8.1|^8.2|^8.3|^8.4|^8.5",
"doctrine/dbal": "^3",
"crate/crate-pdo": "^2.2.4",
"ext-pdo": "*"
},
"autoload": {
"psr-0": {
"Crate\\DBAL": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.89"
},
"autoload-dev": {
"psr-0": {
"Crate\\Test": "test"
},
"psr-4": {
"Doctrine\\DBAL\\Tests\\": "vendor/doctrine/dbal/tests"
}
},
"config": {
"preferred-install": {
"doctrine/dbal": "source"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit --coverage-clover build/logs/clover.xml",
"check-style": "php-cs-fixer check",
"fix-style": "php-cs-fixer fix"
}
}