-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.04 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"type": "library",
"name": "andrew-gos/query-builder",
"description": "QueryBuilder",
"homepage": "https://github.com/CiBeRHeMuL/QueryBuilder",
"authors": [
{
"name": "Andrey Gostev",
"email": "Gostev71@outlook.com"
}
],
"license": "MIT",
"keywords": [
"andrew-gos",
"php",
"query-builder",
"db"
],
"minimum-stability": "stable",
"require": {
"php": "^8.5",
"andrew-gos/helpers": "^1.0"
},
"suggest": {
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.87",
"phpunit/phpunit": "^12"
},
"config": {
"sort-packages": true,
"prefer-stable": true
},
"scripts": {
"php-cs-fix": "php-cs-fixer fix",
"php-cs-check": "php-cs-fixer check"
},
"autoload": {
"psr-4": {
"AndrewGos\\QueryBuilder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AndrewGos\\QueryBuilder\\Tests\\": "tests"
}
}
}