forked from googleads/googleads-php-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·38 lines (38 loc) · 1.04 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
{
"name": "googleads/googleads-php-lib",
"description": "Google Ads APIs Client Library for PHP (AdWords and Ad Manager)",
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-soap": "*",
"google/auth": "^1.0.0",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/psr7": "^1.2",
"monolog/monolog": "^1.17.1 || ^2.0.0",
"phpdocumentor/reflection-docblock": "^3.0.3 || ^4.0 || ^5.0",
"symfony/serializer": "^4.4.0 || ^5.0.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^2.9 || ^3.2"
},
"suggest": {
"php-64bit": ">=7.1"
},
"homepage": "https://github.com/googleads/googleads-php-lib",
"license": "Apache-2.0",
"autoload": {
"psr-4": { "Google\\AdsApi\\": "src/Google/AdsApi/" }
},
"authors": [
{
"name": "Google",
"homepage": "https://github.com/googleads/googleads-php-lib/contributors"
}
],
"scripts": {
"pre-update-cmd": "@php check_conditions.php",
"pre-install-cmd": "@php check_conditions.php"
}
}