generated from 10up/plugin-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "globeandmail/sophi-for-wordpress",
"description": "WordPress VIP-compatible plugin for the Sophi.io Site Automation service.",
"type": "wordpress-plugin",
"homepage": "https://github.com/globeandmail/sophi-for-wordpress",
"readme": "https://github.com/globeandmail/sophi-for-wordpress/blob/develop/README.md",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "10up",
"email": "opensource@10up.com",
"homepage": "https://10up.com",
"role": "Developer"
},
{
"name": "The Globe and Mail",
"email": "info@sophi.io",
"homepage": "https://www.sophi.io",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/globeandmail/sophi-for-wordpress/issues"
},
"require": {
"php": ">=7.4",
"snowplow/snowplow-tracker": "0.6.1"
},
"require-dev": {
"phpunit/phpunit": "9.5.27",
"10up/wp_mock": "dev-trunk",
"automattic/vipwpcs": "2.3.3",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.2",
"10up/phpcs-composer": "dev-master"
},
"autoload": {
"psr-4": {
"SophiWP\\": "includes/classes/"
}
},
"scripts": {
"lint": "phpcs",
"lint-fix": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}