-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
32 lines (32 loc) · 993 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
{
"name": "westonruter/syntax-highlighting-code-block",
"description": "A WordPress plugin which extends Gutenberg adding server-rendered color syntax highlighting to the code block.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"require": {
"scrivo/highlight.php": "9.18.1.10"
},
"require-dev": {
"ergebnis/composer-normalize": "2.44.0",
"phpcompatibility/php-compatibility": "9.3.5",
"phpstan/phpstan": "1.12.7",
"szepeviktor/phpstan-wordpress": "1.3.5",
"wp-cli/dist-archive-command": "dev-main",
"wp-coding-standards/wpcs": "3.1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.4"
},
"sort-packages": true
},
"scripts": {
"analyze": "if [ -z $TEST_SKIP_PHPSTAN ]; then phpstan --version; phpstan analyze --ansi; fi",
"phpcbf": "bin/phpcbf.sh",
"phpcs": "phpcs"
}
}