forked from woocommerce/google-listings-and-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "woocommerce/google-listings-and-ads",
"type": "wordpress-plugin",
"description": "Native integration with Google that allows merchants to easily display their products across Google’s network.",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.4",
"ext-json": "*",
"automattic/jetpack-autoloader": "^2.4",
"automattic/jetpack-config": "^1.4",
"automattic/jetpack-connection": "^1.40",
"google/apiclient": "^2.15",
"google/apiclient-services": "~0.302",
"googleads/google-ads-php": "^19.1",
"league/container": "^3.4",
"league/iso3166": "^4.1",
"phpseclib/bcmath_compat": "^2.0",
"psr/container": "^1.1",
"symfony/polyfill-intl-normalizer": "^1.26",
"symfony/polyfill-mbstring": "^1.26",
"symfony/validator": "^5.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^v0.7",
"phpunit/phpunit": "^9.5",
"wp-cli/i18n-command": "^2.2",
"wp-coding-standards/wpcs": "^2.3",
"yoast/phpunit-polyfills": "^1.0"
},
"replace" : {
"google/grpc-gcp": "*",
"grpc/grpc": "*"
},
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"Automattic\\WooCommerce\\GoogleListingsAndAds\\": "src/",
"Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\": "bin/"
},
"files": [
"vendor/guzzlehttp/guzzle/src/functions_include.php",
"vendor/guzzlehttp/promises/src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"Automattic\\WooCommerce\\GoogleListingsAndAds\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4.30"
},
"sort-packages": true,
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"install-scripts": [
"Google\\Task\\Composer::cleanup",
"Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\SymfonyPolyfillCleanup::remove",
"Automattic\\WooCommerce\\GoogleListingsAndAds\\Util\\GoogleAdsCleanupServices::remove",
"composer run-script remove-google-ads-api-version-support -- 10 11 12",
"php ./bin/prefix-vendor-namespace.php",
"bash ./bin/cleanup-vendor-files.sh",
"composer dump-autoload"
],
"post-install-cmd": [
"@install-scripts"
],
"post-update-cmd": [
"@install-scripts"
],
"remove-google-ads-api-version-support": [
"Google\\Ads\\GoogleAds\\Util\\ApiVersionSupport::remove"
],
"test-unit": "./vendor/bin/phpunit"
},
"archive": {
"exclude": [
"!/js/build",
"!/vendor/*",
"!/languages",
"Working with DEWP.md"
]
},
"extra": {
"google/apiclient-services": [
"ShoppingContent",
"SiteVerification"
]
}
}