-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.06 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "arekx/pql",
"description": "PHP Query Builder",
"license": "MIT",
"authors": [
{
"name": "Aleksandar Panic",
"email": "arekusanda1@gmail.com"
}
],
"autoload": {
"psr-4": {
"ArekX\\PQL\\": "src/"
},
"files": [
"src/Sql/functions.php"
]
},
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-pdo": "*"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"codeception/verify": "^2.1"
},
"scripts": {
"codecept": "vendor/bin/codecept",
"test": "vendor/bin/codecept run",
"test-unit": "vendor/bin/codecept run unit",
"coverage": "XDEBUG_MODE=coverage vendor/bin/codecept run --coverage-html",
"coverage-clover": "XDEBUG_MODE=coverage vendor/bin/codecept run --coverage-xml",
"coverage-unit-clover": "XDEBUG_MODE=coverage vendor/bin/codecept run unit --coverage-xml",
"coverage-integration-clover": "XDEBUG_MODE=coverage vendor/bin/codecept run integration --coverage-xml"
}
}