-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
64 lines (64 loc) · 1.49 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
62
63
64
{
"name": "ryanwelcher/advanced-query-loop",
"description": "Query loop block variations to create custom queries.",
"authors": [
{
"name": "Ryan Welcher",
"email": "[email protected]"
}
],
"keywords": [
"wordpress"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/ryanwelcher/advanced-query-loop",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/ryanwelcher/advanced-query-loop/issues",
"source": "https://github.com/ryanwelcher/advanced-query-loop/"
},
"autoload": {
"psr-4": {
"AdvancedQueryLoop\\": "includes/"
},
"files": [
"includes/enqueues.php",
"includes/query-loop.php",
"includes/utilities.php"
]
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"object-calisthenics/phpcs-calisthenics-rules": "*",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "*",
"phpunit/phpunit": "^8.5",
"yoast/phpunit-polyfills": "^2.0"
},
"require": {
"php": ">=7.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"scripts": {
"install-codestandards": [
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
],
"build": [
"composer update --no-dev",
"composer dump-autoload -o --no-dev"
],
"dev": [
"composer update",
"composer dump-autoload"
],
"phpunit": "vendor/bin/phpunit"
}
}