forked from Automattic/newspack-content-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1014 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
33
34
35
36
{
"name": "automattic/newspack-content-converter",
"description": "Plugin that enables mass conversion of pre-Gutenberg post content to the Gutenberg Blocks content.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"autoload": {
"classmap": [
"lib/",
"tests/"
]
},
"require": {
"composer/installers": "^1.6",
"brainmaestro/composer-git-hooks": "^2.6"
},
"require-dev": {
"xwp/wp-dev-lib": "^1.5",
"automattic/vipwpcs": "^2.0.0",
"wp-coding-standards/wpcs": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/cghooks add --no-lock"
],
"post-update-cmd": [
"vendor/bin/cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": "./vendor/xwp/wp-dev-lib/scripts/pre-commit"
}
}
}