Skip to content

Commit 4efd39f

Browse files
author
Vincent Tsao
committed
Preparing src for release 5.2.2
1 parent 8303a00 commit 4efd39f

File tree

6 files changed

+42
-8
lines changed

6 files changed

+42
-8
lines changed

ChangeLog.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
AdWords:
44
- Fixed [issue #21](https://github.com/googleads/googleads-php-lib/issues/21).
5+
- Fixed [issue #19](https://github.com/googleads/googleads-php-lib/issues/19).
56

67
DFP:
7-
- Fixed [pull request #18](https://github.com/googleads/googleads-php-lib/pull/18 "googleads-php-lib pull request #18").
8+
- Fixed [pull request #18](https://github.com/googleads/googleads-php-lib/pull/18).
89

910
Common:
10-
- Fixed [issue #24](https://github.com/googleads/googleads-php-lib/issues/24 "googleads-php-lib issue #24").
11+
- Fixed [issue #24](https://github.com/googleads/googleads-php-lib/issues/24).
1112
- Fixed [issue #10](https://github.com/googleads/googleads-php-lib/issues/10).
12-
- Fixed [pull request #11](https://github.com/googleads/googleads-php-lib/pull/11 "googleads-php-lib pull request #11").
13+
- Fixed [pull request #11](https://github.com/googleads/googleads-php-lib/pull/11).
1314

1415
### 5.2.1
1516

@@ -46,7 +47,7 @@ Common:
4647
### 5.1.0
4748

4849
AdWords:
49-
- Fixed [issue #9](https://github.com/googleads/googleads-php-lib/issues/9 "googleads-php-lib issue #9") - removing unused criteria object in example.
50+
- Fixed [issue #9](https://github.com/googleads/googleads-php-lib/issues/9).
5051
- Added support for AdWords Express for v201309 (invite-only feature).
5152

5253
DFP:

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "googleads/googleads-php-lib",
3+
"description": "Google Ads APIs Client Library for PHP (AdWords, Adx, and DFP)",
4+
"require": {
5+
"php": ">=5.2.0"
6+
},
7+
"type": "library",
8+
"homepage": "https://github.com/googleads/googleads-php-lib",
9+
"license": "Apache-2.0",
10+
"include-path": ["src/"],
11+
"authors": [
12+
{
13+
"name": "Paul Matthews",
14+
"role": "Developer"
15+
},
16+
{
17+
"name": "Adam Rogal",
18+
"role": "Developer"
19+
},
20+
{
21+
"name": "Mat Scales",
22+
"role": "Developer"
23+
},
24+
{
25+
"name": "Vincent Tsao",
26+
"role": "Developer"
27+
},
28+
{
29+
"name": "Ray Tsang",
30+
"role": "Developer"
31+
}
32+
]
33+
}

examples/AdWords/Auth/init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
error_reporting(E_STRICT | E_ALL);
3030

3131
$depth = '/../../../';
32-
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
32+
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
3333
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
3434

3535
// Configure include path.

examples/AdWords/v201309/init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
error_reporting(E_STRICT | E_ALL);
3131

3232
$depth = '/../../../';
33-
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
33+
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
3434
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
3535
define('UTIL_PATH', 'Google/Api/Ads/Common/Util');
3636
define('ADWORDS_UTIL_PATH', 'Google/Api/Ads/AdWords/Util');

examples/AdWords/v201402/init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
error_reporting(E_STRICT | E_ALL);
3131

3232
$depth = '/../../../';
33-
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
33+
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
3434
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
3535
define('UTIL_PATH', 'Google/Api/Ads/Common/Util');
3636
define('ADWORDS_UTIL_PATH', 'Google/Api/Ads/AdWords/Util');

examples/Adx/v201306/init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
error_reporting(E_STRICT | E_ALL);
3131

3232
$depth = '/../../../';
33-
define('SRC_PATH', dirname(__FILE__) . $depth . 'src/');
33+
define('SRC_PATH', dirname(__FILE__) . $depth . 'lib/');
3434
define('LIB_PATH', 'Google/Api/Ads/AdWords/Lib');
3535
define('UTIL_PATH', 'Google/Api/Ads/Common/Util');
3636
define('ADWORDS_UTIL_PATH', 'Google/Api/Ads/AdWords/Util');

0 commit comments

Comments
 (0)