-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.64 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
51
52
53
54
55
56
{
"name": "sapayth/sheet-wise",
"description": "Sync and manage your Google Sheets spreadsheet through your WordPress site.",
"type": "wordpress-plugin",
"license": "GPL v2",
"autoload": {
"psr-4": {
"SheetWise\\": "includes/"
},
"classmap": [
"third-party/"
],
"files": []
},
"authors": [
{
"name": "sapayth"
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
"wp-coding-standards/wpcs": "dev-develop",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"humbug/php-scoper": "dev-main",
"google/apiclient": "^2.15.0",
"woocommerce/action-scheduler": "^3.4.2",
"deliciousbrains/wp-background-processing": "dev-master"
},
"require": {
},
"scripts": {
"pre-autoload-dump": "Google\\Task\\Composer::cleanup",
"post-install-cmd": [
"vendor/bin/php-scoper add-prefix --config=scoper.inc.php --force"
],
"prefix-dependencies": [
"@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --output-dir=third-party --config=config/scoper.inc.php --force --quiet"
],
"post-update-cmd": [
"php-scoper add-prefix --config=scoper.inc.php"
]
},
"extra": {
"google/apiclient-services": [
"Drive",
"Sheets"
]
}
}