-
Notifications
You must be signed in to change notification settings - Fork 769
/
composer.json
40 lines (40 loc) · 1.15 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
{
"name": "googleads/googleads-php-lib",
"description": "Google Ad Manager SOAP API Client Library for PHP",
"require": {
"php": ">=8",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-soap": "*",
"google/auth": "^1.0.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"monolog/monolog": "^2.2.0 || ^3.0",
"phpdocumentor/reflection-docblock": "^3.0.3 || ^4.0 || ^5.0",
"symfony/serializer": "^3.0.3 || ^4.4.0 || ^5.0.0 || ^6.0.0 || ^7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"squizlabs/php_codesniffer": "^2.9 || ^3.2",
"react/http": "^1.2.0"
},
"suggest": {
"react/http": "To run the Auth/GetRefreshToken.php example"
},
"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"
}
}