-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 858 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 858 Bytes
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
{
"name": "jjgrainger/query",
"description": "WordPress Query Builder",
"keywords": ["wordpress", "wp-query"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "jjgrainger",
"email": "github@jjgrainger.co.uk"
}
],
"autoload": {
"psr-4": {
"Query\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Query\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "8.*",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"test": [
"./vendor/bin/phpcs --standard=psr2 src",
"./vendor/bin/phpunit --coverage-clover=coverage.xml"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}