-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 900 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
{
"name": "rodrigo/theplugin",
"description": "The plugin description.",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/maaprote",
"authors": [
{
"name": "Rodrigo Teixeira",
"role": "Developer"
}
],
"scripts": {
"phpcs": "@php ./vendor/bin/phpcs",
"phpcs:fix": "@php ./vendor/bin/phpcbf",
"run-tests": [
"@phpcs:fix",
"@phpcs"
]
},
"autoload": {
"psr-4": {
"Rodrigo\\ThePlugin\\": "includes/"
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^3.0.0",
"phpcompatibility/phpcompatibility-wp": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}