-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 loc) · 983 Bytes
/
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
{
"name": "10quality/wp-query-builder",
"description": "Wordpress Query Builder class library for custom models and data querying.",
"license": "MIT",
"keywords": ["wordpress","query builder","database", "models"],
"authors": [
{
"name": "Alejandro Mostajo",
"email": "[email protected]"
},
{
"name": "Hyper Tribal",
"email": "[email protected]"
},
{
"name": "10 Quality",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"10quality/php-data-model": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "9.*"
},
"autoload": {
"psr-4": {
"TenQuality\\WP\\Database\\": "src"
},
"files": [
"src/Lib/functions.php"
]
},
"scripts": {
"test": [
"phpunit"
]
},
"minimum-stability": "dev"
}