-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·33 lines (33 loc) · 1.23 KB
/
composer.json
File metadata and controls
executable file
·33 lines (33 loc) · 1.23 KB
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
{
"name": "verdigado/sunflower-persons",
"type": "wordpress-plugin",
"description": "",
"keywords": [
"WordPress",
"Plugin"
],
"homepage": "https://github.com/verdigado/sunflower-persons",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4.0",
"wp-coding-standards/wpcs": "^3.1",
"squizlabs/php_codesniffer": "^3.7",
"rector/rector": "^1.0",
"symplify/easy-coding-standard": "^12.1",
"symplify/coding-standard": "^12.1"
},
"scripts": {
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .",
"make-pot": "wp i18n make-pot . languages/sunflower-persons.pot && wp i18n make-pot . languages/sunflower-persons-person.pot --slug=sunflower-persons-person --domain=sunflower-persons-person --exclude=node_modules && wp i18n make-json languages/ --no-purge"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}