-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.26 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
{
"name": "sybrew/emoji-settings",
"description": "Emoji Settings adds an option to your WordPress Writing Settings page to disable or enable emojis.",
"keywords": [
"emoji",
"wordpress",
"plugin"
],
"type": "wordpress-plugin",
"license": "GPL-3.0-only",
"homepage": "https://wordpress.org/plugins/emoji-settings/",
"authors": [
{
"name": "Sybre Waaijer",
"email": "[email protected]",
"homepage": "https://cyberwire.nl/",
"role": "Developer"
}
],
"require": {
"php": "~7.2 || ^8.0 || ^8.1",
"composer/installers": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.5.0",
"theseoframework/wpcs-tsf": "1.0.0",
"sirbrillig/phpcs-variable-analysis": "2.6.4",
"phpcompatibility/phpcompatibility-wp": "2.0.0"
},
"scripts": {
"php:compatibility": "composer install && vendor/bin/phpcs -p -s --runtime-set testVersion '5.2-' --standard=PHPCompatibilityWP --ignore=docker,tools,tests,node_modules,vendor --extensions=php",
"php:lint": "composer install && vendor/bin/phpcs -p -s",
"php:autofix": "composer install && vendor/bin/phpcbf",
"php:lint:errors": "composer install && vendor/bin/phpcs -p -s --runtime-set ignore_warnings_on_exit 1"
},
"minimum-stability": "dev",
"prefer-stable": true
}