From 2888487cf00dd193850370de06b67ba8c90e50cd Mon Sep 17 00:00:00 2001 From: Rafal Zmuda Date: Fri, 11 Jan 2013 21:10:03 +0100 Subject: [PATCH 1/2] missing Profile properties added --- src/GoogleApi/Contrib/apiAnalyticsService.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/GoogleApi/Contrib/apiAnalyticsService.php b/src/GoogleApi/Contrib/apiAnalyticsService.php index 9fa37e4..d58a901 100644 --- a/src/GoogleApi/Contrib/apiAnalyticsService.php +++ b/src/GoogleApi/Contrib/apiAnalyticsService.php @@ -1072,6 +1072,8 @@ class Profile extends Model { public $id; public $selfLink; public $accountId; + public $websiteUrl; + public $eCommerceTracking; public function setDefaultPage($defaultPage) { $this->defaultPage = $defaultPage; } @@ -1174,6 +1176,18 @@ public function setAccountId($accountId) { public function getAccountId() { return $this->accountId; } + public function setWebsiteUrl($websiteUrl) { + $this->websiteUrl = $websiteUrl; + } + public function getWebsiteUrl() { + return $this->websiteUrl; + } + public function setECommerceTracking($eCommerceTracking) { + $this->eCommerceTracking = $eCommerceTracking; + } + public function getECommerceTracking() { + return $this->eCommerceTracking; + } } class ProfileChildLink extends Model { From 5a4b9299884a7d3fd87b8e27c78cf1ff0678be91 Mon Sep 17 00:00:00 2001 From: Rafal Zmuda Date: Mon, 14 Jan 2013 10:37:09 +0100 Subject: [PATCH 2/2] composer --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 5f75086..4390b8d 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { - "name": "evert/google-api-php-client", + "name": "rafalzmuda/google-api-php-client", "type": "library", "description": "Google API library for PHP", "keywords": ["google","gdata"], - "homepage": "https://github.com/evert/google-api-php-client", + "homepage": "https://github.com/rafalzmuda/google-api-php-client", "license": "Apache 2.0", "authors": [ {