-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
39
{
"name": "wordlift/plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "The Artificial Intelligence you need to grow your traffic.",
"homepage": "https://wordlift.io/",
"keywords": [
"seo",
"json-ld",
"rich snippets",
"rich results"
],
"support": {
"issues": "https://github.com/insideout10/wordlift-plugin/issues"
},
"require-dev": {
"wp-phpunit/wp-phpunit": "^6.7.1",
"automattic/jetpack-codesniffer": "^4.0",
"yoast/phpunit-polyfills": "^3.0.0"
},
"require": {
"composer/installers": "^2.3.0",
"php": ">=7.4",
"ext-json": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist",
"post-install-cmd": [
"patch -p0 --forward < .patches/phpcsutils-1-0-12.patch || exit 0"
]
}
}