-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.33 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.33 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"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.50.0",
"phpcompatibility/php-compatibility": "9.3.5",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^2",
"slevomat/coding-standard": "^8",
"szepeviktor/phpstan-wordpress": "^2",
"wp-cli/dist-archive-command": "dev-main",
"wp-coding-standards/wpcs": "3.3.0",
"wpackagist-plugin/plugin-check": "1.6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": [
"wpackagist-plugin/plugin-check"
]
}
},
"scripts": {
"phpcbf": "bin/phpcbf.sh",
"phpcs": "phpcs",
"phpstan": "phpstan analyse --memory-limit=2048M"
}
}