-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 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
{
"name": "quadlayers/wp-autoload",
"description": "Composer package with autoload for WordPress.",
"type": "composer-plugin",
"keywords": [
"WordPress",
"Autoload"
],
"homepage": "https://quadlayers.com/",
"license": "GPL-3.0",
"authors": [
{
"name": "QuadLayers",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/quadlayers/wp-autoload/issues"
},
"prefer-stable": true,
"minimum-stability": "stable",
"config": {
"platform": {
"php": "7.3.0"
},
"allow-plugins": {
"automattic/jetpack-composer-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"QuadLayers\\WP_Autoload\\": "src/"
}
},
"require": {
"php": ">=7.1.0",
"composer-plugin-api": "^2.1.0"
},
"require-dev": {
"composer/composer": "^2.1",
"wp-coding-standards/wpcs": "^2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.0"
},
"extra": {
"class": "QuadLayers\\WP_Autoload\\Plugin"
},
"scripts": {
"test:phpunit": "./vendor/bin/phpunit phpunit",
"build": "composer install --no-dev && composer dump-autoload -o --no-dev",
"phpcs:report:csv": "./vendor/bin/phpcs --warning-severity=0 --extensions=php --report=csv --report-file=./phpcs_error.csv ./src",
"phpcs:report:txt": "./vendor/bin/phpcs --warning-severity=0 --extensions=php --report-file=./phpcs_error.txt ./src",
"phpcs:report:autofix": "./vendor/bin/phpcbf ./src"
}
}