-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 827 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 827 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
{
"name": "instawp/wordpress-string-locator",
"type": "wordpress-plugin",
"description": "Find and edit code or texts in your themes and plugins.",
"version": "2.4.2",
"keywords": [
"plugin",
"WordPress"
],
"license": "GPL-2.0-or-later",
"require-dev": {
"wp-coding-standards/wpcs": "~2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0"
},
"scripts": {
"check-cs": "./vendor/bin/phpcs --extensions=php --ignore=/vendor/",
"fix-cs": "./vendor/bin/phpcbf --extensions=php --ignore=/vendor/"
},
"support": {
"issues": "https://github.com/InstaWP/wordpress-string-locator/issues",
"source": "https://github.com/InstaWP/wordpress-string-locator"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}