-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
52 lines (52 loc) · 1.25 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
{
"name": "pablo-sg-pacheco/wp-namespace-autoloader",
"type": "library",
"description": "A PHP autoloader class that follows the WordPress coding standards 2.0 and proposed 3.0 for class/interface/trait names and filenames",
"keywords": [
"wp",
"wordpress",
"autoload",
"namespace"
],
"homepage": "https://github.com/pablo-pacheco/wp-namespace-autoloader",
"license": "GPLv2",
"authors": [
{
"name": "Pablo dos S G Pacheco",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
"wp-coding-standards/wpcs": "^2.3",
"cweagans/composer-patches": "^1.0"
},
"autoload": {
"psr-4": {
"Pablo_Pacheco\\WP_Namespace_Autoloader\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pablo_Pacheco\\WP_Namespace_Autoloader\\Tests\\": "tests"
}
},
"extra": {
"patches": {
"squizlabs/php_codesniffer": {
"Add GitHub Actions Annotations report type": "https://github.com/squizlabs/PHP_CodeSniffer/pull/2918.patch"
}
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}