forked from googleads/google-ads-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.39 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
{
"name": "googleads/google-ads-php",
"author": "Google LLC",
"url": "https://github.com/googleads/google-ads-php",
"description": "Google Ads API client for PHP",
"require": {
"php": ">=7.1",
"google/gax": "^1.0.2",
"ulrichsg/getopt-php": "^3.2.2",
"monolog/monolog": "^1.23.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^2.9 || ^3.2",
"ext-bcmath": "*",
"react/http": "^0.8.3"
},
"suggest": {
"php-64bit": ">=7.1",
"react/http": "To run the AuthenticateInWebApplication.php example",
"ext-protobuf": "For better performance, use the C implementation of Protobuf",
"google/protobuf": "In case the C implementation of Protobuf is not suitable, use the PHP one"
},
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Google\\Ads\\GoogleAds\\": "src/Google/Ads/GoogleAds",
"GPBMetadata\\Google\\Ads\\GoogleAds\\": "metadata/Google/Ads/GoogleAds",
"Google\\Ads\\GoogleAds\\Examples\\": "examples"
}
},
"autoload-dev": {
"psr-4": {
"Google\\": "src/Google/Ads/GoogleAds/Util/Testing/Google",
"GPBMetadata\\": "src/Google/Ads/GoogleAds/Util/Testing/metadata"
}
},
"authors": [
{
"name": "Google",
"homepage": "https://github.com/googleads/google-ads-php/contributors"
}
],
"scripts": {
"test": [
"phpunit tests"
]
}
}