-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.34 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
{
"name": "pantheon-systems/pantheon-content-publisher-for-wordpress",
"type": "wordpress-plugin",
"description": "Publish WordPress content from Google Docs with Pantheon Content Cloud.",
"keywords": [
"wordpress",
"plugin"
],
"support": {
"email": "[email protected]"
},
"authors": [
{
"name": "Pantheon",
"email": "[email protected]",
"homepage": "https://pantheon.io"
}
],
"autoload": {
"psr-4": {
"Pantheon\\ContentPublisher\\": "app/"
}
},
"require": {
"php": ">=8",
"pantheon-systems/pcc-php-sdk": "dev-main"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/php-compatibility": "^9.3"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:pantheon-systems/pcc-php-sdk.git"
}
],
"scripts": {
"php:lint:autofix": "vendor/bin/phpcbf --ignore=*/vendor/ --standard=./phpcs.xml ",
"php:lint:report": "vendor/bin/phpcs --ignore=*/vendor/ --standard=./phpcs.xml; phpcs --ignore=*/vendor/ --standard=./phpcs.xml --extensions=php --report=source",
"php-compatibility": "vendor/bin/phpcs -ps * --ignore=*/vendor/ --extensions=php --standard=PHPCompatibility --runtime-set testVersion 8.0-"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}