forked from westonruter/syntax-highlighting-code-block
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 732 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "westonruter/syntax-highlighting-code-block",
"description": "A WordPress plugin which extends Gutenberg adding server-rendered color syntax highlighting to the code block.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"scrivo/highlight.php": "v9.17.1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/php-compatibility": "^9.1",
"wp-coding-standards/wpcs": "^2",
"xwp/wp-dev-lib": "^1.2"
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcs": "phpcs",
"zip": "git archive --format=zip HEAD > syntax-highlighting-code-block.zip && unzip -l syntax-highlighting-code-block.zip"
}
}