├── .github ├── CODEOWNERS └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docs └── index.md ├── mkdocs.yml ├── phpunit.xml.dist ├── src ├── Analytics.php ├── AnalyticsResponse.php ├── AnalyticsResponseInterface.php ├── Exception │ ├── EnqueueUrlsOverflowException.php │ ├── InvalidCompoundParameterException.php │ ├── InvalidIndexException.php │ ├── InvalidNameException.php │ └── InvalidPayloadDataException.php ├── Network │ ├── HttpClient.php │ └── PrepareUrl.php ├── NullAnalyticsResponse.php ├── Parameters │ ├── AppTracking │ │ ├── ApplicationId.php │ │ ├── ApplicationInstallerId.php │ │ ├── ApplicationName.php │ │ └── ApplicationVersion.php │ ├── CompoundParameter.php │ ├── CompoundParameterCollection.php │ ├── CompoundParameterCollectionInterface.php │ ├── CompoundParameterInterface.php │ ├── ContentExperiments │ │ ├── ExperimentId.php │ │ └── ExperimentVariant.php │ ├── ContentGrouping │ │ └── ContentGroup.php │ ├── ContentInformation │ │ ├── DocumentHostName.php │ │ ├── DocumentLocationUrl.php │ │ ├── DocumentPath.php │ │ ├── DocumentTitle.php │ │ ├── LinkId.php │ │ └── ScreenName.php │ ├── CustomDimensionsMetrics │ │ ├── CustomDimension.php │ │ └── CustomMetric.php │ ├── Ecommerce │ │ ├── CurrencyCode.php │ │ ├── ItemCategory.php │ │ ├── ItemCode.php │ │ ├── ItemName.php │ │ ├── ItemPrice.php │ │ └── ItemQuantity.php │ ├── EnhancedEcommerce │ │ ├── Affiliation.php │ │ ├── CheckoutStep.php │ │ ├── CheckoutStepOption.php │ │ ├── CouponCode.php │ │ ├── Product.php │ │ ├── ProductAction.php │ │ ├── ProductActionList.php │ │ ├── ProductCollection.php │ │ ├── ProductImpression.php │ │ ├── ProductImpressionCollection.php │ │ ├── ProductImpressionListName.php │ │ ├── Promotion.php │ │ ├── PromotionAction.php │ │ ├── PromotionCollection.php │ │ ├── Revenue.php │ │ ├── Shipping.php │ │ ├── Tax.php │ │ └── TransactionId.php │ ├── Event │ │ ├── EventAction.php │ │ ├── EventCategory.php │ │ ├── EventLabel.php │ │ └── EventValue.php │ ├── Exceptions │ │ ├── ExceptionDescription.php │ │ └── IsExceptionFatal.php │ ├── General │ │ ├── AnonymizeIp.php │ │ ├── CacheBuster.php │ │ ├── DataSource.php │ │ ├── ProtocolVersion.php │ │ ├── QueueTime.php │ │ └── TrackingId.php │ ├── Hit │ │ ├── HitType.php │ │ └── NonInteractionHit.php │ ├── Session │ │ ├── GeographicalOverride.php │ │ ├── IpOverride.php │ │ ├── SessionControl.php │ │ └── UserAgentOverride.php │ ├── SingleParameter.php │ ├── SingleParameterInterface.php │ ├── SocialInteractions │ │ ├── SocialAction.php │ │ ├── SocialActionTarget.php │ │ └── SocialNetwork.php │ ├── SystemInfo │ │ ├── DocumentEncoding.php │ │ ├── FlashVersion.php │ │ ├── JavaEnabled.php │ │ ├── ScreenColors.php │ │ ├── ScreenResolution.php │ │ ├── UserLanguage.php │ │ └── ViewportSize.php │ ├── Timing │ │ ├── ContentLoadTime.php │ │ ├── DnsTime.php │ │ ├── DomInteractiveTime.php │ │ ├── PageDownloadTime.php │ │ ├── PageLoadTime.php │ │ ├── RedirectResponseTime.php │ │ ├── ServerResponseTime.php │ │ ├── TcpConnectTime.php │ │ ├── UserTimingCategory.php │ │ ├── UserTimingLabel.php │ │ ├── UserTimingTime.php │ │ └── UserTimingVariableName.php │ ├── TrafficSources │ │ ├── CampaignContent.php │ │ ├── CampaignId.php │ │ ├── CampaignKeyword.php │ │ ├── CampaignMedium.php │ │ ├── CampaignName.php │ │ ├── CampaignSource.php │ │ ├── DocumentReferrer.php │ │ ├── GoogleAdwordsId.php │ │ └── GoogleDisplayAdsId.php │ └── User │ │ ├── ClientId.php │ │ └── UserId.php └── Traits │ └── Indexable.php └── tests ├── TheIconic └── Tracking │ └── GoogleAnalytics │ ├── AnalyticsGetTest.php │ ├── AnalyticsResponseTest.php │ ├── AnalyticsTest.php │ ├── Network │ ├── HttpClientTest.php │ └── PrepareUrlTest.php │ └── Parameters │ ├── CompoundParameterCollectionTest.php │ ├── CompoundParameterTest.php │ └── SingleParameterTest.php └── support ├── classes ├── CompoundParameterTestCollection.php ├── CompoundTestParameter.php ├── InvalidCompoundParameterTestCollection.php ├── InvalidSingleTestParameter.php ├── SingleTestParameter.php └── SingleTestParameterIndexed.php └── scripts └── bootstrap.php /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: THE ICONIC Google Analytics Measurement Protocol library 2 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Analytics.php -------------------------------------------------------------------------------- /src/AnalyticsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/AnalyticsResponse.php -------------------------------------------------------------------------------- /src/AnalyticsResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/AnalyticsResponseInterface.php -------------------------------------------------------------------------------- /src/Exception/EnqueueUrlsOverflowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Exception/EnqueueUrlsOverflowException.php -------------------------------------------------------------------------------- /src/Exception/InvalidCompoundParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Exception/InvalidCompoundParameterException.php -------------------------------------------------------------------------------- /src/Exception/InvalidIndexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Exception/InvalidIndexException.php -------------------------------------------------------------------------------- /src/Exception/InvalidNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Exception/InvalidNameException.php -------------------------------------------------------------------------------- /src/Exception/InvalidPayloadDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Exception/InvalidPayloadDataException.php -------------------------------------------------------------------------------- /src/Network/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Network/HttpClient.php -------------------------------------------------------------------------------- /src/Network/PrepareUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Network/PrepareUrl.php -------------------------------------------------------------------------------- /src/NullAnalyticsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/NullAnalyticsResponse.php -------------------------------------------------------------------------------- /src/Parameters/AppTracking/ApplicationId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/AppTracking/ApplicationId.php -------------------------------------------------------------------------------- /src/Parameters/AppTracking/ApplicationInstallerId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/AppTracking/ApplicationInstallerId.php -------------------------------------------------------------------------------- /src/Parameters/AppTracking/ApplicationName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/AppTracking/ApplicationName.php -------------------------------------------------------------------------------- /src/Parameters/AppTracking/ApplicationVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/AppTracking/ApplicationVersion.php -------------------------------------------------------------------------------- /src/Parameters/CompoundParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/CompoundParameter.php -------------------------------------------------------------------------------- /src/Parameters/CompoundParameterCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/CompoundParameterCollection.php -------------------------------------------------------------------------------- /src/Parameters/CompoundParameterCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/CompoundParameterCollectionInterface.php -------------------------------------------------------------------------------- /src/Parameters/CompoundParameterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/CompoundParameterInterface.php -------------------------------------------------------------------------------- /src/Parameters/ContentExperiments/ExperimentId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentExperiments/ExperimentId.php -------------------------------------------------------------------------------- /src/Parameters/ContentExperiments/ExperimentVariant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentExperiments/ExperimentVariant.php -------------------------------------------------------------------------------- /src/Parameters/ContentGrouping/ContentGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentGrouping/ContentGroup.php -------------------------------------------------------------------------------- /src/Parameters/ContentInformation/DocumentHostName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentInformation/DocumentHostName.php -------------------------------------------------------------------------------- /src/Parameters/ContentInformation/DocumentLocationUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentInformation/DocumentLocationUrl.php -------------------------------------------------------------------------------- /src/Parameters/ContentInformation/DocumentPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentInformation/DocumentPath.php -------------------------------------------------------------------------------- /src/Parameters/ContentInformation/DocumentTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentInformation/DocumentTitle.php -------------------------------------------------------------------------------- /src/Parameters/ContentInformation/LinkId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentInformation/LinkId.php -------------------------------------------------------------------------------- /src/Parameters/ContentInformation/ScreenName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/ContentInformation/ScreenName.php -------------------------------------------------------------------------------- /src/Parameters/CustomDimensionsMetrics/CustomDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/CustomDimensionsMetrics/CustomDimension.php -------------------------------------------------------------------------------- /src/Parameters/CustomDimensionsMetrics/CustomMetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/CustomDimensionsMetrics/CustomMetric.php -------------------------------------------------------------------------------- /src/Parameters/Ecommerce/CurrencyCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Ecommerce/CurrencyCode.php -------------------------------------------------------------------------------- /src/Parameters/Ecommerce/ItemCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Ecommerce/ItemCategory.php -------------------------------------------------------------------------------- /src/Parameters/Ecommerce/ItemCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Ecommerce/ItemCode.php -------------------------------------------------------------------------------- /src/Parameters/Ecommerce/ItemName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Ecommerce/ItemName.php -------------------------------------------------------------------------------- /src/Parameters/Ecommerce/ItemPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Ecommerce/ItemPrice.php -------------------------------------------------------------------------------- /src/Parameters/Ecommerce/ItemQuantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Ecommerce/ItemQuantity.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/Affiliation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/Affiliation.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/CheckoutStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/CheckoutStep.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/CheckoutStepOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/CheckoutStepOption.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/CouponCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/CouponCode.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/Product.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/ProductAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/ProductAction.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/ProductActionList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/ProductActionList.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/ProductCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/ProductCollection.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/ProductImpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/ProductImpression.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/ProductImpressionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/ProductImpressionCollection.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/ProductImpressionListName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/ProductImpressionListName.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/Promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/Promotion.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/PromotionAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/PromotionAction.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/PromotionCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/PromotionCollection.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/Revenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/Revenue.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/Shipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/Shipping.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/Tax.php -------------------------------------------------------------------------------- /src/Parameters/EnhancedEcommerce/TransactionId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/EnhancedEcommerce/TransactionId.php -------------------------------------------------------------------------------- /src/Parameters/Event/EventAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Event/EventAction.php -------------------------------------------------------------------------------- /src/Parameters/Event/EventCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Event/EventCategory.php -------------------------------------------------------------------------------- /src/Parameters/Event/EventLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Event/EventLabel.php -------------------------------------------------------------------------------- /src/Parameters/Event/EventValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Event/EventValue.php -------------------------------------------------------------------------------- /src/Parameters/Exceptions/ExceptionDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Exceptions/ExceptionDescription.php -------------------------------------------------------------------------------- /src/Parameters/Exceptions/IsExceptionFatal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Exceptions/IsExceptionFatal.php -------------------------------------------------------------------------------- /src/Parameters/General/AnonymizeIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/General/AnonymizeIp.php -------------------------------------------------------------------------------- /src/Parameters/General/CacheBuster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/General/CacheBuster.php -------------------------------------------------------------------------------- /src/Parameters/General/DataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/General/DataSource.php -------------------------------------------------------------------------------- /src/Parameters/General/ProtocolVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/General/ProtocolVersion.php -------------------------------------------------------------------------------- /src/Parameters/General/QueueTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/General/QueueTime.php -------------------------------------------------------------------------------- /src/Parameters/General/TrackingId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/General/TrackingId.php -------------------------------------------------------------------------------- /src/Parameters/Hit/HitType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Hit/HitType.php -------------------------------------------------------------------------------- /src/Parameters/Hit/NonInteractionHit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Hit/NonInteractionHit.php -------------------------------------------------------------------------------- /src/Parameters/Session/GeographicalOverride.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Session/GeographicalOverride.php -------------------------------------------------------------------------------- /src/Parameters/Session/IpOverride.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Session/IpOverride.php -------------------------------------------------------------------------------- /src/Parameters/Session/SessionControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Session/SessionControl.php -------------------------------------------------------------------------------- /src/Parameters/Session/UserAgentOverride.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Session/UserAgentOverride.php -------------------------------------------------------------------------------- /src/Parameters/SingleParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SingleParameter.php -------------------------------------------------------------------------------- /src/Parameters/SingleParameterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SingleParameterInterface.php -------------------------------------------------------------------------------- /src/Parameters/SocialInteractions/SocialAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SocialInteractions/SocialAction.php -------------------------------------------------------------------------------- /src/Parameters/SocialInteractions/SocialActionTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SocialInteractions/SocialActionTarget.php -------------------------------------------------------------------------------- /src/Parameters/SocialInteractions/SocialNetwork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SocialInteractions/SocialNetwork.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/DocumentEncoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/DocumentEncoding.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/FlashVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/FlashVersion.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/JavaEnabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/JavaEnabled.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/ScreenColors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/ScreenColors.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/ScreenResolution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/ScreenResolution.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/UserLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/UserLanguage.php -------------------------------------------------------------------------------- /src/Parameters/SystemInfo/ViewportSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/SystemInfo/ViewportSize.php -------------------------------------------------------------------------------- /src/Parameters/Timing/ContentLoadTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/ContentLoadTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/DnsTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/DnsTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/DomInteractiveTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/DomInteractiveTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/PageDownloadTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/PageDownloadTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/PageLoadTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/PageLoadTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/RedirectResponseTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/RedirectResponseTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/ServerResponseTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/ServerResponseTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/TcpConnectTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/TcpConnectTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/UserTimingCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/UserTimingCategory.php -------------------------------------------------------------------------------- /src/Parameters/Timing/UserTimingLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/UserTimingLabel.php -------------------------------------------------------------------------------- /src/Parameters/Timing/UserTimingTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/UserTimingTime.php -------------------------------------------------------------------------------- /src/Parameters/Timing/UserTimingVariableName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/Timing/UserTimingVariableName.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/CampaignContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/CampaignContent.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/CampaignId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/CampaignId.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/CampaignKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/CampaignKeyword.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/CampaignMedium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/CampaignMedium.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/CampaignName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/CampaignName.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/CampaignSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/CampaignSource.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/DocumentReferrer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/DocumentReferrer.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/GoogleAdwordsId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/GoogleAdwordsId.php -------------------------------------------------------------------------------- /src/Parameters/TrafficSources/GoogleDisplayAdsId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/TrafficSources/GoogleDisplayAdsId.php -------------------------------------------------------------------------------- /src/Parameters/User/ClientId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/User/ClientId.php -------------------------------------------------------------------------------- /src/Parameters/User/UserId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Parameters/User/UserId.php -------------------------------------------------------------------------------- /src/Traits/Indexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/src/Traits/Indexable.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/AnalyticsGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/AnalyticsGetTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/AnalyticsResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/AnalyticsResponseTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/AnalyticsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/AnalyticsTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/Network/HttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/Network/HttpClientTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/Network/PrepareUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/Network/PrepareUrlTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/Parameters/CompoundParameterCollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/Parameters/CompoundParameterCollectionTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/Parameters/CompoundParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/Parameters/CompoundParameterTest.php -------------------------------------------------------------------------------- /tests/TheIconic/Tracking/GoogleAnalytics/Parameters/SingleParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/TheIconic/Tracking/GoogleAnalytics/Parameters/SingleParameterTest.php -------------------------------------------------------------------------------- /tests/support/classes/CompoundParameterTestCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/classes/CompoundParameterTestCollection.php -------------------------------------------------------------------------------- /tests/support/classes/CompoundTestParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/classes/CompoundTestParameter.php -------------------------------------------------------------------------------- /tests/support/classes/InvalidCompoundParameterTestCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/classes/InvalidCompoundParameterTestCollection.php -------------------------------------------------------------------------------- /tests/support/classes/InvalidSingleTestParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/classes/InvalidSingleTestParameter.php -------------------------------------------------------------------------------- /tests/support/classes/SingleTestParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/classes/SingleTestParameter.php -------------------------------------------------------------------------------- /tests/support/classes/SingleTestParameterIndexed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/classes/SingleTestParameterIndexed.php -------------------------------------------------------------------------------- /tests/support/scripts/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theiconic/php-ga-measurement-protocol/HEAD/tests/support/scripts/bootstrap.php --------------------------------------------------------------------------------