-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 1.22 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
52
53
54
55
56
57
58
59
60
61
{
"name": "aviat/query",
"type": "library",
"description": "Database Query Builder and Abstraction layer",
"keywords": [
"database",
"query builder",
"codeigniter",
"mysql",
"sqlite",
"postgres",
"pdo"
],
"homepage": "https://git.timshomepage.net/aviat/Query",
"license": "MIT",
"authors": [
{
"name": "Timothy J. Warren",
"email": "[email protected]",
"homepage": "https://timshomepage.net",
"role": "Developer"
}
],
"config": {
"lock": false,
"platform": {
"php": "8.1"
}
},
"require": {
"php": ">=8.1",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0.16"
},
"autoload": {
"psr-4": {
"Query\\": "src"
},
"files": [
"src/common.php"
]
},
"autoload-dev": {
"psr-4": {
"Query\\Tests\\": "tests"
}
},
"scripts": {
"docs": "php tools/phpDocumentor run --sourcecode",
"coverage": "php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit -c build",
"pcov": "vendor/bin/phpunit -c build",
"phpstan": "tools/vendor/bin/phpstan analyse -l 3 -c phpstan.neon src tests",
"test": "phpunit -c build --no-coverage"
},
"scripts-descriptions": {
"coverage": "Generate test coverage report",
"test": "Run unit tests"
}
}