├── .gitattributes
├── .github
└── workflows
│ ├── matomo-tests.yml
│ └── phpcs.yml
├── .gitignore
├── ApiQuotaHelper.php
├── CHANGELOG.md
├── CannotImportCustomDimensionException.php
├── CannotImportCustomDimensionGA4Exception.php
├── CannotImportGoalException.php
├── CannotProcessImportException.php
├── Commands
├── ArchiveImportedData.php
├── GenerateGaTestData.php
├── ImportGA4Reports.php
└── ImportReports.php
├── Controller.php
├── Diagnostic
├── RequiredExecutablesCheck.php
└── RequiredFunctionsCheck.php
├── Exceptions
└── CloudApiQuotaExceeded.php
├── Google
├── Authorization.php
├── AuthorizationGA4.php
├── DailyRateLimitReached.php
├── GoogleAnalyticsGA4QueryService.php
├── GoogleAnalyticsQueryService.php
├── GoogleCustomDimensionMapper.php
├── GoogleGA4CustomDimensionMapper.php
├── GoogleGA4GoalMapper.php
├── GoogleGA4MetricMapper.php
├── GoogleGA4QueryObjectFactory.php
├── GoogleGA4ResponseDataTableFactory.php
├── GoogleGoalMapper.php
├── GoogleMetricMapper.php
├── GoogleQueryObjectFactory.php
├── GoogleResponseDataTableFactory.php
├── HourlyRateLimitReached.php
└── SearchEngineMapper.php
├── GoogleAnalyticsImporter.php
├── IdMapper.php
├── ImportConfiguration.php
├── ImportLock.php
├── ImportStatus.php
├── ImportWasCancelledException.php
├── Importer.php
├── ImporterGA4.php
├── Importers
├── Actions
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── CustomDimensions
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── CustomVariables
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── DevicesDetection
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── Events
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── Goals
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── MarketingCampaignsReporting
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── Referrers
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── Resolution
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── UserCountry
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── UserLanguage
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── VisitFrequency
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── VisitTime
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── VisitorInterest
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
└── VisitsSummary
│ ├── RecordImporter.php
│ └── RecordImporterGA4.php
├── Input
├── EndDate.php
└── MaxEndDateReached.php
├── LICENSE
├── Logger
└── LogToSingleFileProcessor.php
├── Menu.php
├── Monolog
└── Handler
│ └── GASystemLogHandler.php
├── OutOfCustomDimensionsException.php
├── README.md
├── RecordImporter.php
├── RecordImporterGA4.php
├── RecordInserter.php
├── SiteContentDetection
└── GoogleAnalyticsImporter.php
├── TESTING.md
├── TESTINGGA4.md
├── Tasks.php
├── composer.json
├── composer.lock
├── config
└── config.php
├── images
└── ga-icon.svg
├── javascripts
├── configureImportNotification.js
└── googleAnalyticsImporter.js
├── lang
├── am.json
├── ar.json
├── az.json
├── be.json
├── bg.json
├── bn.json
├── bs.json
├── ca.json
├── cs.json
├── cy.json
├── da.json
├── de.json
├── dv.json
├── el.json
├── en.json
├── eo.json
├── es-ar.json
├── es.json
├── et.json
├── eu.json
├── fa.json
├── fi.json
├── fr.json
├── ga.json
├── gl.json
├── gu.json
├── he.json
├── hi.json
├── hr.json
├── hu.json
├── hy.json
├── id.json
├── is.json
├── it.json
├── ja.json
├── ka.json
├── ko.json
├── ku.json
├── lb.json
├── lt.json
├── lv.json
├── ms.json
├── nb.json
├── nl.json
├── nn.json
├── pl.json
├── pt-br.json
├── pt.json
├── ro.json
├── ru.json
├── si.json
├── sk.json
├── sl.json
├── sq.json
├── sr.json
├── sv.json
├── ta.json
├── te.json
├── th.json
├── tl.json
├── tr.json
├── tzm.json
├── uk.json
├── ur.json
├── vi.json
├── zh-cn.json
└── zh-tw.json
├── phpcs.xml
├── plugin.json
├── pull_request_template.md
├── scoper.inc.php
├── stylesheets
└── styles.less
├── templates
├── gaImportNoData.twig
└── index.twig
├── test.php
├── tests
├── Fixtures
│ ├── ImportedFromGoogle.php
│ ├── ImportedFromGoogleGA4.php
│ ├── MockApiResponses.php
│ └── MockApiResponsesGA4.php
├── Framework
│ ├── BaseRecordImporterTest.php
│ ├── CaptureRestTransport.php
│ ├── CapturingGoogleAdminServiceClientGA4.php
│ ├── CapturingGoogleClient.php
│ ├── CapturingGoogleClientGA4.php
│ ├── MockResponseAdminServiceClientGA4.php
│ ├── MockResponseBuilderGA4.php
│ ├── MockResponseClient.php
│ ├── MockResponseClientGA4.php
│ └── MockRestTransport.php
├── Integration
│ ├── DbBackOffTest.php
│ ├── Google
│ │ └── GoogleAnalyticsQueryServiceTest.php
│ ├── GoogleAnalyticsImporterTest.php
│ ├── ImportStatusTest.php
│ ├── ImporterTest.php
│ ├── ImporterTestGA4.php
│ ├── Importers
│ │ ├── Actions
│ │ │ └── RecordImporterTest.php
│ │ ├── CustomDimensions
│ │ │ └── RecordImporterTest.php
│ │ └── expected
│ │ │ ├── Actions_basicImport.xml
│ │ │ ├── Actions_basicImport_old.xml
│ │ │ ├── Actions_mobileApp.xml
│ │ │ ├── Actions_mobileApp_old.xml
│ │ │ ├── CustomDimensions_basicImport.xml
│ │ │ ├── CustomDimensions_basicImport_old.xml
│ │ │ ├── CustomDimensions_extraCustomDimensions.xml
│ │ │ ├── CustomDimensions_extraCustomDimensions_old.xml
│ │ │ ├── CustomDimensions_mobileApp.xml
│ │ │ └── CustomDimensions_mobileApp_old.xml
│ └── TasksTest.php
├── System
│ ├── CheckDirectDependencyUseCommandTest.php
│ ├── ImportTestGA4.php
│ └── expected
│ │ ├── test__5b1__Actions.getEntryPageTitles_year.xml
│ │ ├── test__5b1__Actions.getEntryPageUrls_year.xml
│ │ ├── test__5b1__Actions.getExitPageTitles_year.xml
│ │ ├── test__5b1__Actions.getExitPageUrls_year.xml
│ │ ├── test__5b1__Actions.getPageTitles_year.xml
│ │ ├── test__5b1__Actions.getPageUrls_year.xml
│ │ ├── test__5b1__Actions.getSiteSearchKeywords_year.xml
│ │ ├── test__5b1__DevicesDetection.getBrand_year.xml
│ │ ├── test__5b1__DevicesDetection.getBrowserEngines_year.xml
│ │ ├── test__5b1__DevicesDetection.getBrowserVersions_year.xml
│ │ ├── test__5b1__DevicesDetection.getBrowsers_year.xml
│ │ ├── test__5b1__DevicesDetection.getModel_year.xml
│ │ ├── test__5b1__DevicesDetection.getOsFamilies_year.xml
│ │ ├── test__5b1__DevicesDetection.getOsVersions_year.xml
│ │ ├── test__5b1__DevicesDetection.getType_year.xml
│ │ ├── test__5b1__Goals.getDaysToConversion_year.xml
│ │ ├── test__5b1__Goals.getGoals.xml
│ │ ├── test__5b1__Goals.getMetrics_year.xml
│ │ ├── test__5b1__Goals.getVisitsUntilConversion_year.xml
│ │ ├── test__5b1__Goals.get_year.xml
│ │ ├── test__5b1__Referrers.getReferrerType_year.xml
│ │ ├── test__5b1__Resolution.getConfiguration_year.xml
│ │ ├── test__5b1__Resolution.getResolution_year.xml
│ │ ├── test__5b1__UserCountry.getCity_year.xml
│ │ ├── test__5b1__UserCountry.getContinent_year.xml
│ │ ├── test__5b1__UserCountry.getCountry_year.xml
│ │ ├── test__5b1__UserCountry.getRegion_year.xml
│ │ ├── test__5b1__UserLanguage.getLanguageCode_year.xml
│ │ ├── test__5b1__UserLanguage.getLanguage_year.xml
│ │ ├── test__5b1__VisitFrequency.get_year.xml
│ │ ├── test__5b1__VisitTime.getByDayOfWeek_year.xml
│ │ ├── test__5b1__VisitTime.getVisitInformationPerLocalTime_year.xml
│ │ ├── test__5b1__VisitTime.getVisitInformationPerServerTime_year.xml
│ │ ├── test__5b1__VisitsSummary.getSumVisitsLength_year.xml
│ │ ├── test__5b1__VisitsSummary.getVisitsConverted_year.xml
│ │ ├── test__5b1__VisitsSummary.get_year.xml
│ │ ├── test__GA4__Actions.getDownload_day.xml
│ │ ├── test__GA4__Actions.getDownload_month.xml
│ │ ├── test__GA4__Actions.getDownload_week.xml
│ │ ├── test__GA4__Actions.getDownload_year.xml
│ │ ├── test__GA4__Actions.getDownloads_day.xml
│ │ ├── test__GA4__Actions.getDownloads_month.xml
│ │ ├── test__GA4__Actions.getDownloads_week.xml
│ │ ├── test__GA4__Actions.getDownloads_year.xml
│ │ ├── test__GA4__Actions.getEntryPageTitles_day.xml
│ │ ├── test__GA4__Actions.getEntryPageTitles_month.xml
│ │ ├── test__GA4__Actions.getEntryPageTitles_week.xml
│ │ ├── test__GA4__Actions.getEntryPageTitles_year.xml
│ │ ├── test__GA4__Actions.getEntryPageUrls_day.xml
│ │ ├── test__GA4__Actions.getEntryPageUrls_month.xml
│ │ ├── test__GA4__Actions.getEntryPageUrls_week.xml
│ │ ├── test__GA4__Actions.getEntryPageUrls_year.xml
│ │ ├── test__GA4__Actions.getExitPageTitles_day.xml
│ │ ├── test__GA4__Actions.getExitPageTitles_month.xml
│ │ ├── test__GA4__Actions.getExitPageTitles_week.xml
│ │ ├── test__GA4__Actions.getExitPageTitles_year.xml
│ │ ├── test__GA4__Actions.getExitPageUrls_day.xml
│ │ ├── test__GA4__Actions.getExitPageUrls_month.xml
│ │ ├── test__GA4__Actions.getExitPageUrls_week.xml
│ │ ├── test__GA4__Actions.getExitPageUrls_year.xml
│ │ ├── test__GA4__Actions.getOutlink_day.xml
│ │ ├── test__GA4__Actions.getOutlink_month.xml
│ │ ├── test__GA4__Actions.getOutlink_week.xml
│ │ ├── test__GA4__Actions.getOutlink_year.xml
│ │ ├── test__GA4__Actions.getOutlinks_day.xml
│ │ ├── test__GA4__Actions.getOutlinks_month.xml
│ │ ├── test__GA4__Actions.getOutlinks_week.xml
│ │ ├── test__GA4__Actions.getOutlinks_year.xml
│ │ ├── test__GA4__Actions.getPageTitle_day.xml
│ │ ├── test__GA4__Actions.getPageTitle_month.xml
│ │ ├── test__GA4__Actions.getPageTitle_week.xml
│ │ ├── test__GA4__Actions.getPageTitle_year.xml
│ │ ├── test__GA4__Actions.getPageTitlesFollowingSiteSearch_day.xml
│ │ ├── test__GA4__Actions.getPageTitlesFollowingSiteSearch_month.xml
│ │ ├── test__GA4__Actions.getPageTitlesFollowingSiteSearch_week.xml
│ │ ├── test__GA4__Actions.getPageTitlesFollowingSiteSearch_year.xml
│ │ ├── test__GA4__Actions.getPageTitles_day.xml
│ │ ├── test__GA4__Actions.getPageTitles_month.xml
│ │ ├── test__GA4__Actions.getPageTitles_week.xml
│ │ ├── test__GA4__Actions.getPageTitles_year.xml
│ │ ├── test__GA4__Actions.getPageUrl_day.xml
│ │ ├── test__GA4__Actions.getPageUrl_month.xml
│ │ ├── test__GA4__Actions.getPageUrl_week.xml
│ │ ├── test__GA4__Actions.getPageUrl_year.xml
│ │ ├── test__GA4__Actions.getPageUrlsFollowingSiteSearch_day.xml
│ │ ├── test__GA4__Actions.getPageUrlsFollowingSiteSearch_month.xml
│ │ ├── test__GA4__Actions.getPageUrlsFollowingSiteSearch_week.xml
│ │ ├── test__GA4__Actions.getPageUrlsFollowingSiteSearch_year.xml
│ │ ├── test__GA4__Actions.getPageUrls_day.xml
│ │ ├── test__GA4__Actions.getPageUrls_month.xml
│ │ ├── test__GA4__Actions.getPageUrls_week.xml
│ │ ├── test__GA4__Actions.getPageUrls_year.xml
│ │ ├── test__GA4__Actions.getSiteSearchCategories_day.xml
│ │ ├── test__GA4__Actions.getSiteSearchCategories_month.xml
│ │ ├── test__GA4__Actions.getSiteSearchCategories_week.xml
│ │ ├── test__GA4__Actions.getSiteSearchCategories_year.xml
│ │ ├── test__GA4__Actions.getSiteSearchKeywords_day.xml
│ │ ├── test__GA4__Actions.getSiteSearchKeywords_month.xml
│ │ ├── test__GA4__Actions.getSiteSearchKeywords_week.xml
│ │ ├── test__GA4__Actions.getSiteSearchKeywords_year.xml
│ │ ├── test__GA4__Actions.getSiteSearchNoResultKeywords_day.xml
│ │ ├── test__GA4__Actions.getSiteSearchNoResultKeywords_month.xml
│ │ ├── test__GA4__Actions.getSiteSearchNoResultKeywords_week.xml
│ │ ├── test__GA4__Actions.getSiteSearchNoResultKeywords_year.xml
│ │ ├── test__GA4__Actions.get_day.xml
│ │ ├── test__GA4__Actions.get_month.xml
│ │ ├── test__GA4__Actions.get_week.xml
│ │ ├── test__GA4__Actions.get_year.xml
│ │ ├── test__GA4__CustomDimensions.getAvailableExtractionDimensions.xml
│ │ ├── test__GA4__CustomDimensions.getAvailableScopes.xml
│ │ ├── test__GA4__CustomDimensions.getConfiguredCustomDimensions.xml
│ │ ├── test__GA4__CustomVariables.getCustomVariables_day.xml
│ │ ├── test__GA4__CustomVariables.getCustomVariables_month.xml
│ │ ├── test__GA4__CustomVariables.getCustomVariables_week.xml
│ │ ├── test__GA4__CustomVariables.getCustomVariables_year.xml
│ │ ├── test__GA4__CustomVariables.getUsagesOfSlots.xml
│ │ ├── test__GA4__DevicesDetection.getBrand_day.xml
│ │ ├── test__GA4__DevicesDetection.getBrand_month.xml
│ │ ├── test__GA4__DevicesDetection.getBrand_week.xml
│ │ ├── test__GA4__DevicesDetection.getBrand_year.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserEngines_day.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserEngines_month.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserEngines_week.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserEngines_year.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserVersions_day.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserVersions_month.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserVersions_week.xml
│ │ ├── test__GA4__DevicesDetection.getBrowserVersions_year.xml
│ │ ├── test__GA4__DevicesDetection.getBrowsers_day.xml
│ │ ├── test__GA4__DevicesDetection.getBrowsers_month.xml
│ │ ├── test__GA4__DevicesDetection.getBrowsers_week.xml
│ │ ├── test__GA4__DevicesDetection.getBrowsers_year.xml
│ │ ├── test__GA4__DevicesDetection.getModel_day.xml
│ │ ├── test__GA4__DevicesDetection.getModel_month.xml
│ │ ├── test__GA4__DevicesDetection.getModel_week.xml
│ │ ├── test__GA4__DevicesDetection.getModel_year.xml
│ │ ├── test__GA4__DevicesDetection.getOsFamilies_day.xml
│ │ ├── test__GA4__DevicesDetection.getOsFamilies_month.xml
│ │ ├── test__GA4__DevicesDetection.getOsFamilies_week.xml
│ │ ├── test__GA4__DevicesDetection.getOsFamilies_year.xml
│ │ ├── test__GA4__DevicesDetection.getOsVersions_day.xml
│ │ ├── test__GA4__DevicesDetection.getOsVersions_month.xml
│ │ ├── test__GA4__DevicesDetection.getOsVersions_week.xml
│ │ ├── test__GA4__DevicesDetection.getOsVersions_year.xml
│ │ ├── test__GA4__DevicesDetection.getType_day.xml
│ │ ├── test__GA4__DevicesDetection.getType_month.xml
│ │ ├── test__GA4__DevicesDetection.getType_week.xml
│ │ ├── test__GA4__DevicesDetection.getType_year.xml
│ │ ├── test__GA4__Events.getAction_day.xml
│ │ ├── test__GA4__Events.getAction_month.xml
│ │ ├── test__GA4__Events.getAction_week.xml
│ │ ├── test__GA4__Events.getAction_year.xml
│ │ ├── test__GA4__Events.getCategory_day.xml
│ │ ├── test__GA4__Events.getCategory_month.xml
│ │ ├── test__GA4__Events.getCategory_week.xml
│ │ ├── test__GA4__Events.getCategory_year.xml
│ │ ├── test__GA4__Events.getName_day.xml
│ │ ├── test__GA4__Events.getName_month.xml
│ │ ├── test__GA4__Events.getName_week.xml
│ │ ├── test__GA4__Events.getName_year.xml
│ │ ├── test__GA4__Goals.getDaysToConversion_day.xml
│ │ ├── test__GA4__Goals.getDaysToConversion_month.xml
│ │ ├── test__GA4__Goals.getDaysToConversion_week.xml
│ │ ├── test__GA4__Goals.getDaysToConversion_year.xml
│ │ ├── test__GA4__Goals.getGoals.xml
│ │ ├── test__GA4__Goals.getItemsCategory_day.xml
│ │ ├── test__GA4__Goals.getItemsCategory_month.xml
│ │ ├── test__GA4__Goals.getItemsCategory_week.xml
│ │ ├── test__GA4__Goals.getItemsCategory_year.xml
│ │ ├── test__GA4__Goals.getItemsName_day.xml
│ │ ├── test__GA4__Goals.getItemsName_month.xml
│ │ ├── test__GA4__Goals.getItemsName_week.xml
│ │ ├── test__GA4__Goals.getItemsName_year.xml
│ │ ├── test__GA4__Goals.getItemsSku_day.xml
│ │ ├── test__GA4__Goals.getItemsSku_month.xml
│ │ ├── test__GA4__Goals.getItemsSku_week.xml
│ │ ├── test__GA4__Goals.getItemsSku_year.xml
│ │ ├── test__GA4__Goals.getMetrics_day.xml
│ │ ├── test__GA4__Goals.getMetrics_month.xml
│ │ ├── test__GA4__Goals.getMetrics_week.xml
│ │ ├── test__GA4__Goals.getMetrics_year.xml
│ │ ├── test__GA4__Goals.getVisitsUntilConversion_day.xml
│ │ ├── test__GA4__Goals.getVisitsUntilConversion_month.xml
│ │ ├── test__GA4__Goals.getVisitsUntilConversion_week.xml
│ │ ├── test__GA4__Goals.getVisitsUntilConversion_year.xml
│ │ ├── test__GA4__Goals.get_day.xml
│ │ ├── test__GA4__Goals.get_month.xml
│ │ ├── test__GA4__Goals.get_week.xml
│ │ ├── test__GA4__Goals.get_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getContent_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getContent_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getContent_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getContent_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getGroup_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getGroup_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getGroup_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getGroup_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getId_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getId_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getId_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getId_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getKeyword_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getKeyword_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getKeyword_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getKeyword_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getMedium_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getMedium_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getMedium_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getMedium_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getName_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getName_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getName_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getName_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getPlacement_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getPlacement_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getPlacement_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getPlacement_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSourceMedium_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSourceMedium_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSourceMedium_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSourceMedium_year.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSource_day.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSource_month.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSource_week.xml
│ │ ├── test__GA4__MarketingCampaignsReporting.getSource_year.xml
│ │ ├── test__GA4__Referrers.getAll_day.xml
│ │ ├── test__GA4__Referrers.getAll_month.xml
│ │ ├── test__GA4__Referrers.getAll_week.xml
│ │ ├── test__GA4__Referrers.getAll_year.xml
│ │ ├── test__GA4__Referrers.getCampaigns_day.xml
│ │ ├── test__GA4__Referrers.getCampaigns_month.xml
│ │ ├── test__GA4__Referrers.getCampaigns_week.xml
│ │ ├── test__GA4__Referrers.getCampaigns_year.xml
│ │ ├── test__GA4__Referrers.getKeywords_day.xml
│ │ ├── test__GA4__Referrers.getKeywords_month.xml
│ │ ├── test__GA4__Referrers.getKeywords_week.xml
│ │ ├── test__GA4__Referrers.getKeywords_year.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctCampaigns_day.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctCampaigns_month.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctCampaigns_week.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctCampaigns_year.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctKeywords_day.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctKeywords_month.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctKeywords_week.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctKeywords_year.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSearchEngines_day.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSearchEngines_month.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSearchEngines_week.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSearchEngines_year.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSocialNetworks_day.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSocialNetworks_month.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSocialNetworks_week.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctSocialNetworks_year.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsitesUrls_day.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsitesUrls_month.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsitesUrls_week.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsitesUrls_year.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsites_day.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsites_month.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsites_week.xml
│ │ ├── test__GA4__Referrers.getNumberOfDistinctWebsites_year.xml
│ │ ├── test__GA4__Referrers.getReferrerType_day.xml
│ │ ├── test__GA4__Referrers.getReferrerType_month.xml
│ │ ├── test__GA4__Referrers.getReferrerType_week.xml
│ │ ├── test__GA4__Referrers.getReferrerType_year.xml
│ │ ├── test__GA4__Referrers.getSearchEngines_day.xml
│ │ ├── test__GA4__Referrers.getSearchEngines_month.xml
│ │ ├── test__GA4__Referrers.getSearchEngines_week.xml
│ │ ├── test__GA4__Referrers.getSearchEngines_year.xml
│ │ ├── test__GA4__Referrers.getSocials_day.xml
│ │ ├── test__GA4__Referrers.getSocials_month.xml
│ │ ├── test__GA4__Referrers.getSocials_week.xml
│ │ ├── test__GA4__Referrers.getSocials_year.xml
│ │ ├── test__GA4__Referrers.getUrlsForSocial_day.xml
│ │ ├── test__GA4__Referrers.getUrlsForSocial_month.xml
│ │ ├── test__GA4__Referrers.getUrlsForSocial_week.xml
│ │ ├── test__GA4__Referrers.getUrlsForSocial_year.xml
│ │ ├── test__GA4__Referrers.getWebsites_day.xml
│ │ ├── test__GA4__Referrers.getWebsites_month.xml
│ │ ├── test__GA4__Referrers.getWebsites_week.xml
│ │ ├── test__GA4__Referrers.getWebsites_year.xml
│ │ ├── test__GA4__Referrers.get_day.xml
│ │ ├── test__GA4__Referrers.get_month.xml
│ │ ├── test__GA4__Referrers.get_week.xml
│ │ ├── test__GA4__Referrers.get_year.xml
│ │ ├── test__GA4__Resolution.getConfiguration_day.xml
│ │ ├── test__GA4__Resolution.getConfiguration_month.xml
│ │ ├── test__GA4__Resolution.getConfiguration_week.xml
│ │ ├── test__GA4__Resolution.getConfiguration_year.xml
│ │ ├── test__GA4__Resolution.getResolution_day.xml
│ │ ├── test__GA4__Resolution.getResolution_month.xml
│ │ ├── test__GA4__Resolution.getResolution_week.xml
│ │ ├── test__GA4__Resolution.getResolution_year.xml
│ │ ├── test__GA4__UserCountry.getCity_day.xml
│ │ ├── test__GA4__UserCountry.getCity_month.xml
│ │ ├── test__GA4__UserCountry.getCity_week.xml
│ │ ├── test__GA4__UserCountry.getCity_year.xml
│ │ ├── test__GA4__UserCountry.getContinent_day.xml
│ │ ├── test__GA4__UserCountry.getContinent_month.xml
│ │ ├── test__GA4__UserCountry.getContinent_week.xml
│ │ ├── test__GA4__UserCountry.getContinent_year.xml
│ │ ├── test__GA4__UserCountry.getCountry_day.xml
│ │ ├── test__GA4__UserCountry.getCountry_month.xml
│ │ ├── test__GA4__UserCountry.getCountry_week.xml
│ │ ├── test__GA4__UserCountry.getCountry_year.xml
│ │ ├── test__GA4__UserCountry.getNumberOfDistinctCountries_day.xml
│ │ ├── test__GA4__UserCountry.getNumberOfDistinctCountries_month.xml
│ │ ├── test__GA4__UserCountry.getNumberOfDistinctCountries_week.xml
│ │ ├── test__GA4__UserCountry.getNumberOfDistinctCountries_year.xml
│ │ ├── test__GA4__UserCountry.getRegion_day.xml
│ │ ├── test__GA4__UserCountry.getRegion_month.xml
│ │ ├── test__GA4__UserCountry.getRegion_week.xml
│ │ ├── test__GA4__UserCountry.getRegion_year.xml
│ │ ├── test__GA4__UserLanguage.getLanguageCode_day.xml
│ │ ├── test__GA4__UserLanguage.getLanguageCode_month.xml
│ │ ├── test__GA4__UserLanguage.getLanguageCode_week.xml
│ │ ├── test__GA4__UserLanguage.getLanguageCode_year.xml
│ │ ├── test__GA4__UserLanguage.getLanguage_day.xml
│ │ ├── test__GA4__UserLanguage.getLanguage_month.xml
│ │ ├── test__GA4__UserLanguage.getLanguage_week.xml
│ │ ├── test__GA4__UserLanguage.getLanguage_year.xml
│ │ ├── test__GA4__VisitFrequency.get_day.xml
│ │ ├── test__GA4__VisitFrequency.get_month.xml
│ │ ├── test__GA4__VisitFrequency.get_week.xml
│ │ ├── test__GA4__VisitFrequency.get_year.xml
│ │ ├── test__GA4__VisitTime.getByDayOfWeek_day.xml
│ │ ├── test__GA4__VisitTime.getByDayOfWeek_month.xml
│ │ ├── test__GA4__VisitTime.getByDayOfWeek_week.xml
│ │ ├── test__GA4__VisitTime.getByDayOfWeek_year.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerLocalTime_day.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerLocalTime_month.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerLocalTime_week.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerLocalTime_year.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerServerTime_day.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerServerTime_month.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerServerTime_week.xml
│ │ ├── test__GA4__VisitTime.getVisitInformationPerServerTime_year.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByDaysSinceLast_day.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByDaysSinceLast_month.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByDaysSinceLast_week.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByDaysSinceLast_year.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByVisitCount_day.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByVisitCount_month.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByVisitCount_week.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsByVisitCount_year.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerPage_day.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerPage_month.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerPage_week.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerPage_year.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerVisitDuration_day.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerVisitDuration_month.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerVisitDuration_week.xml
│ │ ├── test__GA4__VisitorInterest.getNumberOfVisitsPerVisitDuration_year.xml
│ │ ├── test__GA4__VisitsSummary.getActions_day.xml
│ │ ├── test__GA4__VisitsSummary.getActions_month.xml
│ │ ├── test__GA4__VisitsSummary.getActions_week.xml
│ │ ├── test__GA4__VisitsSummary.getActions_year.xml
│ │ ├── test__GA4__VisitsSummary.getBounceCount_day.xml
│ │ ├── test__GA4__VisitsSummary.getBounceCount_month.xml
│ │ ├── test__GA4__VisitsSummary.getBounceCount_week.xml
│ │ ├── test__GA4__VisitsSummary.getBounceCount_year.xml
│ │ ├── test__GA4__VisitsSummary.getMaxActions_day.xml
│ │ ├── test__GA4__VisitsSummary.getMaxActions_month.xml
│ │ ├── test__GA4__VisitsSummary.getMaxActions_week.xml
│ │ ├── test__GA4__VisitsSummary.getMaxActions_year.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLengthPretty_day.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLengthPretty_month.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLengthPretty_week.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLengthPretty_year.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLength_day.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLength_month.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLength_week.xml
│ │ ├── test__GA4__VisitsSummary.getSumVisitsLength_year.xml
│ │ ├── test__GA4__VisitsSummary.getUniqueVisitors_day.xml
│ │ ├── test__GA4__VisitsSummary.getUniqueVisitors_month.xml
│ │ ├── test__GA4__VisitsSummary.getUniqueVisitors_week.xml
│ │ ├── test__GA4__VisitsSummary.getUniqueVisitors_year.xml
│ │ ├── test__GA4__VisitsSummary.getUsers_day.xml
│ │ ├── test__GA4__VisitsSummary.getUsers_month.xml
│ │ ├── test__GA4__VisitsSummary.getUsers_week.xml
│ │ ├── test__GA4__VisitsSummary.getUsers_year.xml
│ │ ├── test__GA4__VisitsSummary.getVisitsConverted_day.xml
│ │ ├── test__GA4__VisitsSummary.getVisitsConverted_month.xml
│ │ ├── test__GA4__VisitsSummary.getVisitsConverted_week.xml
│ │ ├── test__GA4__VisitsSummary.getVisitsConverted_year.xml
│ │ ├── test__GA4__VisitsSummary.getVisits_day.xml
│ │ ├── test__GA4__VisitsSummary.getVisits_month.xml
│ │ ├── test__GA4__VisitsSummary.getVisits_week.xml
│ │ ├── test__GA4__VisitsSummary.getVisits_year.xml
│ │ ├── test__GA4__VisitsSummary.get_day.xml
│ │ ├── test__GA4__VisitsSummary.get_month.xml
│ │ ├── test__GA4__VisitsSummary.get_week.xml
│ │ ├── test__GA4__VisitsSummary.get_year.xml
│ │ ├── test__GA4_action__CustomDimensions.getCustomDimension_day.xml
│ │ ├── test__GA4_action__CustomDimensions.getCustomDimension_month.xml
│ │ ├── test__GA4_action__CustomDimensions.getCustomDimension_week.xml
│ │ ├── test__GA4_action__CustomDimensions.getCustomDimension_year.xml
│ │ ├── test__GA4_aggregatedWithTrackedVisit__VisitsSummary.get_week.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getDaysToConversion_day.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getDaysToConversion_month.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getDaysToConversion_week.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getDaysToConversion_year.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_day.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_month.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_week.xml
│ │ ├── test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_year.xml
│ │ ├── test__GA4_extraCustomDim__CustomDimensions.getCustomDimension_day.xml
│ │ ├── test__GA4_extraCustomDim__CustomDimensions.getCustomDimension_month.xml
│ │ ├── test__GA4_extraCustomDim__CustomDimensions.getCustomDimension_week.xml
│ │ ├── test__GA4_extraCustomDim__CustomDimensions.getCustomDimension_year.xml
│ │ ├── test__GA4_flat__Referrers.getSearchEngines_day.xml
│ │ ├── test__GA4_visit__CustomDimensions.getCustomDimension_day.xml
│ │ ├── test__GA4_visit__CustomDimensions.getCustomDimension_month.xml
│ │ ├── test__GA4_visit__CustomDimensions.getCustomDimension_week.xml
│ │ ├── test__GA4_visit__CustomDimensions.getCustomDimension_year.xml
│ │ ├── test___Actions.getDownload_day.xml
│ │ ├── test___Actions.getDownload_month.xml
│ │ ├── test___Actions.getDownload_week.xml
│ │ ├── test___Actions.getDownload_year.xml
│ │ ├── test___Actions.getDownloads_day.xml
│ │ ├── test___Actions.getDownloads_month.xml
│ │ ├── test___Actions.getDownloads_week.xml
│ │ ├── test___Actions.getDownloads_year.xml
│ │ ├── test___Actions.getEntryPageTitles_day.xml
│ │ ├── test___Actions.getEntryPageTitles_month.xml
│ │ ├── test___Actions.getEntryPageTitles_week.xml
│ │ ├── test___Actions.getEntryPageTitles_year.xml
│ │ ├── test___Actions.getEntryPageUrls_day.xml
│ │ ├── test___Actions.getEntryPageUrls_month.xml
│ │ ├── test___Actions.getEntryPageUrls_week.xml
│ │ ├── test___Actions.getEntryPageUrls_year.xml
│ │ ├── test___Actions.getExitPageTitles_day.xml
│ │ ├── test___Actions.getExitPageTitles_month.xml
│ │ ├── test___Actions.getExitPageTitles_week.xml
│ │ ├── test___Actions.getExitPageTitles_year.xml
│ │ ├── test___Actions.getExitPageUrls_day.xml
│ │ ├── test___Actions.getExitPageUrls_month.xml
│ │ ├── test___Actions.getExitPageUrls_week.xml
│ │ ├── test___Actions.getExitPageUrls_year.xml
│ │ ├── test___Actions.getOutlink_day.xml
│ │ ├── test___Actions.getOutlink_month.xml
│ │ ├── test___Actions.getOutlink_week.xml
│ │ ├── test___Actions.getOutlink_year.xml
│ │ ├── test___Actions.getOutlinks_day.xml
│ │ ├── test___Actions.getOutlinks_month.xml
│ │ ├── test___Actions.getOutlinks_week.xml
│ │ ├── test___Actions.getOutlinks_year.xml
│ │ ├── test___Actions.getPageTitle_day.xml
│ │ ├── test___Actions.getPageTitle_month.xml
│ │ ├── test___Actions.getPageTitle_week.xml
│ │ ├── test___Actions.getPageTitle_year.xml
│ │ ├── test___Actions.getPageTitlesFollowingSiteSearch_day.xml
│ │ ├── test___Actions.getPageTitlesFollowingSiteSearch_month.xml
│ │ ├── test___Actions.getPageTitlesFollowingSiteSearch_week.xml
│ │ ├── test___Actions.getPageTitlesFollowingSiteSearch_year.xml
│ │ ├── test___Actions.getPageTitles_day.xml
│ │ ├── test___Actions.getPageTitles_month.xml
│ │ ├── test___Actions.getPageTitles_week.xml
│ │ ├── test___Actions.getPageTitles_year.xml
│ │ ├── test___Actions.getPageUrl_day.xml
│ │ ├── test___Actions.getPageUrl_month.xml
│ │ ├── test___Actions.getPageUrl_week.xml
│ │ ├── test___Actions.getPageUrl_year.xml
│ │ ├── test___Actions.getPageUrlsFollowingSiteSearch_day.xml
│ │ ├── test___Actions.getPageUrlsFollowingSiteSearch_month.xml
│ │ ├── test___Actions.getPageUrlsFollowingSiteSearch_week.xml
│ │ ├── test___Actions.getPageUrlsFollowingSiteSearch_year.xml
│ │ ├── test___Actions.getPageUrls_day.xml
│ │ ├── test___Actions.getPageUrls_month.xml
│ │ ├── test___Actions.getPageUrls_week.xml
│ │ ├── test___Actions.getPageUrls_year.xml
│ │ ├── test___Actions.getSiteSearchCategories_day.xml
│ │ ├── test___Actions.getSiteSearchCategories_month.xml
│ │ ├── test___Actions.getSiteSearchCategories_week.xml
│ │ ├── test___Actions.getSiteSearchCategories_year.xml
│ │ ├── test___Actions.getSiteSearchKeywords_day.xml
│ │ ├── test___Actions.getSiteSearchKeywords_month.xml
│ │ ├── test___Actions.getSiteSearchKeywords_week.xml
│ │ ├── test___Actions.getSiteSearchKeywords_year.xml
│ │ ├── test___Actions.getSiteSearchNoResultKeywords_day.xml
│ │ ├── test___Actions.getSiteSearchNoResultKeywords_month.xml
│ │ ├── test___Actions.getSiteSearchNoResultKeywords_week.xml
│ │ ├── test___Actions.getSiteSearchNoResultKeywords_year.xml
│ │ ├── test___Actions.get_day.xml
│ │ ├── test___Actions.get_month.xml
│ │ ├── test___Actions.get_week.xml
│ │ ├── test___Actions.get_year.xml
│ │ ├── test___CustomDimensions.getAvailableExtractionDimensions.xml
│ │ ├── test___CustomDimensions.getAvailableScopes.xml
│ │ ├── test___CustomDimensions.getConfiguredCustomDimensions.xml
│ │ ├── test___CustomVariables.getCustomVariables_day.xml
│ │ ├── test___CustomVariables.getCustomVariables_month.xml
│ │ ├── test___CustomVariables.getCustomVariables_week.xml
│ │ ├── test___CustomVariables.getCustomVariables_year.xml
│ │ ├── test___CustomVariables.getUsagesOfSlots.xml
│ │ ├── test___DevicesDetection.getBrand_day.xml
│ │ ├── test___DevicesDetection.getBrand_month.xml
│ │ ├── test___DevicesDetection.getBrand_week.xml
│ │ ├── test___DevicesDetection.getBrand_year.xml
│ │ ├── test___DevicesDetection.getBrowserEngines_day.xml
│ │ ├── test___DevicesDetection.getBrowserEngines_month.xml
│ │ ├── test___DevicesDetection.getBrowserEngines_week.xml
│ │ ├── test___DevicesDetection.getBrowserEngines_year.xml
│ │ ├── test___DevicesDetection.getBrowserFamilies_day.xml
│ │ ├── test___DevicesDetection.getBrowserFamilies_month.xml
│ │ ├── test___DevicesDetection.getBrowserFamilies_week.xml
│ │ ├── test___DevicesDetection.getBrowserFamilies_year.xml
│ │ ├── test___DevicesDetection.getBrowserVersions_day.xml
│ │ ├── test___DevicesDetection.getBrowserVersions_month.xml
│ │ ├── test___DevicesDetection.getBrowserVersions_week.xml
│ │ ├── test___DevicesDetection.getBrowserVersions_year.xml
│ │ ├── test___DevicesDetection.getBrowsers_day.xml
│ │ ├── test___DevicesDetection.getBrowsers_month.xml
│ │ ├── test___DevicesDetection.getBrowsers_week.xml
│ │ ├── test___DevicesDetection.getBrowsers_year.xml
│ │ ├── test___DevicesDetection.getModel_day.xml
│ │ ├── test___DevicesDetection.getModel_month.xml
│ │ ├── test___DevicesDetection.getModel_week.xml
│ │ ├── test___DevicesDetection.getModel_year.xml
│ │ ├── test___DevicesDetection.getOsFamilies_day.xml
│ │ ├── test___DevicesDetection.getOsFamilies_month.xml
│ │ ├── test___DevicesDetection.getOsFamilies_week.xml
│ │ ├── test___DevicesDetection.getOsFamilies_year.xml
│ │ ├── test___DevicesDetection.getOsVersions_day.xml
│ │ ├── test___DevicesDetection.getOsVersions_month.xml
│ │ ├── test___DevicesDetection.getOsVersions_week.xml
│ │ ├── test___DevicesDetection.getOsVersions_year.xml
│ │ ├── test___DevicesDetection.getType_day.xml
│ │ ├── test___DevicesDetection.getType_month.xml
│ │ ├── test___DevicesDetection.getType_week.xml
│ │ ├── test___DevicesDetection.getType_year.xml
│ │ ├── test___Events.getAction_day.xml
│ │ ├── test___Events.getAction_month.xml
│ │ ├── test___Events.getAction_week.xml
│ │ ├── test___Events.getAction_year.xml
│ │ ├── test___Events.getCategory_day.xml
│ │ ├── test___Events.getCategory_month.xml
│ │ ├── test___Events.getCategory_week.xml
│ │ ├── test___Events.getCategory_year.xml
│ │ ├── test___Events.getName_day.xml
│ │ ├── test___Events.getName_month.xml
│ │ ├── test___Events.getName_week.xml
│ │ ├── test___Events.getName_year.xml
│ │ ├── test___Goals.getDaysToConversion_day.xml
│ │ ├── test___Goals.getDaysToConversion_month.xml
│ │ ├── test___Goals.getDaysToConversion_week.xml
│ │ ├── test___Goals.getDaysToConversion_year.xml
│ │ ├── test___Goals.getGoals.xml
│ │ ├── test___Goals.getItemsCategory_day.xml
│ │ ├── test___Goals.getItemsCategory_month.xml
│ │ ├── test___Goals.getItemsCategory_week.xml
│ │ ├── test___Goals.getItemsCategory_year.xml
│ │ ├── test___Goals.getItemsName_day.xml
│ │ ├── test___Goals.getItemsName_month.xml
│ │ ├── test___Goals.getItemsName_week.xml
│ │ ├── test___Goals.getItemsName_year.xml
│ │ ├── test___Goals.getItemsSku_day.xml
│ │ ├── test___Goals.getItemsSku_month.xml
│ │ ├── test___Goals.getItemsSku_week.xml
│ │ ├── test___Goals.getItemsSku_year.xml
│ │ ├── test___Goals.getMetrics_day.xml
│ │ ├── test___Goals.getMetrics_month.xml
│ │ ├── test___Goals.getMetrics_week.xml
│ │ ├── test___Goals.getMetrics_year.xml
│ │ ├── test___Goals.getVisitsUntilConversion_day.xml
│ │ ├── test___Goals.getVisitsUntilConversion_month.xml
│ │ ├── test___Goals.getVisitsUntilConversion_week.xml
│ │ ├── test___Goals.getVisitsUntilConversion_year.xml
│ │ ├── test___Goals.get_day.xml
│ │ ├── test___Goals.get_month.xml
│ │ ├── test___Goals.get_week.xml
│ │ ├── test___Goals.get_year.xml
│ │ ├── test___MarketingCampaignsReporting.getContent_day.xml
│ │ ├── test___MarketingCampaignsReporting.getContent_month.xml
│ │ ├── test___MarketingCampaignsReporting.getContent_week.xml
│ │ ├── test___MarketingCampaignsReporting.getContent_year.xml
│ │ ├── test___MarketingCampaignsReporting.getGroup_day.xml
│ │ ├── test___MarketingCampaignsReporting.getGroup_month.xml
│ │ ├── test___MarketingCampaignsReporting.getGroup_week.xml
│ │ ├── test___MarketingCampaignsReporting.getGroup_year.xml
│ │ ├── test___MarketingCampaignsReporting.getId_day.xml
│ │ ├── test___MarketingCampaignsReporting.getId_month.xml
│ │ ├── test___MarketingCampaignsReporting.getId_week.xml
│ │ ├── test___MarketingCampaignsReporting.getId_year.xml
│ │ ├── test___MarketingCampaignsReporting.getKeyword_day.xml
│ │ ├── test___MarketingCampaignsReporting.getKeyword_month.xml
│ │ ├── test___MarketingCampaignsReporting.getKeyword_week.xml
│ │ ├── test___MarketingCampaignsReporting.getKeyword_year.xml
│ │ ├── test___MarketingCampaignsReporting.getMedium_day.xml
│ │ ├── test___MarketingCampaignsReporting.getMedium_month.xml
│ │ ├── test___MarketingCampaignsReporting.getMedium_week.xml
│ │ ├── test___MarketingCampaignsReporting.getMedium_year.xml
│ │ ├── test___MarketingCampaignsReporting.getName_day.xml
│ │ ├── test___MarketingCampaignsReporting.getName_month.xml
│ │ ├── test___MarketingCampaignsReporting.getName_week.xml
│ │ ├── test___MarketingCampaignsReporting.getName_year.xml
│ │ ├── test___MarketingCampaignsReporting.getPlacement_day.xml
│ │ ├── test___MarketingCampaignsReporting.getPlacement_month.xml
│ │ ├── test___MarketingCampaignsReporting.getPlacement_week.xml
│ │ ├── test___MarketingCampaignsReporting.getPlacement_year.xml
│ │ ├── test___MarketingCampaignsReporting.getSourceMedium_day.xml
│ │ ├── test___MarketingCampaignsReporting.getSourceMedium_month.xml
│ │ ├── test___MarketingCampaignsReporting.getSourceMedium_week.xml
│ │ ├── test___MarketingCampaignsReporting.getSourceMedium_year.xml
│ │ ├── test___MarketingCampaignsReporting.getSource_day.xml
│ │ ├── test___MarketingCampaignsReporting.getSource_month.xml
│ │ ├── test___MarketingCampaignsReporting.getSource_week.xml
│ │ ├── test___MarketingCampaignsReporting.getSource_year.xml
│ │ ├── test___Referrers.getAll_day.xml
│ │ ├── test___Referrers.getAll_month.xml
│ │ ├── test___Referrers.getAll_week.xml
│ │ ├── test___Referrers.getAll_year.xml
│ │ ├── test___Referrers.getCampaigns_day.xml
│ │ ├── test___Referrers.getCampaigns_month.xml
│ │ ├── test___Referrers.getCampaigns_week.xml
│ │ ├── test___Referrers.getCampaigns_year.xml
│ │ ├── test___Referrers.getKeywordsForPageUrl_day.xml
│ │ ├── test___Referrers.getKeywordsForPageUrl_month.xml
│ │ ├── test___Referrers.getKeywordsForPageUrl_week.xml
│ │ ├── test___Referrers.getKeywordsForPageUrl_year.xml
│ │ ├── test___Referrers.getKeywords_day.xml
│ │ ├── test___Referrers.getKeywords_month.xml
│ │ ├── test___Referrers.getKeywords_week.xml
│ │ ├── test___Referrers.getKeywords_year.xml
│ │ ├── test___Referrers.getNumberOfDistinctCampaigns_day.xml
│ │ ├── test___Referrers.getNumberOfDistinctCampaigns_month.xml
│ │ ├── test___Referrers.getNumberOfDistinctCampaigns_week.xml
│ │ ├── test___Referrers.getNumberOfDistinctCampaigns_year.xml
│ │ ├── test___Referrers.getNumberOfDistinctKeywords_day.xml
│ │ ├── test___Referrers.getNumberOfDistinctKeywords_month.xml
│ │ ├── test___Referrers.getNumberOfDistinctKeywords_week.xml
│ │ ├── test___Referrers.getNumberOfDistinctKeywords_year.xml
│ │ ├── test___Referrers.getNumberOfDistinctSearchEngines_day.xml
│ │ ├── test___Referrers.getNumberOfDistinctSearchEngines_month.xml
│ │ ├── test___Referrers.getNumberOfDistinctSearchEngines_week.xml
│ │ ├── test___Referrers.getNumberOfDistinctSearchEngines_year.xml
│ │ ├── test___Referrers.getNumberOfDistinctSocialNetworks_day.xml
│ │ ├── test___Referrers.getNumberOfDistinctSocialNetworks_month.xml
│ │ ├── test___Referrers.getNumberOfDistinctSocialNetworks_week.xml
│ │ ├── test___Referrers.getNumberOfDistinctSocialNetworks_year.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsitesUrls_day.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsitesUrls_month.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsitesUrls_week.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsitesUrls_year.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsites_day.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsites_month.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsites_week.xml
│ │ ├── test___Referrers.getNumberOfDistinctWebsites_year.xml
│ │ ├── test___Referrers.getReferrerType_day.xml
│ │ ├── test___Referrers.getReferrerType_month.xml
│ │ ├── test___Referrers.getReferrerType_week.xml
│ │ ├── test___Referrers.getReferrerType_year.xml
│ │ ├── test___Referrers.getSearchEngines_day.xml
│ │ ├── test___Referrers.getSearchEngines_month.xml
│ │ ├── test___Referrers.getSearchEngines_week.xml
│ │ ├── test___Referrers.getSearchEngines_year.xml
│ │ ├── test___Referrers.getSocials_day.xml
│ │ ├── test___Referrers.getSocials_month.xml
│ │ ├── test___Referrers.getSocials_week.xml
│ │ ├── test___Referrers.getSocials_year.xml
│ │ ├── test___Referrers.getUrlsForSocial_day.xml
│ │ ├── test___Referrers.getUrlsForSocial_month.xml
│ │ ├── test___Referrers.getUrlsForSocial_week.xml
│ │ ├── test___Referrers.getUrlsForSocial_year.xml
│ │ ├── test___Referrers.getWebsites_day.xml
│ │ ├── test___Referrers.getWebsites_month.xml
│ │ ├── test___Referrers.getWebsites_week.xml
│ │ ├── test___Referrers.getWebsites_year.xml
│ │ ├── test___Referrers.get_day.xml
│ │ ├── test___Referrers.get_month.xml
│ │ ├── test___Referrers.get_week.xml
│ │ ├── test___Referrers.get_year.xml
│ │ ├── test___Resolution.getConfiguration_day.xml
│ │ ├── test___Resolution.getConfiguration_month.xml
│ │ ├── test___Resolution.getConfiguration_week.xml
│ │ ├── test___Resolution.getConfiguration_year.xml
│ │ ├── test___Resolution.getResolution_day.xml
│ │ ├── test___Resolution.getResolution_month.xml
│ │ ├── test___Resolution.getResolution_week.xml
│ │ ├── test___Resolution.getResolution_year.xml
│ │ ├── test___UserCountry.getCity_day.xml
│ │ ├── test___UserCountry.getCity_month.xml
│ │ ├── test___UserCountry.getCity_week.xml
│ │ ├── test___UserCountry.getCity_year.xml
│ │ ├── test___UserCountry.getContinent_day.xml
│ │ ├── test___UserCountry.getContinent_month.xml
│ │ ├── test___UserCountry.getContinent_week.xml
│ │ ├── test___UserCountry.getContinent_year.xml
│ │ ├── test___UserCountry.getCountry_day.xml
│ │ ├── test___UserCountry.getCountry_month.xml
│ │ ├── test___UserCountry.getCountry_week.xml
│ │ ├── test___UserCountry.getCountry_year.xml
│ │ ├── test___UserCountry.getNumberOfDistinctCountries_day.xml
│ │ ├── test___UserCountry.getNumberOfDistinctCountries_month.xml
│ │ ├── test___UserCountry.getNumberOfDistinctCountries_week.xml
│ │ ├── test___UserCountry.getNumberOfDistinctCountries_year.xml
│ │ ├── test___UserCountry.getRegion_day.xml
│ │ ├── test___UserCountry.getRegion_month.xml
│ │ ├── test___UserCountry.getRegion_week.xml
│ │ ├── test___UserCountry.getRegion_year.xml
│ │ ├── test___UserLanguage.getLanguageCode_day.xml
│ │ ├── test___UserLanguage.getLanguageCode_month.xml
│ │ ├── test___UserLanguage.getLanguageCode_week.xml
│ │ ├── test___UserLanguage.getLanguageCode_year.xml
│ │ ├── test___UserLanguage.getLanguage_day.xml
│ │ ├── test___UserLanguage.getLanguage_month.xml
│ │ ├── test___UserLanguage.getLanguage_week.xml
│ │ ├── test___UserLanguage.getLanguage_year.xml
│ │ ├── test___VisitFrequency.get_day.xml
│ │ ├── test___VisitFrequency.get_month.xml
│ │ ├── test___VisitFrequency.get_week.xml
│ │ ├── test___VisitFrequency.get_year.xml
│ │ ├── test___VisitTime.getByDayOfWeek_day.xml
│ │ ├── test___VisitTime.getByDayOfWeek_month.xml
│ │ ├── test___VisitTime.getByDayOfWeek_week.xml
│ │ ├── test___VisitTime.getByDayOfWeek_year.xml
│ │ ├── test___VisitTime.getVisitInformationPerLocalTime_day.xml
│ │ ├── test___VisitTime.getVisitInformationPerLocalTime_month.xml
│ │ ├── test___VisitTime.getVisitInformationPerLocalTime_week.xml
│ │ ├── test___VisitTime.getVisitInformationPerLocalTime_year.xml
│ │ ├── test___VisitTime.getVisitInformationPerServerTime_day.xml
│ │ ├── test___VisitTime.getVisitInformationPerServerTime_month.xml
│ │ ├── test___VisitTime.getVisitInformationPerServerTime_week.xml
│ │ ├── test___VisitTime.getVisitInformationPerServerTime_year.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByDaysSinceLast_day.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByDaysSinceLast_month.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByDaysSinceLast_week.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByDaysSinceLast_year.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByVisitCount_day.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByVisitCount_month.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByVisitCount_week.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsByVisitCount_year.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerPage_day.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerPage_month.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerPage_week.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerPage_year.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerVisitDuration_day.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerVisitDuration_month.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerVisitDuration_week.xml
│ │ ├── test___VisitorInterest.getNumberOfVisitsPerVisitDuration_year.xml
│ │ ├── test___VisitsSummary.getActions_day.xml
│ │ ├── test___VisitsSummary.getActions_month.xml
│ │ ├── test___VisitsSummary.getActions_week.xml
│ │ ├── test___VisitsSummary.getActions_year.xml
│ │ ├── test___VisitsSummary.getBounceCount_day.xml
│ │ ├── test___VisitsSummary.getBounceCount_month.xml
│ │ ├── test___VisitsSummary.getBounceCount_week.xml
│ │ ├── test___VisitsSummary.getBounceCount_year.xml
│ │ ├── test___VisitsSummary.getMaxActions_day.xml
│ │ ├── test___VisitsSummary.getMaxActions_month.xml
│ │ ├── test___VisitsSummary.getMaxActions_week.xml
│ │ ├── test___VisitsSummary.getMaxActions_year.xml
│ │ ├── test___VisitsSummary.getSumVisitsLengthPretty_day.xml
│ │ ├── test___VisitsSummary.getSumVisitsLengthPretty_month.xml
│ │ ├── test___VisitsSummary.getSumVisitsLengthPretty_week.xml
│ │ ├── test___VisitsSummary.getSumVisitsLengthPretty_year.xml
│ │ ├── test___VisitsSummary.getSumVisitsLength_day.xml
│ │ ├── test___VisitsSummary.getSumVisitsLength_month.xml
│ │ ├── test___VisitsSummary.getSumVisitsLength_week.xml
│ │ ├── test___VisitsSummary.getSumVisitsLength_year.xml
│ │ ├── test___VisitsSummary.getUniqueVisitors_day.xml
│ │ ├── test___VisitsSummary.getUniqueVisitors_month.xml
│ │ ├── test___VisitsSummary.getUniqueVisitors_week.xml
│ │ ├── test___VisitsSummary.getUniqueVisitors_year.xml
│ │ ├── test___VisitsSummary.getUsers_day.xml
│ │ ├── test___VisitsSummary.getUsers_month.xml
│ │ ├── test___VisitsSummary.getUsers_week.xml
│ │ ├── test___VisitsSummary.getUsers_year.xml
│ │ ├── test___VisitsSummary.getVisitsConverted_day.xml
│ │ ├── test___VisitsSummary.getVisitsConverted_month.xml
│ │ ├── test___VisitsSummary.getVisitsConverted_week.xml
│ │ ├── test___VisitsSummary.getVisitsConverted_year.xml
│ │ ├── test___VisitsSummary.getVisits_day.xml
│ │ ├── test___VisitsSummary.getVisits_month.xml
│ │ ├── test___VisitsSummary.getVisits_week.xml
│ │ ├── test___VisitsSummary.getVisits_year.xml
│ │ ├── test___VisitsSummary.get_day.xml
│ │ ├── test___VisitsSummary.get_month.xml
│ │ ├── test___VisitsSummary.get_week.xml
│ │ ├── test___VisitsSummary.get_year.xml
│ │ ├── test__action__CustomDimensions.getCustomDimension_day.xml
│ │ ├── test__action__CustomDimensions.getCustomDimension_month.xml
│ │ ├── test__action__CustomDimensions.getCustomDimension_week.xml
│ │ ├── test__action__CustomDimensions.getCustomDimension_year.xml
│ │ ├── test__aggregatedWithTrackedVisit_5b1__VisitsSummary.get_week.xml
│ │ ├── test__aggregatedWithTrackedVisit__VisitsSummary.get_week.xml
│ │ ├── test__ecommerceOrder__Goals.getDaysToConversion_day.xml
│ │ ├── test__ecommerceOrder__Goals.getDaysToConversion_month.xml
│ │ ├── test__ecommerceOrder__Goals.getDaysToConversion_week.xml
│ │ ├── test__ecommerceOrder__Goals.getDaysToConversion_year.xml
│ │ ├── test__ecommerceOrder__Goals.getVisitsUntilConversion_day.xml
│ │ ├── test__ecommerceOrder__Goals.getVisitsUntilConversion_month.xml
│ │ ├── test__ecommerceOrder__Goals.getVisitsUntilConversion_week.xml
│ │ ├── test__ecommerceOrder__Goals.getVisitsUntilConversion_year.xml
│ │ ├── test__extraCustomDim__CustomDimensions.getCustomDimension_day.xml
│ │ ├── test__extraCustomDim__CustomDimensions.getCustomDimension_month.xml
│ │ ├── test__extraCustomDim__CustomDimensions.getCustomDimension_week.xml
│ │ ├── test__extraCustomDim__CustomDimensions.getCustomDimension_year.xml
│ │ ├── test__flat__Referrers.getSearchEngines_day.xml
│ │ ├── test__rangePeriod__VisitsSummary.get_range.xml
│ │ ├── test__visit__CustomDimensions.getCustomDimension_day.xml
│ │ ├── test__visit__CustomDimensions.getCustomDimension_month.xml
│ │ ├── test__visit__CustomDimensions.getCustomDimension_week.xml
│ │ └── test__visit__CustomDimensions.getCustomDimension_year.xml
├── UI
│ ├── EmptySite_GA_spec.js
│ ├── GoogleAnalyticsImporterGA4_spec.js
│ └── expected-ui-screenshots
│ │ ├── EmptySite_GA_details_ga3.png
│ │ ├── EmptySite_GA_details_ga4.png
│ │ ├── EmptySite_GA_list.png
│ │ ├── EmptySite_GA_list_admin.png
│ │ ├── GoogleAnalyticsImporterGA4_errored_import.png
│ │ ├── GoogleAnalyticsImporterGA4_finished_import.png
│ │ ├── GoogleAnalyticsImporterGA4_load.png
│ │ ├── GoogleAnalyticsImporterGA4_load_ga4.png
│ │ ├── GoogleAnalyticsImporterGA4_reimport_range.png
│ │ ├── GoogleAnalyticsImporterGA4_removed_client_config.png
│ │ ├── GoogleAnalyticsImporterGA4_removed_import.png
│ │ ├── GoogleAnalyticsImporterGA4_resumed_import.png
│ │ ├── GoogleAnalyticsImporterGA4_start_import.png
│ │ ├── GoogleAnalyticsImporter_errored_import.png
│ │ ├── GoogleAnalyticsImporter_finished_import.png
│ │ ├── GoogleAnalyticsImporter_load.png
│ │ ├── GoogleAnalyticsImporter_load_ga4.png
│ │ ├── GoogleAnalyticsImporter_load_ua.png
│ │ ├── GoogleAnalyticsImporter_reimport_range.png
│ │ ├── GoogleAnalyticsImporter_removed_client_config.png
│ │ ├── GoogleAnalyticsImporter_removed_import.png
│ │ ├── GoogleAnalyticsImporter_resumed_import.png
│ │ └── GoogleAnalyticsImporter_start_import.png
├── Unit
│ ├── Google
│ │ ├── GoogleGA4MetricMapperTest.php
│ │ ├── GoogleGA4QueryObjectFactoryTest.php
│ │ ├── GoogleGA4ResponseDataTableFactoryTest.php
│ │ ├── GoogleMetricMapperTest.php
│ │ ├── GoogleQueryObjectFactoryTest.php
│ │ └── GoogleResponseDataTableFactoryTest.php
│ ├── Input
│ │ └── EndDateTest.php
│ └── NotificationDisplayTest.php
└── resources
│ ├── capturedresponses-ga4.log
│ └── capturedresponses.log
├── vendor
├── autoload.php
├── autoload_original.php
├── composer
│ ├── ClassLoader.php
│ ├── InstalledVersions.php
│ ├── LICENSE
│ ├── autoload_classmap.php
│ ├── autoload_files.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── autoload_real.php
│ ├── autoload_static.php
│ ├── installed.json
│ └── installed.php
├── prefixed
│ ├── brick
│ │ └── math
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ ├── BigDecimal.php
│ │ │ ├── BigInteger.php
│ │ │ ├── BigNumber.php
│ │ │ ├── BigRational.php
│ │ │ ├── Exception
│ │ │ ├── DivisionByZeroException.php
│ │ │ ├── IntegerOverflowException.php
│ │ │ ├── MathException.php
│ │ │ ├── NegativeNumberException.php
│ │ │ ├── NumberFormatException.php
│ │ │ └── RoundingNecessaryException.php
│ │ │ ├── Internal
│ │ │ ├── Calculator.php
│ │ │ └── Calculator
│ │ │ │ ├── BcMathCalculator.php
│ │ │ │ ├── GmpCalculator.php
│ │ │ │ └── NativeCalculator.php
│ │ │ └── RoundingMode.php
│ ├── firebase
│ │ └── php-jwt
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ ├── BeforeValidException.php
│ │ │ ├── CachedKeySet.php
│ │ │ ├── ExpiredException.php
│ │ │ ├── JWK.php
│ │ │ ├── JWT.php
│ │ │ ├── JWTExceptionWithPayloadInterface.php
│ │ │ ├── Key.php
│ │ │ └── SignatureInvalidException.php
│ ├── google
│ │ ├── analytics-admin
│ │ │ ├── LICENSE
│ │ │ ├── VERSION
│ │ │ ├── metadata
│ │ │ │ ├── V1Alpha
│ │ │ │ │ ├── AccessReport.php
│ │ │ │ │ ├── AnalyticsAdmin.php
│ │ │ │ │ ├── Audience.php
│ │ │ │ │ ├── ChannelGroup.php
│ │ │ │ │ ├── EventCreateAndEdit.php
│ │ │ │ │ ├── ExpandedDataSet.php
│ │ │ │ │ ├── Resources.php
│ │ │ │ │ └── SubpropertyEventFilter.php
│ │ │ │ └── V1Beta
│ │ │ │ │ ├── AccessReport.php
│ │ │ │ │ ├── AnalyticsAdmin.php
│ │ │ │ │ └── Resources.php
│ │ │ └── src
│ │ │ │ ├── V1alpha
│ │ │ │ ├── AccessBetweenFilter.php
│ │ │ │ ├── AccessBinding.php
│ │ │ │ ├── AccessDateRange.php
│ │ │ │ ├── AccessDimension.php
│ │ │ │ ├── AccessDimensionHeader.php
│ │ │ │ ├── AccessDimensionValue.php
│ │ │ │ ├── AccessFilter.php
│ │ │ │ ├── AccessFilterExpression.php
│ │ │ │ ├── AccessFilterExpressionList.php
│ │ │ │ ├── AccessInListFilter.php
│ │ │ │ ├── AccessMetric.php
│ │ │ │ ├── AccessMetricHeader.php
│ │ │ │ ├── AccessMetricValue.php
│ │ │ │ ├── AccessNumericFilter.php
│ │ │ │ ├── AccessNumericFilter
│ │ │ │ │ └── Operation.php
│ │ │ │ ├── AccessNumericFilter_Operation.php
│ │ │ │ ├── AccessOrderBy.php
│ │ │ │ ├── AccessOrderBy
│ │ │ │ │ ├── DimensionOrderBy.php
│ │ │ │ │ ├── DimensionOrderBy
│ │ │ │ │ │ └── OrderType.php
│ │ │ │ │ └── MetricOrderBy.php
│ │ │ │ ├── AccessOrderBy_DimensionOrderBy.php
│ │ │ │ ├── AccessOrderBy_DimensionOrderBy_OrderType.php
│ │ │ │ ├── AccessOrderBy_MetricOrderBy.php
│ │ │ │ ├── AccessQuota.php
│ │ │ │ ├── AccessQuotaStatus.php
│ │ │ │ ├── AccessRow.php
│ │ │ │ ├── AccessStringFilter.php
│ │ │ │ ├── AccessStringFilter
│ │ │ │ │ └── MatchType.php
│ │ │ │ ├── AccessStringFilter_MatchType.php
│ │ │ │ ├── Account.php
│ │ │ │ ├── AccountSummary.php
│ │ │ │ ├── AcknowledgeUserDataCollectionRequest.php
│ │ │ │ ├── AcknowledgeUserDataCollectionResponse.php
│ │ │ │ ├── ActionType.php
│ │ │ │ ├── ActorType.php
│ │ │ │ ├── AdSenseLink.php
│ │ │ │ ├── AnalyticsAdminServiceClient.php
│ │ │ │ ├── AnalyticsAdminServiceGrpcClient.php
│ │ │ │ ├── AndroidAppDataStream.php
│ │ │ │ ├── ApproveDisplayVideo360AdvertiserLinkProposalRequest.php
│ │ │ │ ├── ApproveDisplayVideo360AdvertiserLinkProposalResponse.php
│ │ │ │ ├── ArchiveAudienceRequest.php
│ │ │ │ ├── ArchiveCustomDimensionRequest.php
│ │ │ │ ├── ArchiveCustomMetricRequest.php
│ │ │ │ ├── AttributionSettings.php
│ │ │ │ ├── AttributionSettings
│ │ │ │ │ ├── AcquisitionConversionEventLookbackWindow.php
│ │ │ │ │ ├── AdsWebConversionDataExportScope.php
│ │ │ │ │ ├── OtherConversionEventLookbackWindow.php
│ │ │ │ │ └── ReportingAttributionModel.php
│ │ │ │ ├── AttributionSettings_AcquisitionConversionEventLookbackWindow.php
│ │ │ │ ├── AttributionSettings_OtherConversionEventLookbackWindow.php
│ │ │ │ ├── AttributionSettings_ReportingAttributionModel.php
│ │ │ │ ├── Audience.php
│ │ │ │ ├── Audience
│ │ │ │ │ └── AudienceExclusionDurationMode.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter
│ │ │ │ │ ├── BetweenFilter.php
│ │ │ │ │ ├── InListFilter.php
│ │ │ │ │ ├── NumericFilter.php
│ │ │ │ │ ├── NumericFilter
│ │ │ │ │ │ └── Operation.php
│ │ │ │ │ ├── NumericValue.php
│ │ │ │ │ ├── StringFilter.php
│ │ │ │ │ └── StringFilter
│ │ │ │ │ │ └── MatchType.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_BetweenFilter.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_InListFilter.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_NumericFilter.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_NumericFilter_Operation.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_NumericValue.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_StringFilter.php
│ │ │ │ ├── AudienceDimensionOrMetricFilter_StringFilter_MatchType.php
│ │ │ │ ├── AudienceEventFilter.php
│ │ │ │ ├── AudienceEventTrigger.php
│ │ │ │ ├── AudienceEventTrigger
│ │ │ │ │ └── LogCondition.php
│ │ │ │ ├── AudienceEventTrigger_LogCondition.php
│ │ │ │ ├── AudienceFilterClause.php
│ │ │ │ ├── AudienceFilterClause
│ │ │ │ │ └── AudienceClauseType.php
│ │ │ │ ├── AudienceFilterClause_AudienceClauseType.php
│ │ │ │ ├── AudienceFilterExpression.php
│ │ │ │ ├── AudienceFilterExpressionList.php
│ │ │ │ ├── AudienceFilterScope.php
│ │ │ │ ├── AudienceSequenceFilter.php
│ │ │ │ ├── AudienceSequenceFilter
│ │ │ │ │ └── AudienceSequenceStep.php
│ │ │ │ ├── AudienceSequenceFilter_AudienceSequenceStep.php
│ │ │ │ ├── AudienceSimpleFilter.php
│ │ │ │ ├── Audience_AudienceExclusionDurationMode.php
│ │ │ │ ├── AuditUserLink.php
│ │ │ │ ├── AuditUserLinksRequest.php
│ │ │ │ ├── AuditUserLinksResponse.php
│ │ │ │ ├── BatchCreateAccessBindingsRequest.php
│ │ │ │ ├── BatchCreateAccessBindingsResponse.php
│ │ │ │ ├── BatchCreateUserLinksRequest.php
│ │ │ │ ├── BatchCreateUserLinksResponse.php
│ │ │ │ ├── BatchDeleteAccessBindingsRequest.php
│ │ │ │ ├── BatchDeleteUserLinksRequest.php
│ │ │ │ ├── BatchGetAccessBindingsRequest.php
│ │ │ │ ├── BatchGetAccessBindingsResponse.php
│ │ │ │ ├── BatchGetUserLinksRequest.php
│ │ │ │ ├── BatchGetUserLinksResponse.php
│ │ │ │ ├── BatchUpdateAccessBindingsRequest.php
│ │ │ │ ├── BatchUpdateAccessBindingsResponse.php
│ │ │ │ ├── BatchUpdateUserLinksRequest.php
│ │ │ │ ├── BatchUpdateUserLinksResponse.php
│ │ │ │ ├── BigQueryLink.php
│ │ │ │ ├── CalculatedMetric.php
│ │ │ │ ├── CalculatedMetric
│ │ │ │ │ ├── MetricUnit.php
│ │ │ │ │ └── RestrictedMetricType.php
│ │ │ │ ├── CancelDisplayVideo360AdvertiserLinkProposalRequest.php
│ │ │ │ ├── ChangeHistoryChange.php
│ │ │ │ ├── ChangeHistoryChange
│ │ │ │ │ └── ChangeHistoryResource.php
│ │ │ │ ├── ChangeHistoryChange_ChangeHistoryResource.php
│ │ │ │ ├── ChangeHistoryEvent.php
│ │ │ │ ├── ChangeHistoryResourceType.php
│ │ │ │ ├── ChannelGroup.php
│ │ │ │ ├── ChannelGroupFilter.php
│ │ │ │ ├── ChannelGroupFilter
│ │ │ │ │ ├── InListFilter.php
│ │ │ │ │ ├── StringFilter.php
│ │ │ │ │ └── StringFilter
│ │ │ │ │ │ └── MatchType.php
│ │ │ │ ├── ChannelGroupFilterExpression.php
│ │ │ │ ├── ChannelGroupFilterExpressionList.php
│ │ │ │ ├── ChannelGroupFilter_InListFilter.php
│ │ │ │ ├── ChannelGroupFilter_StringFilter.php
│ │ │ │ ├── ChannelGroupFilter_StringFilter_MatchType.php
│ │ │ │ ├── Client
│ │ │ │ │ └── AnalyticsAdminServiceClient.php
│ │ │ │ ├── CoarseValue.php
│ │ │ │ ├── ConnectedSiteTag.php
│ │ │ │ ├── ConversionEvent.php
│ │ │ │ ├── ConversionEvent
│ │ │ │ │ ├── ConversionCountingMethod.php
│ │ │ │ │ └── DefaultConversionValue.php
│ │ │ │ ├── ConversionValues.php
│ │ │ │ ├── CreateAccessBindingRequest.php
│ │ │ │ ├── CreateAdSenseLinkRequest.php
│ │ │ │ ├── CreateAndroidAppDataStreamRequest.php
│ │ │ │ ├── CreateAudienceRequest.php
│ │ │ │ ├── CreateCalculatedMetricRequest.php
│ │ │ │ ├── CreateChannelGroupRequest.php
│ │ │ │ ├── CreateConnectedSiteTagRequest.php
│ │ │ │ ├── CreateConnectedSiteTagResponse.php
│ │ │ │ ├── CreateConversionEventRequest.php
│ │ │ │ ├── CreateCustomDimensionRequest.php
│ │ │ │ ├── CreateCustomMetricRequest.php
│ │ │ │ ├── CreateDataStreamRequest.php
│ │ │ │ ├── CreateDisplayVideo360AdvertiserLinkProposalRequest.php
│ │ │ │ ├── CreateDisplayVideo360AdvertiserLinkRequest.php
│ │ │ │ ├── CreateEventCreateRuleRequest.php
│ │ │ │ ├── CreateExpandedDataSetRequest.php
│ │ │ │ ├── CreateFirebaseLinkRequest.php
│ │ │ │ ├── CreateGoogleAdsLinkRequest.php
│ │ │ │ ├── CreateIosAppDataStreamRequest.php
│ │ │ │ ├── CreateMeasurementProtocolSecretRequest.php
│ │ │ │ ├── CreatePropertyRequest.php
│ │ │ │ ├── CreateRollupPropertyRequest.php
│ │ │ │ ├── CreateRollupPropertyResponse.php
│ │ │ │ ├── CreateRollupPropertySourceLinkRequest.php
│ │ │ │ ├── CreateSKAdNetworkConversionValueSchemaRequest.php
│ │ │ │ ├── CreateSearchAds360LinkRequest.php
│ │ │ │ ├── CreateSubpropertyEventFilterRequest.php
│ │ │ │ ├── CreateSubpropertyRequest.php
│ │ │ │ ├── CreateSubpropertyResponse.php
│ │ │ │ ├── CreateUserLinkRequest.php
│ │ │ │ ├── CreateWebDataStreamRequest.php
│ │ │ │ ├── CustomDimension.php
│ │ │ │ ├── CustomDimension
│ │ │ │ │ └── DimensionScope.php
│ │ │ │ ├── CustomDimension_DimensionScope.php
│ │ │ │ ├── CustomMetric.php
│ │ │ │ ├── CustomMetric
│ │ │ │ │ ├── MeasurementUnit.php
│ │ │ │ │ ├── MetricScope.php
│ │ │ │ │ └── RestrictedMetricType.php
│ │ │ │ ├── CustomMetric_MeasurementUnit.php
│ │ │ │ ├── CustomMetric_MetricScope.php
│ │ │ │ ├── CustomMetric_RestrictedMetricType.php
│ │ │ │ ├── DataRedactionSettings.php
│ │ │ │ ├── DataRetentionSettings.php
│ │ │ │ ├── DataRetentionSettings
│ │ │ │ │ └── RetentionDuration.php
│ │ │ │ ├── DataRetentionSettings_RetentionDuration.php
│ │ │ │ ├── DataSharingSettings.php
│ │ │ │ ├── DataStream.php
│ │ │ │ ├── DataStream
│ │ │ │ │ ├── AndroidAppStreamData.php
│ │ │ │ │ ├── DataStreamType.php
│ │ │ │ │ ├── IosAppStreamData.php
│ │ │ │ │ └── WebStreamData.php
│ │ │ │ ├── DataStream_AndroidAppStreamData.php
│ │ │ │ ├── DataStream_DataStreamType.php
│ │ │ │ ├── DataStream_IosAppStreamData.php
│ │ │ │ ├── DataStream_WebStreamData.php
│ │ │ │ ├── DeleteAccessBindingRequest.php
│ │ │ │ ├── DeleteAccountRequest.php
│ │ │ │ ├── DeleteAdSenseLinkRequest.php
│ │ │ │ ├── DeleteAndroidAppDataStreamRequest.php
│ │ │ │ ├── DeleteCalculatedMetricRequest.php
│ │ │ │ ├── DeleteChannelGroupRequest.php
│ │ │ │ ├── DeleteConnectedSiteTagRequest.php
│ │ │ │ ├── DeleteConversionEventRequest.php
│ │ │ │ ├── DeleteDataStreamRequest.php
│ │ │ │ ├── DeleteDisplayVideo360AdvertiserLinkProposalRequest.php
│ │ │ │ ├── DeleteDisplayVideo360AdvertiserLinkRequest.php
│ │ │ │ ├── DeleteEventCreateRuleRequest.php
│ │ │ │ ├── DeleteExpandedDataSetRequest.php
│ │ │ │ ├── DeleteFirebaseLinkRequest.php
│ │ │ │ ├── DeleteGoogleAdsLinkRequest.php
│ │ │ │ ├── DeleteIosAppDataStreamRequest.php
│ │ │ │ ├── DeleteMeasurementProtocolSecretRequest.php
│ │ │ │ ├── DeletePropertyRequest.php
│ │ │ │ ├── DeleteRollupPropertySourceLinkRequest.php
│ │ │ │ ├── DeleteSKAdNetworkConversionValueSchemaRequest.php
│ │ │ │ ├── DeleteSearchAds360LinkRequest.php
│ │ │ │ ├── DeleteSubpropertyEventFilterRequest.php
│ │ │ │ ├── DeleteUserLinkRequest.php
│ │ │ │ ├── DeleteWebDataStreamRequest.php
│ │ │ │ ├── DisplayVideo360AdvertiserLink.php
│ │ │ │ ├── DisplayVideo360AdvertiserLinkProposal.php
│ │ │ │ ├── EnhancedMeasurementSettings.php
│ │ │ │ ├── EventCreateRule.php
│ │ │ │ ├── EventMapping.php
│ │ │ │ ├── ExpandedDataSet.php
│ │ │ │ ├── ExpandedDataSetFilter.php
│ │ │ │ ├── ExpandedDataSetFilter
│ │ │ │ │ ├── InListFilter.php
│ │ │ │ │ ├── StringFilter.php
│ │ │ │ │ └── StringFilter
│ │ │ │ │ │ └── MatchType.php
│ │ │ │ ├── ExpandedDataSetFilterExpression.php
│ │ │ │ ├── ExpandedDataSetFilterExpressionList.php
│ │ │ │ ├── ExpandedDataSetFilter_InListFilter.php
│ │ │ │ ├── ExpandedDataSetFilter_StringFilter.php
│ │ │ │ ├── ExpandedDataSetFilter_StringFilter_MatchType.php
│ │ │ │ ├── FetchAutomatedGa4ConfigurationOptOutRequest.php
│ │ │ │ ├── FetchAutomatedGa4ConfigurationOptOutResponse.php
│ │ │ │ ├── FetchConnectedGa4PropertyRequest.php
│ │ │ │ ├── FetchConnectedGa4PropertyResponse.php
│ │ │ │ ├── FirebaseLink.php
│ │ │ │ ├── Gapic
│ │ │ │ │ └── AnalyticsAdminServiceGapicClient.php
│ │ │ │ ├── GetAccessBindingRequest.php
│ │ │ │ ├── GetAccountRequest.php
│ │ │ │ ├── GetAdSenseLinkRequest.php
│ │ │ │ ├── GetAndroidAppDataStreamRequest.php
│ │ │ │ ├── GetAttributionSettingsRequest.php
│ │ │ │ ├── GetAudienceRequest.php
│ │ │ │ ├── GetBigQueryLinkRequest.php
│ │ │ │ ├── GetCalculatedMetricRequest.php
│ │ │ │ ├── GetChannelGroupRequest.php
│ │ │ │ ├── GetConversionEventRequest.php
│ │ │ │ ├── GetCustomDimensionRequest.php
│ │ │ │ ├── GetCustomMetricRequest.php
│ │ │ │ ├── GetDataRedactionSettingsRequest.php
│ │ │ │ ├── GetDataRetentionSettingsRequest.php
│ │ │ │ ├── GetDataSharingSettingsRequest.php
│ │ │ │ ├── GetDataStreamRequest.php
│ │ │ │ ├── GetDisplayVideo360AdvertiserLinkProposalRequest.php
│ │ │ │ ├── GetDisplayVideo360AdvertiserLinkRequest.php
│ │ │ │ ├── GetEnhancedMeasurementSettingsRequest.php
│ │ │ │ ├── GetEventCreateRuleRequest.php
│ │ │ │ ├── GetExpandedDataSetRequest.php
│ │ │ │ ├── GetGlobalSiteTagRequest.php
│ │ │ │ ├── GetGoogleSignalsSettingsRequest.php
│ │ │ │ ├── GetIosAppDataStreamRequest.php
│ │ │ │ ├── GetMeasurementProtocolSecretRequest.php
│ │ │ │ ├── GetPropertyRequest.php
│ │ │ │ ├── GetRollupPropertySourceLinkRequest.php
│ │ │ │ ├── GetSKAdNetworkConversionValueSchemaRequest.php
│ │ │ │ ├── GetSearchAds360LinkRequest.php
│ │ │ │ ├── GetSubpropertyEventFilterRequest.php
│ │ │ │ ├── GetUserLinkRequest.php
│ │ │ │ ├── GetWebDataStreamRequest.php
│ │ │ │ ├── GlobalSiteTag.php
│ │ │ │ ├── GoogleAdsLink.php
│ │ │ │ ├── GoogleSignalsConsent.php
│ │ │ │ ├── GoogleSignalsSettings.php
│ │ │ │ ├── GoogleSignalsState.php
│ │ │ │ ├── GroupingRule.php
│ │ │ │ ├── IndustryCategory.php
│ │ │ │ ├── IosAppDataStream.php
│ │ │ │ ├── LinkProposalInitiatingProduct.php
│ │ │ │ ├── LinkProposalState.php
│ │ │ │ ├── LinkProposalStatusDetails.php
│ │ │ │ ├── ListAccessBindingsRequest.php
│ │ │ │ ├── ListAccessBindingsResponse.php
│ │ │ │ ├── ListAccountSummariesRequest.php
│ │ │ │ ├── ListAccountSummariesResponse.php
│ │ │ │ ├── ListAccountsRequest.php
│ │ │ │ ├── ListAccountsResponse.php
│ │ │ │ ├── ListAdSenseLinksRequest.php
│ │ │ │ ├── ListAdSenseLinksResponse.php
│ │ │ │ ├── ListAndroidAppDataStreamsRequest.php
│ │ │ │ ├── ListAndroidAppDataStreamsResponse.php
│ │ │ │ ├── ListAudiencesRequest.php
│ │ │ │ ├── ListAudiencesResponse.php
│ │ │ │ ├── ListBigQueryLinksRequest.php
│ │ │ │ ├── ListBigQueryLinksResponse.php
│ │ │ │ ├── ListCalculatedMetricsRequest.php
│ │ │ │ ├── ListCalculatedMetricsResponse.php
│ │ │ │ ├── ListChannelGroupsRequest.php
│ │ │ │ ├── ListChannelGroupsResponse.php
│ │ │ │ ├── ListConnectedSiteTagsRequest.php
│ │ │ │ ├── ListConnectedSiteTagsResponse.php
│ │ │ │ ├── ListConversionEventsRequest.php
│ │ │ │ ├── ListConversionEventsResponse.php
│ │ │ │ ├── ListCustomDimensionsRequest.php
│ │ │ │ ├── ListCustomDimensionsResponse.php
│ │ │ │ ├── ListCustomMetricsRequest.php
│ │ │ │ ├── ListCustomMetricsResponse.php
│ │ │ │ ├── ListDataStreamsRequest.php
│ │ │ │ ├── ListDataStreamsResponse.php
│ │ │ │ ├── ListDisplayVideo360AdvertiserLinkProposalsRequest.php
│ │ │ │ ├── ListDisplayVideo360AdvertiserLinkProposalsResponse.php
│ │ │ │ ├── ListDisplayVideo360AdvertiserLinksRequest.php
│ │ │ │ ├── ListDisplayVideo360AdvertiserLinksResponse.php
│ │ │ │ ├── ListEventCreateRulesRequest.php
│ │ │ │ ├── ListEventCreateRulesResponse.php
│ │ │ │ ├── ListExpandedDataSetsRequest.php
│ │ │ │ ├── ListExpandedDataSetsResponse.php
│ │ │ │ ├── ListFirebaseLinksRequest.php
│ │ │ │ ├── ListFirebaseLinksResponse.php
│ │ │ │ ├── ListGoogleAdsLinksRequest.php
│ │ │ │ ├── ListGoogleAdsLinksResponse.php
│ │ │ │ ├── ListIosAppDataStreamsRequest.php
│ │ │ │ ├── ListIosAppDataStreamsResponse.php
│ │ │ │ ├── ListMeasurementProtocolSecretsRequest.php
│ │ │ │ ├── ListMeasurementProtocolSecretsResponse.php
│ │ │ │ ├── ListPropertiesRequest.php
│ │ │ │ ├── ListPropertiesResponse.php
│ │ │ │ ├── ListRollupPropertySourceLinksRequest.php
│ │ │ │ ├── ListRollupPropertySourceLinksResponse.php
│ │ │ │ ├── ListSKAdNetworkConversionValueSchemasRequest.php
│ │ │ │ ├── ListSKAdNetworkConversionValueSchemasResponse.php
│ │ │ │ ├── ListSearchAds360LinksRequest.php
│ │ │ │ ├── ListSearchAds360LinksResponse.php
│ │ │ │ ├── ListSubpropertyEventFiltersRequest.php
│ │ │ │ ├── ListSubpropertyEventFiltersResponse.php
│ │ │ │ ├── ListUserLinksRequest.php
│ │ │ │ ├── ListUserLinksResponse.php
│ │ │ │ ├── ListWebDataStreamsRequest.php
│ │ │ │ ├── ListWebDataStreamsResponse.php
│ │ │ │ ├── MatchingCondition.php
│ │ │ │ ├── MatchingCondition
│ │ │ │ │ └── ComparisonType.php
│ │ │ │ ├── MatchingCondition_ComparisonType.php
│ │ │ │ ├── MaximumUserAccess.php
│ │ │ │ ├── MeasurementProtocolSecret.php
│ │ │ │ ├── NumericValue.php
│ │ │ │ ├── ParameterMutation.php
│ │ │ │ ├── PostbackWindow.php
│ │ │ │ ├── Property.php
│ │ │ │ ├── PropertySummary.php
│ │ │ │ ├── PropertyType.php
│ │ │ │ ├── ProvisionAccountTicketRequest.php
│ │ │ │ ├── ProvisionAccountTicketResponse.php
│ │ │ │ ├── RollupPropertySourceLink.php
│ │ │ │ ├── RunAccessReportRequest.php
│ │ │ │ ├── RunAccessReportResponse.php
│ │ │ │ ├── SKAdNetworkConversionValueSchema.php
│ │ │ │ ├── SearchAds360Link.php
│ │ │ │ ├── SearchChangeHistoryEventsRequest.php
│ │ │ │ ├── SearchChangeHistoryEventsResponse.php
│ │ │ │ ├── ServiceLevel.php
│ │ │ │ ├── SetAutomatedGa4ConfigurationOptOutRequest.php
│ │ │ │ ├── SetAutomatedGa4ConfigurationOptOutResponse.php
│ │ │ │ ├── SubpropertyEventFilter.php
│ │ │ │ ├── SubpropertyEventFilterClause.php
│ │ │ │ ├── SubpropertyEventFilterClause
│ │ │ │ │ └── FilterClauseType.php
│ │ │ │ ├── SubpropertyEventFilterCondition.php
│ │ │ │ ├── SubpropertyEventFilterCondition
│ │ │ │ │ ├── StringFilter.php
│ │ │ │ │ └── StringFilter
│ │ │ │ │ │ └── MatchType.php
│ │ │ │ ├── SubpropertyEventFilterExpression.php
│ │ │ │ ├── SubpropertyEventFilterExpressionList.php
│ │ │ │ ├── UpdateAccessBindingRequest.php
│ │ │ │ ├── UpdateAccountRequest.php
│ │ │ │ ├── UpdateAndroidAppDataStreamRequest.php
│ │ │ │ ├── UpdateAttributionSettingsRequest.php
│ │ │ │ ├── UpdateAudienceRequest.php
│ │ │ │ ├── UpdateCalculatedMetricRequest.php
│ │ │ │ ├── UpdateChannelGroupRequest.php
│ │ │ │ ├── UpdateConversionEventRequest.php
│ │ │ │ ├── UpdateCustomDimensionRequest.php
│ │ │ │ ├── UpdateCustomMetricRequest.php
│ │ │ │ ├── UpdateDataRedactionSettingsRequest.php
│ │ │ │ ├── UpdateDataRetentionSettingsRequest.php
│ │ │ │ ├── UpdateDataStreamRequest.php
│ │ │ │ ├── UpdateDisplayVideo360AdvertiserLinkRequest.php
│ │ │ │ ├── UpdateEnhancedMeasurementSettingsRequest.php
│ │ │ │ ├── UpdateEventCreateRuleRequest.php
│ │ │ │ ├── UpdateExpandedDataSetRequest.php
│ │ │ │ ├── UpdateFirebaseLinkRequest.php
│ │ │ │ ├── UpdateGoogleAdsLinkRequest.php
│ │ │ │ ├── UpdateGoogleSignalsSettingsRequest.php
│ │ │ │ ├── UpdateIosAppDataStreamRequest.php
│ │ │ │ ├── UpdateMeasurementProtocolSecretRequest.php
│ │ │ │ ├── UpdatePropertyRequest.php
│ │ │ │ ├── UpdateSKAdNetworkConversionValueSchemaRequest.php
│ │ │ │ ├── UpdateSearchAds360LinkRequest.php
│ │ │ │ ├── UpdateSubpropertyEventFilterRequest.php
│ │ │ │ ├── UpdateUserLinkRequest.php
│ │ │ │ ├── UpdateWebDataStreamRequest.php
│ │ │ │ ├── UserLink.php
│ │ │ │ ├── WebDataStream.php
│ │ │ │ └── resources
│ │ │ │ │ ├── analytics_admin_service_client_config.json
│ │ │ │ │ ├── analytics_admin_service_descriptor_config.php
│ │ │ │ │ └── analytics_admin_service_rest_client_config.php
│ │ │ │ └── V1beta
│ │ │ │ ├── AccessBetweenFilter.php
│ │ │ │ ├── AccessDateRange.php
│ │ │ │ ├── AccessDimension.php
│ │ │ │ ├── AccessDimensionHeader.php
│ │ │ │ ├── AccessDimensionValue.php
│ │ │ │ ├── AccessFilter.php
│ │ │ │ ├── AccessFilterExpression.php
│ │ │ │ ├── AccessFilterExpressionList.php
│ │ │ │ ├── AccessInListFilter.php
│ │ │ │ ├── AccessMetric.php
│ │ │ │ ├── AccessMetricHeader.php
│ │ │ │ ├── AccessMetricValue.php
│ │ │ │ ├── AccessNumericFilter.php
│ │ │ │ ├── AccessNumericFilter
│ │ │ │ └── Operation.php
│ │ │ │ ├── AccessOrderBy.php
│ │ │ │ ├── AccessOrderBy
│ │ │ │ ├── DimensionOrderBy.php
│ │ │ │ ├── DimensionOrderBy
│ │ │ │ │ └── OrderType.php
│ │ │ │ └── MetricOrderBy.php
│ │ │ │ ├── AccessQuota.php
│ │ │ │ ├── AccessQuotaStatus.php
│ │ │ │ ├── AccessRow.php
│ │ │ │ ├── AccessStringFilter.php
│ │ │ │ ├── AccessStringFilter
│ │ │ │ └── MatchType.php
│ │ │ │ ├── Account.php
│ │ │ │ ├── AccountSummary.php
│ │ │ │ ├── AcknowledgeUserDataCollectionRequest.php
│ │ │ │ ├── AcknowledgeUserDataCollectionResponse.php
│ │ │ │ ├── ActionType.php
│ │ │ │ ├── ActorType.php
│ │ │ │ ├── AnalyticsAdminServiceClient.php
│ │ │ │ ├── ArchiveCustomDimensionRequest.php
│ │ │ │ ├── ArchiveCustomMetricRequest.php
│ │ │ │ ├── ChangeHistoryChange.php
│ │ │ │ ├── ChangeHistoryChange
│ │ │ │ └── ChangeHistoryResource.php
│ │ │ │ ├── ChangeHistoryEvent.php
│ │ │ │ ├── ChangeHistoryResourceType.php
│ │ │ │ ├── Client
│ │ │ │ └── AnalyticsAdminServiceClient.php
│ │ │ │ ├── ConversionEvent.php
│ │ │ │ ├── ConversionEvent
│ │ │ │ └── ConversionCountingMethod.php
│ │ │ │ ├── CreateConversionEventRequest.php
│ │ │ │ ├── CreateCustomDimensionRequest.php
│ │ │ │ ├── CreateCustomMetricRequest.php
│ │ │ │ ├── CreateDataStreamRequest.php
│ │ │ │ ├── CreateFirebaseLinkRequest.php
│ │ │ │ ├── CreateGoogleAdsLinkRequest.php
│ │ │ │ ├── CreateMeasurementProtocolSecretRequest.php
│ │ │ │ ├── CreatePropertyRequest.php
│ │ │ │ ├── CustomDimension.php
│ │ │ │ ├── CustomDimension
│ │ │ │ └── DimensionScope.php
│ │ │ │ ├── CustomMetric.php
│ │ │ │ ├── CustomMetric
│ │ │ │ ├── MeasurementUnit.php
│ │ │ │ ├── MetricScope.php
│ │ │ │ └── RestrictedMetricType.php
│ │ │ │ ├── DataRetentionSettings.php
│ │ │ │ ├── DataRetentionSettings
│ │ │ │ └── RetentionDuration.php
│ │ │ │ ├── DataSharingSettings.php
│ │ │ │ ├── DataStream.php
│ │ │ │ ├── DataStream
│ │ │ │ ├── AndroidAppStreamData.php
│ │ │ │ ├── DataStreamType.php
│ │ │ │ ├── IosAppStreamData.php
│ │ │ │ └── WebStreamData.php
│ │ │ │ ├── DeleteAccountRequest.php
│ │ │ │ ├── DeleteConversionEventRequest.php
│ │ │ │ ├── DeleteDataStreamRequest.php
│ │ │ │ ├── DeleteFirebaseLinkRequest.php
│ │ │ │ ├── DeleteGoogleAdsLinkRequest.php
│ │ │ │ ├── DeleteMeasurementProtocolSecretRequest.php
│ │ │ │ ├── DeletePropertyRequest.php
│ │ │ │ ├── FirebaseLink.php
│ │ │ │ ├── Gapic
│ │ │ │ └── AnalyticsAdminServiceGapicClient.php
│ │ │ │ ├── GetAccountRequest.php
│ │ │ │ ├── GetConversionEventRequest.php
│ │ │ │ ├── GetCustomDimensionRequest.php
│ │ │ │ ├── GetCustomMetricRequest.php
│ │ │ │ ├── GetDataRetentionSettingsRequest.php
│ │ │ │ ├── GetDataSharingSettingsRequest.php
│ │ │ │ ├── GetDataStreamRequest.php
│ │ │ │ ├── GetMeasurementProtocolSecretRequest.php
│ │ │ │ ├── GetPropertyRequest.php
│ │ │ │ ├── GoogleAdsLink.php
│ │ │ │ ├── IndustryCategory.php
│ │ │ │ ├── ListAccountSummariesRequest.php
│ │ │ │ ├── ListAccountSummariesResponse.php
│ │ │ │ ├── ListAccountsRequest.php
│ │ │ │ ├── ListAccountsResponse.php
│ │ │ │ ├── ListConversionEventsRequest.php
│ │ │ │ ├── ListConversionEventsResponse.php
│ │ │ │ ├── ListCustomDimensionsRequest.php
│ │ │ │ ├── ListCustomDimensionsResponse.php
│ │ │ │ ├── ListCustomMetricsRequest.php
│ │ │ │ ├── ListCustomMetricsResponse.php
│ │ │ │ ├── ListDataStreamsRequest.php
│ │ │ │ ├── ListDataStreamsResponse.php
│ │ │ │ ├── ListFirebaseLinksRequest.php
│ │ │ │ ├── ListFirebaseLinksResponse.php
│ │ │ │ ├── ListGoogleAdsLinksRequest.php
│ │ │ │ ├── ListGoogleAdsLinksResponse.php
│ │ │ │ ├── ListMeasurementProtocolSecretsRequest.php
│ │ │ │ ├── ListMeasurementProtocolSecretsResponse.php
│ │ │ │ ├── ListPropertiesRequest.php
│ │ │ │ ├── ListPropertiesResponse.php
│ │ │ │ ├── MeasurementProtocolSecret.php
│ │ │ │ ├── NumericValue.php
│ │ │ │ ├── Property.php
│ │ │ │ ├── PropertySummary.php
│ │ │ │ ├── PropertyType.php
│ │ │ │ ├── ProvisionAccountTicketRequest.php
│ │ │ │ ├── ProvisionAccountTicketResponse.php
│ │ │ │ ├── RunAccessReportRequest.php
│ │ │ │ ├── RunAccessReportResponse.php
│ │ │ │ ├── SearchChangeHistoryEventsRequest.php
│ │ │ │ ├── SearchChangeHistoryEventsResponse.php
│ │ │ │ ├── ServiceLevel.php
│ │ │ │ ├── UpdateAccountRequest.php
│ │ │ │ ├── UpdateConversionEventRequest.php
│ │ │ │ ├── UpdateCustomDimensionRequest.php
│ │ │ │ ├── UpdateCustomMetricRequest.php
│ │ │ │ ├── UpdateDataRetentionSettingsRequest.php
│ │ │ │ ├── UpdateDataStreamRequest.php
│ │ │ │ ├── UpdateGoogleAdsLinkRequest.php
│ │ │ │ ├── UpdateMeasurementProtocolSecretRequest.php
│ │ │ │ ├── UpdatePropertyRequest.php
│ │ │ │ └── resources
│ │ │ │ ├── analytics_admin_service_client_config.json
│ │ │ │ ├── analytics_admin_service_descriptor_config.php
│ │ │ │ └── analytics_admin_service_rest_client_config.php
│ │ ├── analytics-data
│ │ │ ├── LICENSE
│ │ │ ├── VERSION
│ │ │ ├── metadata
│ │ │ │ ├── V1Alpha
│ │ │ │ │ ├── AnalyticsDataApi.php
│ │ │ │ │ └── Data.php
│ │ │ │ └── V1Beta
│ │ │ │ │ ├── AnalyticsDataApi.php
│ │ │ │ │ └── Data.php
│ │ │ └── src
│ │ │ │ ├── V1alpha
│ │ │ │ ├── AlphaAnalyticsDataClient.php
│ │ │ │ ├── AlphaAnalyticsDataGrpcClient.php
│ │ │ │ ├── AudienceDimension.php
│ │ │ │ ├── AudienceDimensionValue.php
│ │ │ │ ├── AudienceList.php
│ │ │ │ ├── AudienceList
│ │ │ │ │ └── State.php
│ │ │ │ ├── AudienceListMetadata.php
│ │ │ │ ├── AudienceRow.php
│ │ │ │ ├── BatchRunPivotReportsRequest.php
│ │ │ │ ├── BatchRunPivotReportsResponse.php
│ │ │ │ ├── BatchRunReportsRequest.php
│ │ │ │ ├── BatchRunReportsResponse.php
│ │ │ │ ├── BetweenFilter.php
│ │ │ │ ├── Client
│ │ │ │ │ └── AlphaAnalyticsDataClient.php
│ │ │ │ ├── Cohort.php
│ │ │ │ ├── CohortReportSettings.php
│ │ │ │ ├── CohortSpec.php
│ │ │ │ ├── CohortsRange.php
│ │ │ │ ├── CohortsRange
│ │ │ │ │ └── Granularity.php
│ │ │ │ ├── CreateAudienceListRequest.php
│ │ │ │ ├── CreateRecurringAudienceListRequest.php
│ │ │ │ ├── CreateReportTaskRequest.php
│ │ │ │ ├── DateRange.php
│ │ │ │ ├── Dimension.php
│ │ │ │ ├── DimensionExpression.php
│ │ │ │ ├── DimensionExpression
│ │ │ │ │ ├── CaseExpression.php
│ │ │ │ │ └── ConcatenateExpression.php
│ │ │ │ ├── DimensionHeader.php
│ │ │ │ ├── DimensionMetadata.php
│ │ │ │ ├── DimensionValue.php
│ │ │ │ ├── Entity.php
│ │ │ │ ├── EventCriteriaScoping.php
│ │ │ │ ├── EventExclusionDuration.php
│ │ │ │ ├── EventSegment.php
│ │ │ │ ├── EventSegmentConditionGroup.php
│ │ │ │ ├── EventSegmentCriteria.php
│ │ │ │ ├── EventSegmentExclusion.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Filter
│ │ │ │ │ ├── BetweenFilter.php
│ │ │ │ │ ├── InListFilter.php
│ │ │ │ │ ├── NumericFilter.php
│ │ │ │ │ ├── NumericFilter
│ │ │ │ │ │ └── Operation.php
│ │ │ │ │ ├── StringFilter.php
│ │ │ │ │ └── StringFilter
│ │ │ │ │ │ └── MatchType.php
│ │ │ │ ├── FilterExpression.php
│ │ │ │ ├── FilterExpressionList.php
│ │ │ │ ├── Funnel.php
│ │ │ │ ├── FunnelBreakdown.php
│ │ │ │ ├── FunnelEventFilter.php
│ │ │ │ ├── FunnelFieldFilter.php
│ │ │ │ ├── FunnelFilterExpression.php
│ │ │ │ ├── FunnelFilterExpressionList.php
│ │ │ │ ├── FunnelNextAction.php
│ │ │ │ ├── FunnelParameterFilter.php
│ │ │ │ ├── FunnelParameterFilterExpression.php
│ │ │ │ ├── FunnelParameterFilterExpressionList.php
│ │ │ │ ├── FunnelResponseMetadata.php
│ │ │ │ ├── FunnelStep.php
│ │ │ │ ├── FunnelSubReport.php
│ │ │ │ ├── Gapic
│ │ │ │ │ └── AlphaAnalyticsDataGapicClient.php
│ │ │ │ ├── GetAudienceListRequest.php
│ │ │ │ ├── GetMetadataRequest.php
│ │ │ │ ├── GetRecurringAudienceListRequest.php
│ │ │ │ ├── GetReportTaskRequest.php
│ │ │ │ ├── InListFilter.php
│ │ │ │ ├── ListAudienceListsRequest.php
│ │ │ │ ├── ListAudienceListsResponse.php
│ │ │ │ ├── ListRecurringAudienceListsRequest.php
│ │ │ │ ├── ListRecurringAudienceListsResponse.php
│ │ │ │ ├── ListReportTasksRequest.php
│ │ │ │ ├── ListReportTasksResponse.php
│ │ │ │ ├── Metadata.php
│ │ │ │ ├── Metric.php
│ │ │ │ ├── MetricAggregation.php
│ │ │ │ ├── MetricHeader.php
│ │ │ │ ├── MetricMetadata.php
│ │ │ │ ├── MetricType.php
│ │ │ │ ├── MetricValue.php
│ │ │ │ ├── NumericFilter.php
│ │ │ │ ├── NumericFilter
│ │ │ │ │ └── Operation.php
│ │ │ │ ├── NumericValue.php
│ │ │ │ ├── OrderBy.php
│ │ │ │ ├── OrderBy
│ │ │ │ │ ├── DimensionOrderBy.php
│ │ │ │ │ ├── DimensionOrderBy
│ │ │ │ │ │ └── OrderType.php
│ │ │ │ │ ├── MetricOrderBy.php
│ │ │ │ │ ├── PivotOrderBy.php
│ │ │ │ │ └── PivotOrderBy
│ │ │ │ │ │ └── PivotSelection.php
│ │ │ │ ├── Pivot.php
│ │ │ │ ├── PivotDimensionHeader.php
│ │ │ │ ├── PivotHeader.php
│ │ │ │ ├── PropertyQuota.php
│ │ │ │ ├── QueryAudienceListRequest.php
│ │ │ │ ├── QueryAudienceListResponse.php
│ │ │ │ ├── QueryReportTaskRequest.php
│ │ │ │ ├── QueryReportTaskResponse.php
│ │ │ │ ├── QuotaStatus.php
│ │ │ │ ├── RecurringAudienceList.php
│ │ │ │ ├── ReportTask.php
│ │ │ │ ├── ReportTask
│ │ │ │ │ ├── ReportDefinition.php
│ │ │ │ │ ├── ReportMetadata.php
│ │ │ │ │ └── ReportMetadata
│ │ │ │ │ │ └── State.php
│ │ │ │ ├── ReportTaskMetadata.php
│ │ │ │ ├── ResponseMetaData.php
│ │ │ │ ├── ResponseMetaData
│ │ │ │ │ ├── SchemaRestrictionResponse.php
│ │ │ │ │ └── SchemaRestrictionResponse
│ │ │ │ │ │ └── ActiveMetricRestriction.php
│ │ │ │ ├── RestrictedMetricType.php
│ │ │ │ ├── Row.php
│ │ │ │ ├── RunFunnelReportRequest.php
│ │ │ │ ├── RunFunnelReportRequest
│ │ │ │ │ └── FunnelVisualizationType.php
│ │ │ │ ├── RunFunnelReportResponse.php
│ │ │ │ ├── RunPivotReportRequest.php
│ │ │ │ ├── RunPivotReportResponse.php
│ │ │ │ ├── RunRealtimeReportRequest.php
│ │ │ │ ├── RunRealtimeReportResponse.php
│ │ │ │ ├── RunReportRequest.php
│ │ │ │ ├── RunReportResponse.php
│ │ │ │ ├── SamplingMetadata.php
│ │ │ │ ├── Segment.php
│ │ │ │ ├── SegmentEventFilter.php
│ │ │ │ ├── SegmentFilter.php
│ │ │ │ ├── SegmentFilterExpression.php
│ │ │ │ ├── SegmentFilterExpressionList.php
│ │ │ │ ├── SegmentFilterScoping.php
│ │ │ │ ├── SegmentParameterFilter.php
│ │ │ │ ├── SegmentParameterFilterExpression.php
│ │ │ │ ├── SegmentParameterFilterExpressionList.php
│ │ │ │ ├── SegmentParameterFilterScoping.php
│ │ │ │ ├── SessionCriteriaScoping.php
│ │ │ │ ├── SessionExclusionDuration.php
│ │ │ │ ├── SessionSegment.php
│ │ │ │ ├── SessionSegmentConditionGroup.php
│ │ │ │ ├── SessionSegmentCriteria.php
│ │ │ │ ├── SessionSegmentExclusion.php
│ │ │ │ ├── SheetExportAudienceListRequest.php
│ │ │ │ ├── SheetExportAudienceListResponse.php
│ │ │ │ ├── StringFilter.php
│ │ │ │ ├── StringFilter
│ │ │ │ │ └── MatchType.php
│ │ │ │ ├── UserCriteriaScoping.php
│ │ │ │ ├── UserExclusionDuration.php
│ │ │ │ ├── UserSegment.php
│ │ │ │ ├── UserSegmentConditionGroup.php
│ │ │ │ ├── UserSegmentCriteria.php
│ │ │ │ ├── UserSegmentExclusion.php
│ │ │ │ ├── UserSegmentSequenceGroup.php
│ │ │ │ ├── UserSequenceStep.php
│ │ │ │ ├── WebhookNotification.php
│ │ │ │ └── resources
│ │ │ │ │ ├── alpha_analytics_data_client_config.json
│ │ │ │ │ ├── alpha_analytics_data_descriptor_config.php
│ │ │ │ │ └── alpha_analytics_data_rest_client_config.php
│ │ │ │ └── V1beta
│ │ │ │ ├── AudienceDimension.php
│ │ │ │ ├── AudienceDimensionValue.php
│ │ │ │ ├── AudienceExport.php
│ │ │ │ ├── AudienceExport
│ │ │ │ └── State.php
│ │ │ │ ├── AudienceExportMetadata.php
│ │ │ │ ├── AudienceRow.php
│ │ │ │ ├── BatchRunPivotReportsRequest.php
│ │ │ │ ├── BatchRunPivotReportsResponse.php
│ │ │ │ ├── BatchRunReportsRequest.php
│ │ │ │ ├── BatchRunReportsResponse.php
│ │ │ │ ├── BetaAnalyticsDataClient.php
│ │ │ │ ├── BetaAnalyticsDataGrpcClient.php
│ │ │ │ ├── CheckCompatibilityRequest.php
│ │ │ │ ├── CheckCompatibilityResponse.php
│ │ │ │ ├── Client
│ │ │ │ └── BetaAnalyticsDataClient.php
│ │ │ │ ├── Cohort.php
│ │ │ │ ├── CohortReportSettings.php
│ │ │ │ ├── CohortSpec.php
│ │ │ │ ├── CohortsRange.php
│ │ │ │ ├── CohortsRange
│ │ │ │ └── Granularity.php
│ │ │ │ ├── Compatibility.php
│ │ │ │ ├── CreateAudienceExportRequest.php
│ │ │ │ ├── DateRange.php
│ │ │ │ ├── Dimension.php
│ │ │ │ ├── DimensionCompatibility.php
│ │ │ │ ├── DimensionExpression.php
│ │ │ │ ├── DimensionExpression
│ │ │ │ ├── CaseExpression.php
│ │ │ │ └── ConcatenateExpression.php
│ │ │ │ ├── DimensionHeader.php
│ │ │ │ ├── DimensionMetadata.php
│ │ │ │ ├── DimensionValue.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Filter
│ │ │ │ ├── BetweenFilter.php
│ │ │ │ ├── InListFilter.php
│ │ │ │ ├── NumericFilter.php
│ │ │ │ ├── NumericFilter
│ │ │ │ │ └── Operation.php
│ │ │ │ ├── StringFilter.php
│ │ │ │ └── StringFilter
│ │ │ │ │ └── MatchType.php
│ │ │ │ ├── FilterExpression.php
│ │ │ │ ├── FilterExpressionList.php
│ │ │ │ ├── Gapic
│ │ │ │ └── BetaAnalyticsDataGapicClient.php
│ │ │ │ ├── GetAudienceExportRequest.php
│ │ │ │ ├── GetMetadataRequest.php
│ │ │ │ ├── ListAudienceExportsRequest.php
│ │ │ │ ├── ListAudienceExportsResponse.php
│ │ │ │ ├── Metadata.php
│ │ │ │ ├── Metric.php
│ │ │ │ ├── MetricAggregation.php
│ │ │ │ ├── MetricCompatibility.php
│ │ │ │ ├── MetricHeader.php
│ │ │ │ ├── MetricMetadata.php
│ │ │ │ ├── MetricMetadata
│ │ │ │ └── BlockedReason.php
│ │ │ │ ├── MetricType.php
│ │ │ │ ├── MetricValue.php
│ │ │ │ ├── MinuteRange.php
│ │ │ │ ├── NumericValue.php
│ │ │ │ ├── OrderBy.php
│ │ │ │ ├── OrderBy
│ │ │ │ ├── DimensionOrderBy.php
│ │ │ │ ├── DimensionOrderBy
│ │ │ │ │ └── OrderType.php
│ │ │ │ ├── MetricOrderBy.php
│ │ │ │ ├── PivotOrderBy.php
│ │ │ │ └── PivotOrderBy
│ │ │ │ │ └── PivotSelection.php
│ │ │ │ ├── Pivot.php
│ │ │ │ ├── PivotDimensionHeader.php
│ │ │ │ ├── PivotHeader.php
│ │ │ │ ├── PropertyQuota.php
│ │ │ │ ├── QueryAudienceExportRequest.php
│ │ │ │ ├── QueryAudienceExportResponse.php
│ │ │ │ ├── QuotaStatus.php
│ │ │ │ ├── ResponseMetaData.php
│ │ │ │ ├── ResponseMetaData
│ │ │ │ ├── SchemaRestrictionResponse.php
│ │ │ │ └── SchemaRestrictionResponse
│ │ │ │ │ └── ActiveMetricRestriction.php
│ │ │ │ ├── RestrictedMetricType.php
│ │ │ │ ├── Row.php
│ │ │ │ ├── RunPivotReportRequest.php
│ │ │ │ ├── RunPivotReportResponse.php
│ │ │ │ ├── RunRealtimeReportRequest.php
│ │ │ │ ├── RunRealtimeReportResponse.php
│ │ │ │ ├── RunReportRequest.php
│ │ │ │ ├── RunReportResponse.php
│ │ │ │ ├── SamplingMetadata.php
│ │ │ │ └── resources
│ │ │ │ ├── beta_analytics_data_client_config.json
│ │ │ │ ├── beta_analytics_data_descriptor_config.php
│ │ │ │ └── beta_analytics_data_rest_client_config.php
│ │ ├── apiclient-services
│ │ │ ├── LICENSE
│ │ │ ├── autoload.php
│ │ │ ├── renovate.json
│ │ │ ├── src
│ │ │ │ ├── Analytics.php
│ │ │ │ ├── Analytics
│ │ │ │ │ ├── Account.php
│ │ │ │ │ ├── AccountChildLink.php
│ │ │ │ │ ├── AccountPermissions.php
│ │ │ │ │ ├── AccountRef.php
│ │ │ │ │ ├── AccountSummaries.php
│ │ │ │ │ ├── AccountSummary.php
│ │ │ │ │ ├── AccountTicket.php
│ │ │ │ │ ├── AccountTreeRequest.php
│ │ │ │ │ ├── AccountTreeResponse.php
│ │ │ │ │ ├── Accounts.php
│ │ │ │ │ ├── AdWordsAccount.php
│ │ │ │ │ ├── AnalyticsDataimportDeleteUploadDataRequest.php
│ │ │ │ │ ├── Column.php
│ │ │ │ │ ├── Columns.php
│ │ │ │ │ ├── CustomDataSource.php
│ │ │ │ │ ├── CustomDataSourceChildLink.php
│ │ │ │ │ ├── CustomDataSourceParentLink.php
│ │ │ │ │ ├── CustomDataSources.php
│ │ │ │ │ ├── CustomDimension.php
│ │ │ │ │ ├── CustomDimensionParentLink.php
│ │ │ │ │ ├── CustomDimensions.php
│ │ │ │ │ ├── CustomMetric.php
│ │ │ │ │ ├── CustomMetricParentLink.php
│ │ │ │ │ ├── CustomMetrics.php
│ │ │ │ │ ├── EntityAdWordsLink.php
│ │ │ │ │ ├── EntityAdWordsLinkEntity.php
│ │ │ │ │ ├── EntityAdWordsLinks.php
│ │ │ │ │ ├── EntityUserLink.php
│ │ │ │ │ ├── EntityUserLinkEntity.php
│ │ │ │ │ ├── EntityUserLinkPermissions.php
│ │ │ │ │ ├── EntityUserLinks.php
│ │ │ │ │ ├── Experiment.php
│ │ │ │ │ ├── ExperimentParentLink.php
│ │ │ │ │ ├── ExperimentVariations.php
│ │ │ │ │ ├── Experiments.php
│ │ │ │ │ ├── Filter.php
│ │ │ │ │ ├── FilterAdvancedDetails.php
│ │ │ │ │ ├── FilterExpression.php
│ │ │ │ │ ├── FilterLowercaseDetails.php
│ │ │ │ │ ├── FilterParentLink.php
│ │ │ │ │ ├── FilterRef.php
│ │ │ │ │ ├── FilterSearchAndReplaceDetails.php
│ │ │ │ │ ├── FilterUppercaseDetails.php
│ │ │ │ │ ├── Filters.php
│ │ │ │ │ ├── GaData.php
│ │ │ │ │ ├── GaDataColumnHeaders.php
│ │ │ │ │ ├── GaDataDataTable.php
│ │ │ │ │ ├── GaDataDataTableCols.php
│ │ │ │ │ ├── GaDataDataTableRows.php
│ │ │ │ │ ├── GaDataDataTableRowsC.php
│ │ │ │ │ ├── GaDataProfileInfo.php
│ │ │ │ │ ├── GaDataQuery.php
│ │ │ │ │ ├── Goal.php
│ │ │ │ │ ├── GoalEventDetails.php
│ │ │ │ │ ├── GoalEventDetailsEventConditions.php
│ │ │ │ │ ├── GoalParentLink.php
│ │ │ │ │ ├── GoalUrlDestinationDetails.php
│ │ │ │ │ ├── GoalUrlDestinationDetailsSteps.php
│ │ │ │ │ ├── GoalVisitNumPagesDetails.php
│ │ │ │ │ ├── GoalVisitTimeOnSiteDetails.php
│ │ │ │ │ ├── Goals.php
│ │ │ │ │ ├── HashClientIdRequest.php
│ │ │ │ │ ├── HashClientIdResponse.php
│ │ │ │ │ ├── IncludeConditions.php
│ │ │ │ │ ├── LinkedForeignAccount.php
│ │ │ │ │ ├── McfData.php
│ │ │ │ │ ├── McfDataColumnHeaders.php
│ │ │ │ │ ├── McfDataProfileInfo.php
│ │ │ │ │ ├── McfDataQuery.php
│ │ │ │ │ ├── McfDataRows.php
│ │ │ │ │ ├── McfDataRowsConversionPathValue.php
│ │ │ │ │ ├── Profile.php
│ │ │ │ │ ├── ProfileChildLink.php
│ │ │ │ │ ├── ProfileFilterLink.php
│ │ │ │ │ ├── ProfileFilterLinks.php
│ │ │ │ │ ├── ProfileParentLink.php
│ │ │ │ │ ├── ProfilePermissions.php
│ │ │ │ │ ├── ProfileRef.php
│ │ │ │ │ ├── ProfileSummary.php
│ │ │ │ │ ├── Profiles.php
│ │ │ │ │ ├── RealtimeData.php
│ │ │ │ │ ├── RealtimeDataColumnHeaders.php
│ │ │ │ │ ├── RealtimeDataProfileInfo.php
│ │ │ │ │ ├── RealtimeDataQuery.php
│ │ │ │ │ ├── RemarketingAudience.php
│ │ │ │ │ ├── RemarketingAudienceAudienceDefinition.php
│ │ │ │ │ ├── RemarketingAudienceStateBasedAudienceDefinition.php
│ │ │ │ │ ├── RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php
│ │ │ │ │ ├── RemarketingAudiences.php
│ │ │ │ │ ├── Resource
│ │ │ │ │ │ ├── Data.php
│ │ │ │ │ │ ├── DataGa.php
│ │ │ │ │ │ ├── DataMcf.php
│ │ │ │ │ │ ├── DataRealtime.php
│ │ │ │ │ │ ├── Management.php
│ │ │ │ │ │ ├── ManagementAccountSummaries.php
│ │ │ │ │ │ ├── ManagementAccountUserLinks.php
│ │ │ │ │ │ ├── ManagementAccounts.php
│ │ │ │ │ │ ├── ManagementClientId.php
│ │ │ │ │ │ ├── ManagementCustomDataSources.php
│ │ │ │ │ │ ├── ManagementCustomDimensions.php
│ │ │ │ │ │ ├── ManagementCustomMetrics.php
│ │ │ │ │ │ ├── ManagementExperiments.php
│ │ │ │ │ │ ├── ManagementFilters.php
│ │ │ │ │ │ ├── ManagementGoals.php
│ │ │ │ │ │ ├── ManagementProfileFilterLinks.php
│ │ │ │ │ │ ├── ManagementProfileUserLinks.php
│ │ │ │ │ │ ├── ManagementProfiles.php
│ │ │ │ │ │ ├── ManagementRemarketingAudience.php
│ │ │ │ │ │ ├── ManagementSegments.php
│ │ │ │ │ │ ├── ManagementUnsampledReports.php
│ │ │ │ │ │ ├── ManagementUploads.php
│ │ │ │ │ │ ├── ManagementWebPropertyAdWordsLinks.php
│ │ │ │ │ │ ├── ManagementWebproperties.php
│ │ │ │ │ │ ├── ManagementWebpropertyUserLinks.php
│ │ │ │ │ │ ├── Metadata.php
│ │ │ │ │ │ ├── MetadataColumns.php
│ │ │ │ │ │ ├── Provisioning.php
│ │ │ │ │ │ ├── UserDeletion.php
│ │ │ │ │ │ └── UserDeletionUserDeletionRequest.php
│ │ │ │ │ ├── Segment.php
│ │ │ │ │ ├── Segments.php
│ │ │ │ │ ├── UnsampledReport.php
│ │ │ │ │ ├── UnsampledReportCloudStorageDownloadDetails.php
│ │ │ │ │ ├── UnsampledReportDriveDownloadDetails.php
│ │ │ │ │ ├── UnsampledReports.php
│ │ │ │ │ ├── Upload.php
│ │ │ │ │ ├── Uploads.php
│ │ │ │ │ ├── UserDeletionRequest.php
│ │ │ │ │ ├── UserDeletionRequestId.php
│ │ │ │ │ ├── UserRef.php
│ │ │ │ │ ├── WebPropertyRef.php
│ │ │ │ │ ├── WebPropertySummary.php
│ │ │ │ │ ├── Webproperties.php
│ │ │ │ │ ├── Webproperty.php
│ │ │ │ │ ├── WebpropertyChildLink.php
│ │ │ │ │ ├── WebpropertyParentLink.php
│ │ │ │ │ └── WebpropertyPermissions.php
│ │ │ │ ├── AnalyticsReporting.php
│ │ │ │ ├── AnalyticsReporting
│ │ │ │ │ ├── Activity.php
│ │ │ │ │ ├── Cohort.php
│ │ │ │ │ ├── CohortGroup.php
│ │ │ │ │ ├── ColumnHeader.php
│ │ │ │ │ ├── CustomDimension.php
│ │ │ │ │ ├── DateRange.php
│ │ │ │ │ ├── DateRangeValues.php
│ │ │ │ │ ├── Dimension.php
│ │ │ │ │ ├── DimensionFilter.php
│ │ │ │ │ ├── DimensionFilterClause.php
│ │ │ │ │ ├── DynamicSegment.php
│ │ │ │ │ ├── EcommerceData.php
│ │ │ │ │ ├── EventData.php
│ │ │ │ │ ├── GetReportsRequest.php
│ │ │ │ │ ├── GetReportsResponse.php
│ │ │ │ │ ├── GoalData.php
│ │ │ │ │ ├── GoalSetData.php
│ │ │ │ │ ├── Metric.php
│ │ │ │ │ ├── MetricFilter.php
│ │ │ │ │ ├── MetricFilterClause.php
│ │ │ │ │ ├── MetricHeader.php
│ │ │ │ │ ├── MetricHeaderEntry.php
│ │ │ │ │ ├── OrFiltersForSegment.php
│ │ │ │ │ ├── OrderBy.php
│ │ │ │ │ ├── PageviewData.php
│ │ │ │ │ ├── Pivot.php
│ │ │ │ │ ├── PivotHeader.php
│ │ │ │ │ ├── PivotHeaderEntry.php
│ │ │ │ │ ├── PivotValueRegion.php
│ │ │ │ │ ├── ProductData.php
│ │ │ │ │ ├── Report.php
│ │ │ │ │ ├── ReportData.php
│ │ │ │ │ ├── ReportRequest.php
│ │ │ │ │ ├── ReportRow.php
│ │ │ │ │ ├── Resource
│ │ │ │ │ │ ├── Reports.php
│ │ │ │ │ │ └── UserActivity.php
│ │ │ │ │ ├── ResourceQuotasRemaining.php
│ │ │ │ │ ├── ScreenviewData.php
│ │ │ │ │ ├── SearchUserActivityRequest.php
│ │ │ │ │ ├── SearchUserActivityResponse.php
│ │ │ │ │ ├── Segment.php
│ │ │ │ │ ├── SegmentDefinition.php
│ │ │ │ │ ├── SegmentDimensionFilter.php
│ │ │ │ │ ├── SegmentFilter.php
│ │ │ │ │ ├── SegmentFilterClause.php
│ │ │ │ │ ├── SegmentMetricFilter.php
│ │ │ │ │ ├── SegmentSequenceStep.php
│ │ │ │ │ ├── SequenceSegment.php
│ │ │ │ │ ├── SimpleSegment.php
│ │ │ │ │ ├── TransactionData.php
│ │ │ │ │ ├── User.php
│ │ │ │ │ └── UserActivitySession.php
│ │ │ │ ├── Oauth2.php
│ │ │ │ └── Oauth2
│ │ │ │ │ ├── Resource
│ │ │ │ │ ├── Userinfo.php
│ │ │ │ │ ├── UserinfoV2.php
│ │ │ │ │ └── UserinfoV2Me.php
│ │ │ │ │ ├── Tokeninfo.php
│ │ │ │ │ └── Userinfo.php
│ │ │ ├── synth.metadata
│ │ │ └── synth.py
│ │ ├── apiclient
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ │ ├── AccessToken
│ │ │ │ ├── Revoke.php
│ │ │ │ └── Verify.php
│ │ │ │ ├── AuthHandler
│ │ │ │ ├── AuthHandlerFactory.php
│ │ │ │ ├── Guzzle6AuthHandler.php
│ │ │ │ └── Guzzle7AuthHandler.php
│ │ │ │ ├── Client.php
│ │ │ │ ├── Collection.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Http
│ │ │ │ ├── Batch.php
│ │ │ │ ├── MediaFileUpload.php
│ │ │ │ └── REST.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── Service.php
│ │ │ │ ├── Service
│ │ │ │ ├── Exception.php
│ │ │ │ └── Resource.php
│ │ │ │ ├── Task
│ │ │ │ ├── Composer.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Retryable.php
│ │ │ │ └── Runner.php
│ │ │ │ ├── Utils
│ │ │ │ └── UriTemplate.php
│ │ │ │ └── aliases.php
│ │ ├── auth
│ │ │ ├── COPYING
│ │ │ ├── LICENSE
│ │ │ ├── VERSION
│ │ │ ├── autoload.php
│ │ │ └── src
│ │ │ │ ├── AccessToken.php
│ │ │ │ ├── ApplicationDefaultCredentials.php
│ │ │ │ ├── Cache
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── Item.php
│ │ │ │ ├── MemoryCacheItemPool.php
│ │ │ │ ├── SysVCacheItemPool.php
│ │ │ │ └── TypedItem.php
│ │ │ │ ├── CacheTrait.php
│ │ │ │ ├── CredentialSource
│ │ │ │ ├── AwsNativeSource.php
│ │ │ │ ├── ExecutableSource.php
│ │ │ │ ├── FileSource.php
│ │ │ │ └── UrlSource.php
│ │ │ │ ├── Credentials
│ │ │ │ ├── AppIdentityCredentials.php
│ │ │ │ ├── ExternalAccountCredentials.php
│ │ │ │ ├── GCECredentials.php
│ │ │ │ ├── IAMCredentials.php
│ │ │ │ ├── ImpersonatedServiceAccountCredentials.php
│ │ │ │ ├── InsecureCredentials.php
│ │ │ │ ├── ServiceAccountCredentials.php
│ │ │ │ ├── ServiceAccountJwtAccessCredentials.php
│ │ │ │ └── UserRefreshCredentials.php
│ │ │ │ ├── CredentialsLoader.php
│ │ │ │ ├── ExecutableHandler
│ │ │ │ ├── ExecutableHandler.php
│ │ │ │ └── ExecutableResponseError.php
│ │ │ │ ├── ExternalAccountCredentialSourceInterface.php
│ │ │ │ ├── FetchAuthTokenCache.php
│ │ │ │ ├── FetchAuthTokenInterface.php
│ │ │ │ ├── GCECache.php
│ │ │ │ ├── GetQuotaProjectInterface.php
│ │ │ │ ├── GetUniverseDomainInterface.php
│ │ │ │ ├── HttpHandler
│ │ │ │ ├── Guzzle6HttpHandler.php
│ │ │ │ ├── Guzzle7HttpHandler.php
│ │ │ │ ├── HttpClientCache.php
│ │ │ │ └── HttpHandlerFactory.php
│ │ │ │ ├── Iam.php
│ │ │ │ ├── IamSignerTrait.php
│ │ │ │ ├── MetricsTrait.php
│ │ │ │ ├── Middleware
│ │ │ │ ├── AuthTokenMiddleware.php
│ │ │ │ ├── ProxyAuthTokenMiddleware.php
│ │ │ │ ├── ScopedAccessTokenMiddleware.php
│ │ │ │ └── SimpleMiddleware.php
│ │ │ │ ├── OAuth2.php
│ │ │ │ ├── ProjectIdProviderInterface.php
│ │ │ │ ├── ServiceAccountSignerTrait.php
│ │ │ │ ├── SignBlobInterface.php
│ │ │ │ ├── UpdateMetadataInterface.php
│ │ │ │ └── UpdateMetadataTrait.php
│ │ ├── common-protos
│ │ │ ├── LICENSE
│ │ │ ├── metadata
│ │ │ │ ├── Api
│ │ │ │ │ ├── Annotations.php
│ │ │ │ │ ├── Auth.php
│ │ │ │ │ ├── Backend.php
│ │ │ │ │ ├── Billing.php
│ │ │ │ │ ├── Client.php
│ │ │ │ │ ├── ConfigChange.php
│ │ │ │ │ ├── Consumer.php
│ │ │ │ │ ├── Context.php
│ │ │ │ │ ├── Control.php
│ │ │ │ │ ├── Distribution.php
│ │ │ │ │ ├── Documentation.php
│ │ │ │ │ ├── Endpoint.php
│ │ │ │ │ ├── ErrorReason.php
│ │ │ │ │ ├── FieldBehavior.php
│ │ │ │ │ ├── FieldInfo.php
│ │ │ │ │ ├── Http.php
│ │ │ │ │ ├── Httpbody.php
│ │ │ │ │ ├── Label.php
│ │ │ │ │ ├── LaunchStage.php
│ │ │ │ │ ├── Log.php
│ │ │ │ │ ├── Logging.php
│ │ │ │ │ ├── Metric.php
│ │ │ │ │ ├── MonitoredResource.php
│ │ │ │ │ ├── Monitoring.php
│ │ │ │ │ ├── Policy.php
│ │ │ │ │ ├── Quota.php
│ │ │ │ │ ├── Resource.php
│ │ │ │ │ ├── Routing.php
│ │ │ │ │ ├── Service.php
│ │ │ │ │ ├── SourceInfo.php
│ │ │ │ │ ├── SystemParameter.php
│ │ │ │ │ ├── Usage.php
│ │ │ │ │ └── Visibility.php
│ │ │ │ ├── Cloud
│ │ │ │ │ ├── ExtendedOperations.php
│ │ │ │ │ └── Location
│ │ │ │ │ │ └── Locations.php
│ │ │ │ ├── Iam
│ │ │ │ │ └── V1
│ │ │ │ │ │ ├── IamPolicy.php
│ │ │ │ │ │ ├── Logging
│ │ │ │ │ │ └── AuditData.php
│ │ │ │ │ │ ├── Options.php
│ │ │ │ │ │ └── Policy.php
│ │ │ │ ├── Logging
│ │ │ │ │ └── Type
│ │ │ │ │ │ ├── HttpRequest.php
│ │ │ │ │ │ └── LogSeverity.php
│ │ │ │ ├── Rpc
│ │ │ │ │ ├── Code.php
│ │ │ │ │ ├── Context
│ │ │ │ │ │ ├── AttributeContext.php
│ │ │ │ │ │ └── AuditContext.php
│ │ │ │ │ ├── ErrorDetails.php
│ │ │ │ │ └── Status.php
│ │ │ │ └── Type
│ │ │ │ │ ├── CalendarPeriod.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Date.php
│ │ │ │ │ ├── Datetime.php
│ │ │ │ │ ├── Dayofweek.php
│ │ │ │ │ ├── Decimal.php
│ │ │ │ │ ├── Expr.php
│ │ │ │ │ ├── Fraction.php
│ │ │ │ │ ├── Interval.php
│ │ │ │ │ ├── Latlng.php
│ │ │ │ │ ├── LocalizedText.php
│ │ │ │ │ ├── Money.php
│ │ │ │ │ ├── Month.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ ├── PostalAddress.php
│ │ │ │ │ ├── Quaternion.php
│ │ │ │ │ └── Timeofday.php
│ │ │ ├── renovate.json
│ │ │ └── src
│ │ │ │ ├── Api
│ │ │ │ ├── Advice.php
│ │ │ │ ├── AuthProvider.php
│ │ │ │ ├── AuthRequirement.php
│ │ │ │ ├── Authentication.php
│ │ │ │ ├── AuthenticationRule.php
│ │ │ │ ├── Backend.php
│ │ │ │ ├── BackendRule.php
│ │ │ │ ├── BackendRule
│ │ │ │ │ └── PathTranslation.php
│ │ │ │ ├── Billing.php
│ │ │ │ ├── Billing
│ │ │ │ │ └── BillingDestination.php
│ │ │ │ ├── ChangeType.php
│ │ │ │ ├── ClientLibraryDestination.php
│ │ │ │ ├── ClientLibraryOrganization.php
│ │ │ │ ├── ClientLibrarySettings.php
│ │ │ │ ├── CommonLanguageSettings.php
│ │ │ │ ├── ConfigChange.php
│ │ │ │ ├── Context.php
│ │ │ │ ├── ContextRule.php
│ │ │ │ ├── Control.php
│ │ │ │ ├── CppSettings.php
│ │ │ │ ├── CustomHttpPattern.php
│ │ │ │ ├── Distribution.php
│ │ │ │ ├── Distribution
│ │ │ │ │ ├── BucketOptions.php
│ │ │ │ │ ├── BucketOptions
│ │ │ │ │ │ ├── Explicit.php
│ │ │ │ │ │ ├── Exponential.php
│ │ │ │ │ │ └── Linear.php
│ │ │ │ │ ├── Exemplar.php
│ │ │ │ │ └── Range.php
│ │ │ │ ├── Documentation.php
│ │ │ │ ├── DocumentationRule.php
│ │ │ │ ├── DotnetSettings.php
│ │ │ │ ├── Endpoint.php
│ │ │ │ ├── ErrorReason.php
│ │ │ │ ├── FieldBehavior.php
│ │ │ │ ├── FieldInfo.php
│ │ │ │ ├── FieldInfo
│ │ │ │ │ └── Format.php
│ │ │ │ ├── FieldPolicy.php
│ │ │ │ ├── GoSettings.php
│ │ │ │ ├── Http.php
│ │ │ │ ├── HttpBody.php
│ │ │ │ ├── HttpRule.php
│ │ │ │ ├── JavaSettings.php
│ │ │ │ ├── JwtLocation.php
│ │ │ │ ├── LabelDescriptor.php
│ │ │ │ ├── LabelDescriptor
│ │ │ │ │ └── ValueType.php
│ │ │ │ ├── LaunchStage.php
│ │ │ │ ├── LogDescriptor.php
│ │ │ │ ├── Logging.php
│ │ │ │ ├── Logging
│ │ │ │ │ └── LoggingDestination.php
│ │ │ │ ├── MethodPolicy.php
│ │ │ │ ├── MethodSettings.php
│ │ │ │ ├── MethodSettings
│ │ │ │ │ └── LongRunning.php
│ │ │ │ ├── Metric.php
│ │ │ │ ├── MetricDescriptor.php
│ │ │ │ ├── MetricDescriptor
│ │ │ │ │ ├── MetricDescriptorMetadata.php
│ │ │ │ │ ├── MetricKind.php
│ │ │ │ │ └── ValueType.php
│ │ │ │ ├── MetricRule.php
│ │ │ │ ├── MonitoredResource.php
│ │ │ │ ├── MonitoredResourceDescriptor.php
│ │ │ │ ├── MonitoredResourceMetadata.php
│ │ │ │ ├── Monitoring.php
│ │ │ │ ├── Monitoring
│ │ │ │ │ └── MonitoringDestination.php
│ │ │ │ ├── NodeSettings.php
│ │ │ │ ├── OAuthRequirements.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── PhpSettings.php
│ │ │ │ ├── ProjectProperties.php
│ │ │ │ ├── Property.php
│ │ │ │ ├── Property
│ │ │ │ │ └── PropertyType.php
│ │ │ │ ├── Publishing.php
│ │ │ │ ├── PythonSettings.php
│ │ │ │ ├── Quota.php
│ │ │ │ ├── QuotaLimit.php
│ │ │ │ ├── ResourceDescriptor.php
│ │ │ │ ├── ResourceDescriptor
│ │ │ │ │ ├── History.php
│ │ │ │ │ └── Style.php
│ │ │ │ ├── ResourceReference.php
│ │ │ │ ├── RoutingParameter.php
│ │ │ │ ├── RoutingRule.php
│ │ │ │ ├── RubySettings.php
│ │ │ │ ├── Service.php
│ │ │ │ ├── SourceInfo.php
│ │ │ │ ├── SystemParameter.php
│ │ │ │ ├── SystemParameterRule.php
│ │ │ │ ├── SystemParameters.php
│ │ │ │ ├── TypeReference.php
│ │ │ │ ├── Usage.php
│ │ │ │ ├── UsageRule.php
│ │ │ │ ├── Visibility.php
│ │ │ │ └── VisibilityRule.php
│ │ │ │ ├── Cloud
│ │ │ │ ├── Iam
│ │ │ │ │ └── V1
│ │ │ │ │ │ ├── AuditConfig.php
│ │ │ │ │ │ ├── AuditConfigDelta.php
│ │ │ │ │ │ ├── AuditConfigDelta
│ │ │ │ │ │ └── Action.php
│ │ │ │ │ │ ├── AuditLogConfig.php
│ │ │ │ │ │ ├── AuditLogConfig
│ │ │ │ │ │ └── LogType.php
│ │ │ │ │ │ ├── Binding.php
│ │ │ │ │ │ ├── BindingDelta.php
│ │ │ │ │ │ ├── BindingDelta
│ │ │ │ │ │ └── Action.php
│ │ │ │ │ │ ├── GetIamPolicyRequest.php
│ │ │ │ │ │ ├── GetPolicyOptions.php
│ │ │ │ │ │ ├── Policy.php
│ │ │ │ │ │ ├── PolicyDelta.php
│ │ │ │ │ │ ├── SetIamPolicyRequest.php
│ │ │ │ │ │ ├── TestIamPermissionsRequest.php
│ │ │ │ │ │ └── TestIamPermissionsResponse.php
│ │ │ │ ├── Location
│ │ │ │ │ ├── GetLocationRequest.php
│ │ │ │ │ ├── ListLocationsRequest.php
│ │ │ │ │ ├── ListLocationsResponse.php
│ │ │ │ │ └── Location.php
│ │ │ │ ├── Logging
│ │ │ │ │ └── Type
│ │ │ │ │ │ ├── HttpRequest.php
│ │ │ │ │ │ └── LogSeverity.php
│ │ │ │ └── OperationResponseMapping.php
│ │ │ │ ├── Iam
│ │ │ │ └── V1
│ │ │ │ │ └── Logging
│ │ │ │ │ └── AuditData.php
│ │ │ │ ├── Rpc
│ │ │ │ ├── BadRequest.php
│ │ │ │ ├── BadRequest
│ │ │ │ │ └── FieldViolation.php
│ │ │ │ ├── Code.php
│ │ │ │ ├── Context
│ │ │ │ │ ├── AttributeContext.php
│ │ │ │ │ ├── AttributeContext
│ │ │ │ │ │ ├── Api.php
│ │ │ │ │ │ ├── Auth.php
│ │ │ │ │ │ ├── Peer.php
│ │ │ │ │ │ ├── Request.php
│ │ │ │ │ │ ├── Resource.php
│ │ │ │ │ │ └── Response.php
│ │ │ │ │ └── AuditContext.php
│ │ │ │ ├── DebugInfo.php
│ │ │ │ ├── ErrorInfo.php
│ │ │ │ ├── Help.php
│ │ │ │ ├── Help
│ │ │ │ │ └── Link.php
│ │ │ │ ├── LocalizedMessage.php
│ │ │ │ ├── PreconditionFailure.php
│ │ │ │ ├── PreconditionFailure
│ │ │ │ │ └── Violation.php
│ │ │ │ ├── QuotaFailure.php
│ │ │ │ ├── QuotaFailure
│ │ │ │ │ └── Violation.php
│ │ │ │ ├── RequestInfo.php
│ │ │ │ ├── ResourceInfo.php
│ │ │ │ ├── RetryInfo.php
│ │ │ │ └── Status.php
│ │ │ │ └── Type
│ │ │ │ ├── CalendarPeriod.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Date.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── DayOfWeek.php
│ │ │ │ ├── Decimal.php
│ │ │ │ ├── Expr.php
│ │ │ │ ├── Fraction.php
│ │ │ │ ├── Interval.php
│ │ │ │ ├── LatLng.php
│ │ │ │ ├── LocalizedText.php
│ │ │ │ ├── Money.php
│ │ │ │ ├── Month.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ ├── PhoneNumber
│ │ │ │ └── ShortCode.php
│ │ │ │ ├── PostalAddress.php
│ │ │ │ ├── Quaternion.php
│ │ │ │ ├── TimeOfDay.php
│ │ │ │ └── TimeZone.php
│ │ ├── gax
│ │ │ ├── LICENSE
│ │ │ ├── VERSION
│ │ │ ├── metadata
│ │ │ │ ├── ApiCore
│ │ │ │ │ └── Testing
│ │ │ │ │ │ └── Mocks.php
│ │ │ │ └── Google
│ │ │ │ │ └── ApiCore
│ │ │ │ │ └── Tests
│ │ │ │ │ └── Unit
│ │ │ │ │ └── Example.php
│ │ │ ├── phpstan.neon.dist
│ │ │ ├── renovate.json
│ │ │ └── src
│ │ │ │ ├── AgentHeader.php
│ │ │ │ ├── ApiException.php
│ │ │ │ ├── ApiStatus.php
│ │ │ │ ├── ArrayTrait.php
│ │ │ │ ├── BidiStream.php
│ │ │ │ ├── Call.php
│ │ │ │ ├── ClientOptionsTrait.php
│ │ │ │ ├── ClientStream.php
│ │ │ │ ├── CredentialsWrapper.php
│ │ │ │ ├── FixedSizeCollection.php
│ │ │ │ ├── GPBLabel.php
│ │ │ │ ├── GPBType.php
│ │ │ │ ├── GapicClientTrait.php
│ │ │ │ ├── GrpcSupportTrait.php
│ │ │ │ ├── InsecureCredentialsWrapper.php
│ │ │ │ ├── Middleware
│ │ │ │ ├── CredentialsWrapperMiddleware.php
│ │ │ │ ├── FixedHeaderMiddleware.php
│ │ │ │ ├── MiddlewareInterface.php
│ │ │ │ ├── OperationsMiddleware.php
│ │ │ │ ├── OptionsFilterMiddleware.php
│ │ │ │ ├── PagedMiddleware.php
│ │ │ │ ├── RequestAutoPopulationMiddleware.php
│ │ │ │ ├── ResponseMetadataMiddleware.php
│ │ │ │ └── RetryMiddleware.php
│ │ │ │ ├── OperationResponse.php
│ │ │ │ ├── Options
│ │ │ │ ├── CallOptions.php
│ │ │ │ ├── ClientOptions.php
│ │ │ │ ├── OptionsTrait.php
│ │ │ │ ├── TransportOptions.php
│ │ │ │ └── TransportOptions
│ │ │ │ │ ├── GrpcFallbackTransportOptions.php
│ │ │ │ │ ├── GrpcTransportOptions.php
│ │ │ │ │ └── RestTransportOptions.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── PageStreamingDescriptor.php
│ │ │ │ ├── PagedListResponse.php
│ │ │ │ ├── PathTemplate.php
│ │ │ │ ├── PollingTrait.php
│ │ │ │ ├── RequestBuilder.php
│ │ │ │ ├── RequestParamsHeaderDescriptor.php
│ │ │ │ ├── ResourceHelperTrait.php
│ │ │ │ ├── ResourceTemplate
│ │ │ │ ├── AbsoluteResourceTemplate.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── RelativeResourceTemplate.php
│ │ │ │ ├── ResourceTemplateInterface.php
│ │ │ │ └── Segment.php
│ │ │ │ ├── RetrySettings.php
│ │ │ │ ├── Serializer.php
│ │ │ │ ├── ServerStream.php
│ │ │ │ ├── ServerStreamingCallInterface.php
│ │ │ │ ├── ServiceAddressTrait.php
│ │ │ │ ├── Testing
│ │ │ │ ├── GeneratedTest.php
│ │ │ │ ├── MessageAwareArrayComparator.php
│ │ │ │ ├── MessageAwareExporter.php
│ │ │ │ ├── MockBidiStreamingCall.php
│ │ │ │ ├── MockClientStreamingCall.php
│ │ │ │ ├── MockGrpcTransport.php
│ │ │ │ ├── MockRequest.php
│ │ │ │ ├── MockRequestBody.php
│ │ │ │ ├── MockResponse.php
│ │ │ │ ├── MockServerStreamingCall.php
│ │ │ │ ├── MockStatus.php
│ │ │ │ ├── MockStubTrait.php
│ │ │ │ ├── MockTransport.php
│ │ │ │ ├── MockUnaryCall.php
│ │ │ │ ├── ProtobufGPBEmptyComparator.php
│ │ │ │ ├── ProtobufMessageComparator.php
│ │ │ │ ├── ReceivedRequest.php
│ │ │ │ ├── SerializationTrait.php
│ │ │ │ └── mocks.proto
│ │ │ │ ├── Transport
│ │ │ │ ├── Grpc
│ │ │ │ │ ├── ForwardingCall.php
│ │ │ │ │ ├── ForwardingServerStreamingCall.php
│ │ │ │ │ ├── ForwardingUnaryCall.php
│ │ │ │ │ ├── ServerStreamingCallWrapper.php
│ │ │ │ │ └── UnaryInterceptorInterface.php
│ │ │ │ ├── GrpcFallbackTransport.php
│ │ │ │ ├── GrpcTransport.php
│ │ │ │ ├── HttpUnaryTransportTrait.php
│ │ │ │ ├── Rest
│ │ │ │ │ ├── JsonStreamDecoder.php
│ │ │ │ │ └── RestServerStreamingCall.php
│ │ │ │ ├── RestTransport.php
│ │ │ │ └── TransportInterface.php
│ │ │ │ ├── UriTrait.php
│ │ │ │ ├── ValidationException.php
│ │ │ │ ├── ValidationTrait.php
│ │ │ │ └── Version.php
│ │ ├── grpc-gcp
│ │ │ ├── LICENSE
│ │ │ ├── cloudprober
│ │ │ │ ├── bins
│ │ │ │ │ └── opt
│ │ │ │ │ │ └── grpc_php_plugin
│ │ │ │ ├── cloudprober.cfg
│ │ │ │ ├── codegen.sh
│ │ │ │ └── grpc_gpc_prober
│ │ │ │ │ ├── firestore_probes.php
│ │ │ │ │ ├── prober.php
│ │ │ │ │ ├── spanner_probes.php
│ │ │ │ │ └── stackdriver_util.php
│ │ │ └── src
│ │ │ │ ├── ChannelRef.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── CreatedByDeserializeCheck.php
│ │ │ │ ├── GCPBidiStreamingCall.php
│ │ │ │ ├── GCPCallInvoker.php
│ │ │ │ ├── GCPClientStreamCall.php
│ │ │ │ ├── GCPServerStreamCall.php
│ │ │ │ ├── GCPUnaryCall.php
│ │ │ │ ├── GcpBaseCall.php
│ │ │ │ ├── GcpExtensionChannel.php
│ │ │ │ ├── generated
│ │ │ │ ├── GPBMetadata
│ │ │ │ │ └── GrpcGcp.php
│ │ │ │ └── Grpc
│ │ │ │ │ └── Gcp
│ │ │ │ │ ├── AffinityConfig.php
│ │ │ │ │ ├── AffinityConfig_Command.php
│ │ │ │ │ ├── ApiConfig.php
│ │ │ │ │ ├── ChannelPoolConfig.php
│ │ │ │ │ └── MethodConfig.php
│ │ │ │ └── grpc_gcp.proto
│ │ ├── longrunning
│ │ │ ├── LICENSE
│ │ │ ├── VERSION
│ │ │ ├── metadata
│ │ │ │ └── Longrunning
│ │ │ │ │ └── Operations.php
│ │ │ └── src
│ │ │ │ ├── ApiCore
│ │ │ │ └── LongRunning
│ │ │ │ │ ├── Gapic
│ │ │ │ │ └── OperationsGapicClient.php
│ │ │ │ │ └── OperationsClient.php
│ │ │ │ └── LongRunning
│ │ │ │ ├── CancelOperationRequest.php
│ │ │ │ ├── Client
│ │ │ │ └── OperationsClient.php
│ │ │ │ ├── DeleteOperationRequest.php
│ │ │ │ ├── Gapic
│ │ │ │ └── OperationsGapicClient.php
│ │ │ │ ├── GetOperationRequest.php
│ │ │ │ ├── ListOperationsRequest.php
│ │ │ │ ├── ListOperationsResponse.php
│ │ │ │ ├── Operation.php
│ │ │ │ ├── OperationInfo.php
│ │ │ │ ├── OperationsClient.php
│ │ │ │ ├── OperationsGrpcClient.php
│ │ │ │ ├── WaitOperationRequest.php
│ │ │ │ └── resources
│ │ │ │ ├── operations_client_config.json
│ │ │ │ ├── operations_descriptor_config.php
│ │ │ │ └── operations_rest_client_config.php
│ │ └── protobuf
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ ├── GPBMetadata
│ │ │ └── Google
│ │ │ │ └── Protobuf
│ │ │ │ ├── Any.php
│ │ │ │ ├── Api.php
│ │ │ │ ├── Duration.php
│ │ │ │ ├── FieldMask.php
│ │ │ │ ├── GPBEmpty.php
│ │ │ │ ├── Internal
│ │ │ │ └── Descriptor.php
│ │ │ │ ├── SourceContext.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── Timestamp.php
│ │ │ │ ├── Type.php
│ │ │ │ └── Wrappers.php
│ │ │ ├── Google
│ │ │ └── Protobuf
│ │ │ │ ├── Any.php
│ │ │ │ ├── Api.php
│ │ │ │ ├── BoolValue.php
│ │ │ │ ├── BytesValue.php
│ │ │ │ ├── Descriptor.php
│ │ │ │ ├── DescriptorPool.php
│ │ │ │ ├── DoubleValue.php
│ │ │ │ ├── Duration.php
│ │ │ │ ├── Enum.php
│ │ │ │ ├── EnumDescriptor.php
│ │ │ │ ├── EnumValue.php
│ │ │ │ ├── EnumValueDescriptor.php
│ │ │ │ ├── Field.php
│ │ │ │ ├── Field
│ │ │ │ ├── Cardinality.php
│ │ │ │ └── Kind.php
│ │ │ │ ├── FieldDescriptor.php
│ │ │ │ ├── FieldMask.php
│ │ │ │ ├── Field_Cardinality.php
│ │ │ │ ├── Field_Kind.php
│ │ │ │ ├── FloatValue.php
│ │ │ │ ├── GPBEmpty.php
│ │ │ │ ├── Int32Value.php
│ │ │ │ ├── Int64Value.php
│ │ │ │ ├── Internal
│ │ │ │ ├── AnyBase.php
│ │ │ │ ├── CodedInputStream.php
│ │ │ │ ├── CodedOutputStream.php
│ │ │ │ ├── Descriptor.php
│ │ │ │ ├── DescriptorPool.php
│ │ │ │ ├── DescriptorProto.php
│ │ │ │ ├── DescriptorProto
│ │ │ │ │ ├── ExtensionRange.php
│ │ │ │ │ └── ReservedRange.php
│ │ │ │ ├── DescriptorProto_ExtensionRange.php
│ │ │ │ ├── DescriptorProto_ReservedRange.php
│ │ │ │ ├── EnumBuilderContext.php
│ │ │ │ ├── EnumDescriptor.php
│ │ │ │ ├── EnumDescriptorProto.php
│ │ │ │ ├── EnumDescriptorProto
│ │ │ │ │ └── EnumReservedRange.php
│ │ │ │ ├── EnumDescriptorProto_EnumReservedRange.php
│ │ │ │ ├── EnumOptions.php
│ │ │ │ ├── EnumValueDescriptorProto.php
│ │ │ │ ├── EnumValueOptions.php
│ │ │ │ ├── ExtensionRangeOptions.php
│ │ │ │ ├── FieldDescriptor.php
│ │ │ │ ├── FieldDescriptorProto.php
│ │ │ │ ├── FieldDescriptorProto
│ │ │ │ │ ├── Label.php
│ │ │ │ │ └── Type.php
│ │ │ │ ├── FieldDescriptorProto_Label.php
│ │ │ │ ├── FieldDescriptorProto_Type.php
│ │ │ │ ├── FieldOptions.php
│ │ │ │ ├── FieldOptions
│ │ │ │ │ ├── CType.php
│ │ │ │ │ └── JSType.php
│ │ │ │ ├── FieldOptions_CType.php
│ │ │ │ ├── FieldOptions_JSType.php
│ │ │ │ ├── FileDescriptor.php
│ │ │ │ ├── FileDescriptorProto.php
│ │ │ │ ├── FileDescriptorSet.php
│ │ │ │ ├── FileOptions.php
│ │ │ │ ├── FileOptions
│ │ │ │ │ └── OptimizeMode.php
│ │ │ │ ├── FileOptions_OptimizeMode.php
│ │ │ │ ├── GPBDecodeException.php
│ │ │ │ ├── GPBJsonWire.php
│ │ │ │ ├── GPBLabel.php
│ │ │ │ ├── GPBType.php
│ │ │ │ ├── GPBUtil.php
│ │ │ │ ├── GPBWire.php
│ │ │ │ ├── GPBWireType.php
│ │ │ │ ├── GeneratedCodeInfo.php
│ │ │ │ ├── GeneratedCodeInfo
│ │ │ │ │ └── Annotation.php
│ │ │ │ ├── GeneratedCodeInfo_Annotation.php
│ │ │ │ ├── GetPublicDescriptorTrait.php
│ │ │ │ ├── HasPublicDescriptorTrait.php
│ │ │ │ ├── MapEntry.php
│ │ │ │ ├── MapField.php
│ │ │ │ ├── MapFieldIter.php
│ │ │ │ ├── Message.php
│ │ │ │ ├── MessageBuilderContext.php
│ │ │ │ ├── MessageOptions.php
│ │ │ │ ├── MethodDescriptorProto.php
│ │ │ │ ├── MethodOptions.php
│ │ │ │ ├── MethodOptions
│ │ │ │ │ └── IdempotencyLevel.php
│ │ │ │ ├── MethodOptions_IdempotencyLevel.php
│ │ │ │ ├── OneofDescriptor.php
│ │ │ │ ├── OneofDescriptorProto.php
│ │ │ │ ├── OneofField.php
│ │ │ │ ├── OneofOptions.php
│ │ │ │ ├── RawInputStream.php
│ │ │ │ ├── RepeatedField.php
│ │ │ │ ├── RepeatedFieldIter.php
│ │ │ │ ├── ServiceDescriptorProto.php
│ │ │ │ ├── ServiceOptions.php
│ │ │ │ ├── SourceCodeInfo.php
│ │ │ │ ├── SourceCodeInfo
│ │ │ │ │ └── Location.php
│ │ │ │ ├── SourceCodeInfo_Location.php
│ │ │ │ ├── TimestampBase.php
│ │ │ │ ├── UninterpretedOption.php
│ │ │ │ ├── UninterpretedOption
│ │ │ │ │ └── NamePart.php
│ │ │ │ └── UninterpretedOption_NamePart.php
│ │ │ │ ├── ListValue.php
│ │ │ │ ├── Method.php
│ │ │ │ ├── Mixin.php
│ │ │ │ ├── NullValue.php
│ │ │ │ ├── OneofDescriptor.php
│ │ │ │ ├── Option.php
│ │ │ │ ├── SourceContext.php
│ │ │ │ ├── StringValue.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── Syntax.php
│ │ │ │ ├── Timestamp.php
│ │ │ │ ├── Type.php
│ │ │ │ ├── UInt32Value.php
│ │ │ │ ├── UInt64Value.php
│ │ │ │ └── Value.php
│ │ │ └── phpdoc.dist.xml
│ ├── grpc
│ │ └── grpc
│ │ │ ├── LICENSE
│ │ │ ├── etc
│ │ │ └── roots.pem
│ │ │ └── src
│ │ │ └── lib
│ │ │ ├── AbstractCall.php
│ │ │ ├── BaseStub.php
│ │ │ ├── BidiStreamingCall.php
│ │ │ ├── CallInvoker.php
│ │ │ ├── ClientStreamingCall.php
│ │ │ ├── DefaultCallInvoker.php
│ │ │ ├── Interceptor.php
│ │ │ ├── Internal
│ │ │ └── InterceptorChannel.php
│ │ │ ├── MethodDescriptor.php
│ │ │ ├── RpcServer.php
│ │ │ ├── ServerCallReader.php
│ │ │ ├── ServerCallWriter.php
│ │ │ ├── ServerContext.php
│ │ │ ├── ServerStreamingCall.php
│ │ │ ├── Status.php
│ │ │ └── UnaryCall.php
│ ├── guzzlehttp
│ │ ├── guzzle
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ │ ├── BodySummarizer.php
│ │ │ │ ├── BodySummarizerInterface.php
│ │ │ │ ├── Client.php
│ │ │ │ ├── ClientInterface.php
│ │ │ │ ├── ClientTrait.php
│ │ │ │ ├── Cookie
│ │ │ │ ├── CookieJar.php
│ │ │ │ ├── CookieJarInterface.php
│ │ │ │ ├── FileCookieJar.php
│ │ │ │ ├── SessionCookieJar.php
│ │ │ │ └── SetCookie.php
│ │ │ │ ├── Exception
│ │ │ │ ├── BadResponseException.php
│ │ │ │ ├── ClientException.php
│ │ │ │ ├── ConnectException.php
│ │ │ │ ├── GuzzleException.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── RequestException.php
│ │ │ │ ├── ServerException.php
│ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ └── TransferException.php
│ │ │ │ ├── Handler
│ │ │ │ ├── CurlFactory.php
│ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ ├── CurlHandler.php
│ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ ├── EasyHandle.php
│ │ │ │ ├── HeaderProcessor.php
│ │ │ │ ├── MockHandler.php
│ │ │ │ ├── Proxy.php
│ │ │ │ └── StreamHandler.php
│ │ │ │ ├── HandlerStack.php
│ │ │ │ ├── MessageFormatter.php
│ │ │ │ ├── MessageFormatterInterface.php
│ │ │ │ ├── Middleware.php
│ │ │ │ ├── Pool.php
│ │ │ │ ├── PrepareBodyMiddleware.php
│ │ │ │ ├── RedirectMiddleware.php
│ │ │ │ ├── RequestOptions.php
│ │ │ │ ├── RetryMiddleware.php
│ │ │ │ ├── TransferStats.php
│ │ │ │ ├── Utils.php
│ │ │ │ ├── functions.php
│ │ │ │ └── functions_include.php
│ │ ├── promises
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── CancellationException.php
│ │ │ │ ├── Coroutine.php
│ │ │ │ ├── Create.php
│ │ │ │ ├── Each.php
│ │ │ │ ├── EachPromise.php
│ │ │ │ ├── FulfilledPromise.php
│ │ │ │ ├── Is.php
│ │ │ │ ├── Promise.php
│ │ │ │ ├── PromiseInterface.php
│ │ │ │ ├── PromisorInterface.php
│ │ │ │ ├── RejectedPromise.php
│ │ │ │ ├── RejectionException.php
│ │ │ │ ├── TaskQueue.php
│ │ │ │ ├── TaskQueueInterface.php
│ │ │ │ └── Utils.php
│ │ └── psr7
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ ├── AppendStream.php
│ │ │ ├── BufferStream.php
│ │ │ ├── CachingStream.php
│ │ │ ├── DroppingStream.php
│ │ │ ├── Exception
│ │ │ └── MalformedUriException.php
│ │ │ ├── FnStream.php
│ │ │ ├── Header.php
│ │ │ ├── HttpFactory.php
│ │ │ ├── InflateStream.php
│ │ │ ├── LazyOpenStream.php
│ │ │ ├── LimitStream.php
│ │ │ ├── Message.php
│ │ │ ├── MessageTrait.php
│ │ │ ├── MimeType.php
│ │ │ ├── MultipartStream.php
│ │ │ ├── NoSeekStream.php
│ │ │ ├── PumpStream.php
│ │ │ ├── Query.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── Rfc7230.php
│ │ │ ├── ServerRequest.php
│ │ │ ├── Stream.php
│ │ │ ├── StreamDecoratorTrait.php
│ │ │ ├── StreamWrapper.php
│ │ │ ├── UploadedFile.php
│ │ │ ├── Uri.php
│ │ │ ├── UriComparator.php
│ │ │ ├── UriNormalizer.php
│ │ │ ├── UriResolver.php
│ │ │ └── Utils.php
│ ├── paragonie
│ │ ├── constant_time_encoding
│ │ │ ├── LICENSE.txt
│ │ │ └── src
│ │ │ │ ├── Base32.php
│ │ │ │ ├── Base32Hex.php
│ │ │ │ ├── Base64.php
│ │ │ │ ├── Base64DotSlash.php
│ │ │ │ ├── Base64DotSlashOrdered.php
│ │ │ │ ├── Base64UrlSafe.php
│ │ │ │ ├── Binary.php
│ │ │ │ ├── EncoderInterface.php
│ │ │ │ ├── Encoding.php
│ │ │ │ ├── Hex.php
│ │ │ │ └── RFC4648.php
│ │ └── random_compat
│ │ │ ├── LICENSE
│ │ │ ├── build-phar.sh
│ │ │ ├── dist
│ │ │ ├── random_compat.phar.pubkey
│ │ │ └── random_compat.phar.pubkey.asc
│ │ │ ├── lib
│ │ │ └── random.php
│ │ │ ├── other
│ │ │ └── build_phar.php
│ │ │ ├── psalm-autoload.php
│ │ │ └── psalm.xml
│ ├── phpseclib
│ │ ├── bcmath_compat
│ │ │ ├── lib
│ │ │ │ └── bcmath.php
│ │ │ └── src
│ │ │ │ └── BCMath.php
│ │ └── phpseclib
│ │ │ ├── AUTHORS
│ │ │ ├── LICENSE
│ │ │ └── phpseclib
│ │ │ ├── Common
│ │ │ └── Functions
│ │ │ │ └── Strings.php
│ │ │ ├── Crypt
│ │ │ ├── AES.php
│ │ │ ├── Blowfish.php
│ │ │ ├── ChaCha20.php
│ │ │ ├── Common
│ │ │ │ ├── AsymmetricKey.php
│ │ │ │ ├── BlockCipher.php
│ │ │ │ ├── Formats
│ │ │ │ │ ├── Keys
│ │ │ │ │ │ ├── JWK.php
│ │ │ │ │ │ ├── OpenSSH.php
│ │ │ │ │ │ ├── PKCS.php
│ │ │ │ │ │ ├── PKCS1.php
│ │ │ │ │ │ ├── PKCS8.php
│ │ │ │ │ │ └── PuTTY.php
│ │ │ │ │ └── Signature
│ │ │ │ │ │ └── Raw.php
│ │ │ │ ├── PrivateKey.php
│ │ │ │ ├── PublicKey.php
│ │ │ │ ├── StreamCipher.php
│ │ │ │ ├── SymmetricKey.php
│ │ │ │ └── Traits
│ │ │ │ │ ├── Fingerprint.php
│ │ │ │ │ └── PasswordProtected.php
│ │ │ ├── DES.php
│ │ │ ├── DH.php
│ │ │ ├── DH
│ │ │ │ ├── Formats
│ │ │ │ │ └── Keys
│ │ │ │ │ │ ├── PKCS1.php
│ │ │ │ │ │ └── PKCS8.php
│ │ │ │ ├── Parameters.php
│ │ │ │ ├── PrivateKey.php
│ │ │ │ └── PublicKey.php
│ │ │ ├── DSA.php
│ │ │ ├── DSA
│ │ │ │ ├── Formats
│ │ │ │ │ ├── Keys
│ │ │ │ │ │ ├── OpenSSH.php
│ │ │ │ │ │ ├── PKCS1.php
│ │ │ │ │ │ ├── PKCS8.php
│ │ │ │ │ │ ├── PuTTY.php
│ │ │ │ │ │ ├── Raw.php
│ │ │ │ │ │ └── XML.php
│ │ │ │ │ └── Signature
│ │ │ │ │ │ ├── ASN1.php
│ │ │ │ │ │ ├── Raw.php
│ │ │ │ │ │ └── SSH2.php
│ │ │ │ ├── Parameters.php
│ │ │ │ ├── PrivateKey.php
│ │ │ │ └── PublicKey.php
│ │ │ ├── EC.php
│ │ │ ├── EC
│ │ │ │ ├── BaseCurves
│ │ │ │ │ ├── Base.php
│ │ │ │ │ ├── Binary.php
│ │ │ │ │ ├── KoblitzPrime.php
│ │ │ │ │ ├── Montgomery.php
│ │ │ │ │ ├── Prime.php
│ │ │ │ │ └── TwistedEdwards.php
│ │ │ │ ├── Curves
│ │ │ │ │ ├── Curve25519.php
│ │ │ │ │ ├── Curve448.php
│ │ │ │ │ ├── Ed25519.php
│ │ │ │ │ ├── Ed448.php
│ │ │ │ │ ├── brainpoolP160r1.php
│ │ │ │ │ ├── brainpoolP160t1.php
│ │ │ │ │ ├── brainpoolP192r1.php
│ │ │ │ │ ├── brainpoolP192t1.php
│ │ │ │ │ ├── brainpoolP224r1.php
│ │ │ │ │ ├── brainpoolP224t1.php
│ │ │ │ │ ├── brainpoolP256r1.php
│ │ │ │ │ ├── brainpoolP256t1.php
│ │ │ │ │ ├── brainpoolP320r1.php
│ │ │ │ │ ├── brainpoolP320t1.php
│ │ │ │ │ ├── brainpoolP384r1.php
│ │ │ │ │ ├── brainpoolP384t1.php
│ │ │ │ │ ├── brainpoolP512r1.php
│ │ │ │ │ ├── brainpoolP512t1.php
│ │ │ │ │ ├── nistb233.php
│ │ │ │ │ ├── nistb409.php
│ │ │ │ │ ├── nistk163.php
│ │ │ │ │ ├── nistk233.php
│ │ │ │ │ ├── nistk283.php
│ │ │ │ │ ├── nistk409.php
│ │ │ │ │ ├── nistp192.php
│ │ │ │ │ ├── nistp224.php
│ │ │ │ │ ├── nistp256.php
│ │ │ │ │ ├── nistp384.php
│ │ │ │ │ ├── nistp521.php
│ │ │ │ │ ├── nistt571.php
│ │ │ │ │ ├── prime192v1.php
│ │ │ │ │ ├── prime192v2.php
│ │ │ │ │ ├── prime192v3.php
│ │ │ │ │ ├── prime239v1.php
│ │ │ │ │ ├── prime239v2.php
│ │ │ │ │ ├── prime239v3.php
│ │ │ │ │ ├── prime256v1.php
│ │ │ │ │ ├── secp112r1.php
│ │ │ │ │ ├── secp112r2.php
│ │ │ │ │ ├── secp128r1.php
│ │ │ │ │ ├── secp128r2.php
│ │ │ │ │ ├── secp160k1.php
│ │ │ │ │ ├── secp160r1.php
│ │ │ │ │ ├── secp160r2.php
│ │ │ │ │ ├── secp192k1.php
│ │ │ │ │ ├── secp192r1.php
│ │ │ │ │ ├── secp224k1.php
│ │ │ │ │ ├── secp224r1.php
│ │ │ │ │ ├── secp256k1.php
│ │ │ │ │ ├── secp256r1.php
│ │ │ │ │ ├── secp384r1.php
│ │ │ │ │ ├── secp521r1.php
│ │ │ │ │ ├── sect113r1.php
│ │ │ │ │ ├── sect113r2.php
│ │ │ │ │ ├── sect131r1.php
│ │ │ │ │ ├── sect131r2.php
│ │ │ │ │ ├── sect163k1.php
│ │ │ │ │ ├── sect163r1.php
│ │ │ │ │ ├── sect163r2.php
│ │ │ │ │ ├── sect193r1.php
│ │ │ │ │ ├── sect193r2.php
│ │ │ │ │ ├── sect233k1.php
│ │ │ │ │ ├── sect233r1.php
│ │ │ │ │ ├── sect239k1.php
│ │ │ │ │ ├── sect283k1.php
│ │ │ │ │ ├── sect283r1.php
│ │ │ │ │ ├── sect409k1.php
│ │ │ │ │ ├── sect409r1.php
│ │ │ │ │ ├── sect571k1.php
│ │ │ │ │ └── sect571r1.php
│ │ │ │ ├── Formats
│ │ │ │ │ ├── Keys
│ │ │ │ │ │ ├── Common.php
│ │ │ │ │ │ ├── JWK.php
│ │ │ │ │ │ ├── MontgomeryPrivate.php
│ │ │ │ │ │ ├── MontgomeryPublic.php
│ │ │ │ │ │ ├── OpenSSH.php
│ │ │ │ │ │ ├── PKCS1.php
│ │ │ │ │ │ ├── PKCS8.php
│ │ │ │ │ │ ├── PuTTY.php
│ │ │ │ │ │ ├── XML.php
│ │ │ │ │ │ └── libsodium.php
│ │ │ │ │ └── Signature
│ │ │ │ │ │ ├── ASN1.php
│ │ │ │ │ │ ├── IEEE.php
│ │ │ │ │ │ ├── Raw.php
│ │ │ │ │ │ └── SSH2.php
│ │ │ │ ├── Parameters.php
│ │ │ │ ├── PrivateKey.php
│ │ │ │ └── PublicKey.php
│ │ │ ├── Hash.php
│ │ │ ├── PublicKeyLoader.php
│ │ │ ├── RC2.php
│ │ │ ├── RC4.php
│ │ │ ├── RSA.php
│ │ │ ├── RSA
│ │ │ │ ├── Formats
│ │ │ │ │ └── Keys
│ │ │ │ │ │ ├── JWK.php
│ │ │ │ │ │ ├── MSBLOB.php
│ │ │ │ │ │ ├── OpenSSH.php
│ │ │ │ │ │ ├── PKCS1.php
│ │ │ │ │ │ ├── PKCS8.php
│ │ │ │ │ │ ├── PSS.php
│ │ │ │ │ │ ├── PuTTY.php
│ │ │ │ │ │ ├── Raw.php
│ │ │ │ │ │ └── XML.php
│ │ │ │ ├── PrivateKey.php
│ │ │ │ └── PublicKey.php
│ │ │ ├── Random.php
│ │ │ ├── Rijndael.php
│ │ │ ├── Salsa20.php
│ │ │ ├── TripleDES.php
│ │ │ └── Twofish.php
│ │ │ ├── Exception
│ │ │ ├── BadConfigurationException.php
│ │ │ ├── BadDecryptionException.php
│ │ │ ├── BadModeException.php
│ │ │ ├── ConnectionClosedException.php
│ │ │ ├── FileNotFoundException.php
│ │ │ ├── InconsistentSetupException.php
│ │ │ ├── InsufficientSetupException.php
│ │ │ ├── NoKeyLoadedException.php
│ │ │ ├── NoSupportedAlgorithmsException.php
│ │ │ ├── UnableToConnectException.php
│ │ │ ├── UnsupportedAlgorithmException.php
│ │ │ ├── UnsupportedCurveException.php
│ │ │ ├── UnsupportedFormatException.php
│ │ │ └── UnsupportedOperationException.php
│ │ │ ├── File
│ │ │ ├── ANSI.php
│ │ │ ├── ASN1.php
│ │ │ ├── ASN1
│ │ │ │ ├── Element.php
│ │ │ │ └── Maps
│ │ │ │ │ ├── AccessDescription.php
│ │ │ │ │ ├── AdministrationDomainName.php
│ │ │ │ │ ├── AlgorithmIdentifier.php
│ │ │ │ │ ├── AnotherName.php
│ │ │ │ │ ├── Attribute.php
│ │ │ │ │ ├── AttributeType.php
│ │ │ │ │ ├── AttributeTypeAndValue.php
│ │ │ │ │ ├── AttributeValue.php
│ │ │ │ │ ├── Attributes.php
│ │ │ │ │ ├── AuthorityInfoAccessSyntax.php
│ │ │ │ │ ├── AuthorityKeyIdentifier.php
│ │ │ │ │ ├── BaseDistance.php
│ │ │ │ │ ├── BasicConstraints.php
│ │ │ │ │ ├── BuiltInDomainDefinedAttribute.php
│ │ │ │ │ ├── BuiltInDomainDefinedAttributes.php
│ │ │ │ │ ├── BuiltInStandardAttributes.php
│ │ │ │ │ ├── CPSuri.php
│ │ │ │ │ ├── CRLDistributionPoints.php
│ │ │ │ │ ├── CRLNumber.php
│ │ │ │ │ ├── CRLReason.php
│ │ │ │ │ ├── CertPolicyId.php
│ │ │ │ │ ├── Certificate.php
│ │ │ │ │ ├── CertificateIssuer.php
│ │ │ │ │ ├── CertificateList.php
│ │ │ │ │ ├── CertificatePolicies.php
│ │ │ │ │ ├── CertificateSerialNumber.php
│ │ │ │ │ ├── CertificationRequest.php
│ │ │ │ │ ├── CertificationRequestInfo.php
│ │ │ │ │ ├── Characteristic_two.php
│ │ │ │ │ ├── CountryName.php
│ │ │ │ │ ├── Curve.php
│ │ │ │ │ ├── DHParameter.php
│ │ │ │ │ ├── DSAParams.php
│ │ │ │ │ ├── DSAPrivateKey.php
│ │ │ │ │ ├── DSAPublicKey.php
│ │ │ │ │ ├── DigestInfo.php
│ │ │ │ │ ├── DirectoryString.php
│ │ │ │ │ ├── DisplayText.php
│ │ │ │ │ ├── DistributionPoint.php
│ │ │ │ │ ├── DistributionPointName.php
│ │ │ │ │ ├── DssSigValue.php
│ │ │ │ │ ├── ECParameters.php
│ │ │ │ │ ├── ECPoint.php
│ │ │ │ │ ├── ECPrivateKey.php
│ │ │ │ │ ├── EDIPartyName.php
│ │ │ │ │ ├── EcdsaSigValue.php
│ │ │ │ │ ├── EncryptedData.php
│ │ │ │ │ ├── EncryptedPrivateKeyInfo.php
│ │ │ │ │ ├── ExtKeyUsageSyntax.php
│ │ │ │ │ ├── Extension.php
│ │ │ │ │ ├── ExtensionAttribute.php
│ │ │ │ │ ├── ExtensionAttributes.php
│ │ │ │ │ ├── Extensions.php
│ │ │ │ │ ├── FieldElement.php
│ │ │ │ │ ├── FieldID.php
│ │ │ │ │ ├── GeneralName.php
│ │ │ │ │ ├── GeneralNames.php
│ │ │ │ │ ├── GeneralSubtree.php
│ │ │ │ │ ├── GeneralSubtrees.php
│ │ │ │ │ ├── HashAlgorithm.php
│ │ │ │ │ ├── HoldInstructionCode.php
│ │ │ │ │ ├── InvalidityDate.php
│ │ │ │ │ ├── IssuerAltName.php
│ │ │ │ │ ├── IssuingDistributionPoint.php
│ │ │ │ │ ├── KeyIdentifier.php
│ │ │ │ │ ├── KeyPurposeId.php
│ │ │ │ │ ├── KeyUsage.php
│ │ │ │ │ ├── MaskGenAlgorithm.php
│ │ │ │ │ ├── Name.php
│ │ │ │ │ ├── NameConstraints.php
│ │ │ │ │ ├── NetworkAddress.php
│ │ │ │ │ ├── NoticeReference.php
│ │ │ │ │ ├── NumericUserIdentifier.php
│ │ │ │ │ ├── ORAddress.php
│ │ │ │ │ ├── OneAsymmetricKey.php
│ │ │ │ │ ├── OrganizationName.php
│ │ │ │ │ ├── OrganizationalUnitNames.php
│ │ │ │ │ ├── OtherPrimeInfo.php
│ │ │ │ │ ├── OtherPrimeInfos.php
│ │ │ │ │ ├── PBEParameter.php
│ │ │ │ │ ├── PBES2params.php
│ │ │ │ │ ├── PBKDF2params.php
│ │ │ │ │ ├── PBMAC1params.php
│ │ │ │ │ ├── PKCS9String.php
│ │ │ │ │ ├── Pentanomial.php
│ │ │ │ │ ├── PersonalName.php
│ │ │ │ │ ├── PolicyInformation.php
│ │ │ │ │ ├── PolicyMappings.php
│ │ │ │ │ ├── PolicyQualifierId.php
│ │ │ │ │ ├── PolicyQualifierInfo.php
│ │ │ │ │ ├── PostalAddress.php
│ │ │ │ │ ├── Prime_p.php
│ │ │ │ │ ├── PrivateDomainName.php
│ │ │ │ │ ├── PrivateKey.php
│ │ │ │ │ ├── PrivateKeyInfo.php
│ │ │ │ │ ├── PrivateKeyUsagePeriod.php
│ │ │ │ │ ├── PublicKey.php
│ │ │ │ │ ├── PublicKeyAndChallenge.php
│ │ │ │ │ ├── PublicKeyInfo.php
│ │ │ │ │ ├── RC2CBCParameter.php
│ │ │ │ │ ├── RDNSequence.php
│ │ │ │ │ ├── RSAPrivateKey.php
│ │ │ │ │ ├── RSAPublicKey.php
│ │ │ │ │ ├── RSASSA_PSS_params.php
│ │ │ │ │ ├── ReasonFlags.php
│ │ │ │ │ ├── RelativeDistinguishedName.php
│ │ │ │ │ ├── RevokedCertificate.php
│ │ │ │ │ ├── SignedPublicKeyAndChallenge.php
│ │ │ │ │ ├── SpecifiedECDomain.php
│ │ │ │ │ ├── SubjectAltName.php
│ │ │ │ │ ├── SubjectDirectoryAttributes.php
│ │ │ │ │ ├── SubjectInfoAccessSyntax.php
│ │ │ │ │ ├── SubjectPublicKeyInfo.php
│ │ │ │ │ ├── TBSCertList.php
│ │ │ │ │ ├── TBSCertificate.php
│ │ │ │ │ ├── TerminalIdentifier.php
│ │ │ │ │ ├── Time.php
│ │ │ │ │ ├── Trinomial.php
│ │ │ │ │ ├── UniqueIdentifier.php
│ │ │ │ │ ├── UserNotice.php
│ │ │ │ │ ├── Validity.php
│ │ │ │ │ ├── netscape_ca_policy_url.php
│ │ │ │ │ ├── netscape_cert_type.php
│ │ │ │ │ └── netscape_comment.php
│ │ │ └── X509.php
│ │ │ ├── Math
│ │ │ ├── BigInteger.php
│ │ │ ├── BigInteger
│ │ │ │ └── Engines
│ │ │ │ │ ├── BCMath.php
│ │ │ │ │ ├── BCMath
│ │ │ │ │ ├── Base.php
│ │ │ │ │ ├── BuiltIn.php
│ │ │ │ │ ├── DefaultEngine.php
│ │ │ │ │ ├── OpenSSL.php
│ │ │ │ │ └── Reductions
│ │ │ │ │ │ ├── Barrett.php
│ │ │ │ │ │ └── EvalBarrett.php
│ │ │ │ │ ├── Engine.php
│ │ │ │ │ ├── GMP.php
│ │ │ │ │ ├── GMP
│ │ │ │ │ └── DefaultEngine.php
│ │ │ │ │ ├── OpenSSL.php
│ │ │ │ │ ├── PHP.php
│ │ │ │ │ ├── PHP
│ │ │ │ │ ├── Base.php
│ │ │ │ │ ├── DefaultEngine.php
│ │ │ │ │ ├── Montgomery.php
│ │ │ │ │ ├── OpenSSL.php
│ │ │ │ │ └── Reductions
│ │ │ │ │ │ ├── Barrett.php
│ │ │ │ │ │ ├── Classic.php
│ │ │ │ │ │ ├── EvalBarrett.php
│ │ │ │ │ │ ├── Montgomery.php
│ │ │ │ │ │ ├── MontgomeryMult.php
│ │ │ │ │ │ └── PowerOfTwo.php
│ │ │ │ │ ├── PHP32.php
│ │ │ │ │ └── PHP64.php
│ │ │ ├── BinaryField.php
│ │ │ ├── BinaryField
│ │ │ │ └── Integer.php
│ │ │ ├── Common
│ │ │ │ ├── FiniteField.php
│ │ │ │ └── FiniteField
│ │ │ │ │ └── Integer.php
│ │ │ ├── PrimeField.php
│ │ │ └── PrimeField
│ │ │ │ └── Integer.php
│ │ │ ├── Net
│ │ │ ├── SFTP.php
│ │ │ ├── SFTP
│ │ │ │ └── Stream.php
│ │ │ └── SSH2.php
│ │ │ ├── System
│ │ │ └── SSH
│ │ │ │ ├── Agent.php
│ │ │ │ ├── Agent
│ │ │ │ └── Identity.php
│ │ │ │ └── Common
│ │ │ │ └── Traits
│ │ │ │ └── ReadBytes.php
│ │ │ ├── bootstrap.php
│ │ │ └── openssl.cnf
│ ├── psr
│ │ ├── cache
│ │ │ ├── LICENSE.txt
│ │ │ └── src
│ │ │ │ ├── CacheException.php
│ │ │ │ ├── CacheItemInterface.php
│ │ │ │ ├── CacheItemPoolInterface.php
│ │ │ │ └── InvalidArgumentException.php
│ │ ├── http-client
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ │ ├── ClientExceptionInterface.php
│ │ │ │ ├── ClientInterface.php
│ │ │ │ ├── NetworkExceptionInterface.php
│ │ │ │ └── RequestExceptionInterface.php
│ │ ├── http-factory
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ │ ├── RequestFactoryInterface.php
│ │ │ │ ├── ResponseFactoryInterface.php
│ │ │ │ ├── ServerRequestFactoryInterface.php
│ │ │ │ ├── StreamFactoryInterface.php
│ │ │ │ ├── UploadedFileFactoryInterface.php
│ │ │ │ └── UriFactoryInterface.php
│ │ └── http-message
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ ├── MessageInterface.php
│ │ │ ├── RequestInterface.php
│ │ │ ├── ResponseInterface.php
│ │ │ ├── ServerRequestInterface.php
│ │ │ ├── StreamInterface.php
│ │ │ ├── UploadedFileInterface.php
│ │ │ └── UriInterface.php
│ ├── ralouphie
│ │ └── getallheaders
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ └── getallheaders.php
│ ├── ramsey
│ │ ├── collection
│ │ │ ├── LICENSE
│ │ │ ├── conventional-commits.json
│ │ │ └── src
│ │ │ │ ├── AbstractArray.php
│ │ │ │ ├── AbstractCollection.php
│ │ │ │ ├── AbstractSet.php
│ │ │ │ ├── ArrayInterface.php
│ │ │ │ ├── Collection.php
│ │ │ │ ├── CollectionInterface.php
│ │ │ │ ├── DoubleEndedQueue.php
│ │ │ │ ├── DoubleEndedQueueInterface.php
│ │ │ │ ├── Exception
│ │ │ │ ├── CollectionException.php
│ │ │ │ ├── CollectionMismatchException.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── InvalidPropertyOrMethod.php
│ │ │ │ ├── NoSuchElementException.php
│ │ │ │ ├── OutOfBoundsException.php
│ │ │ │ └── UnsupportedOperationException.php
│ │ │ │ ├── GenericArray.php
│ │ │ │ ├── Map
│ │ │ │ ├── AbstractMap.php
│ │ │ │ ├── AbstractTypedMap.php
│ │ │ │ ├── AssociativeArrayMap.php
│ │ │ │ ├── MapInterface.php
│ │ │ │ ├── NamedParameterMap.php
│ │ │ │ ├── TypedMap.php
│ │ │ │ └── TypedMapInterface.php
│ │ │ │ ├── Queue.php
│ │ │ │ ├── QueueInterface.php
│ │ │ │ ├── Set.php
│ │ │ │ ├── Sort.php
│ │ │ │ └── Tool
│ │ │ │ ├── TypeTrait.php
│ │ │ │ ├── ValueExtractorTrait.php
│ │ │ │ └── ValueToStringTrait.php
│ │ └── uuid
│ │ │ ├── LICENSE
│ │ │ └── src
│ │ │ ├── BinaryUtils.php
│ │ │ ├── Builder
│ │ │ ├── BuilderCollection.php
│ │ │ ├── DefaultUuidBuilder.php
│ │ │ ├── DegradedUuidBuilder.php
│ │ │ ├── FallbackBuilder.php
│ │ │ └── UuidBuilderInterface.php
│ │ │ ├── Codec
│ │ │ ├── CodecInterface.php
│ │ │ ├── GuidStringCodec.php
│ │ │ ├── OrderedTimeCodec.php
│ │ │ ├── StringCodec.php
│ │ │ ├── TimestampFirstCombCodec.php
│ │ │ └── TimestampLastCombCodec.php
│ │ │ ├── Converter
│ │ │ ├── Number
│ │ │ │ ├── BigNumberConverter.php
│ │ │ │ ├── DegradedNumberConverter.php
│ │ │ │ └── GenericNumberConverter.php
│ │ │ ├── NumberConverterInterface.php
│ │ │ ├── Time
│ │ │ │ ├── BigNumberTimeConverter.php
│ │ │ │ ├── DegradedTimeConverter.php
│ │ │ │ ├── GenericTimeConverter.php
│ │ │ │ ├── PhpTimeConverter.php
│ │ │ │ └── UnixTimeConverter.php
│ │ │ └── TimeConverterInterface.php
│ │ │ ├── DegradedUuid.php
│ │ │ ├── DeprecatedUuidInterface.php
│ │ │ ├── DeprecatedUuidMethodsTrait.php
│ │ │ ├── Exception
│ │ │ ├── BuilderNotFoundException.php
│ │ │ ├── DateTimeException.php
│ │ │ ├── DceSecurityException.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── InvalidBytesException.php
│ │ │ ├── InvalidUuidStringException.php
│ │ │ ├── NameException.php
│ │ │ ├── NodeException.php
│ │ │ ├── RandomSourceException.php
│ │ │ ├── TimeSourceException.php
│ │ │ ├── UnableToBuildUuidException.php
│ │ │ ├── UnsupportedOperationException.php
│ │ │ └── UuidExceptionInterface.php
│ │ │ ├── FeatureSet.php
│ │ │ ├── Fields
│ │ │ ├── FieldsInterface.php
│ │ │ └── SerializableFieldsTrait.php
│ │ │ ├── Generator
│ │ │ ├── CombGenerator.php
│ │ │ ├── DceSecurityGenerator.php
│ │ │ ├── DceSecurityGeneratorInterface.php
│ │ │ ├── DefaultNameGenerator.php
│ │ │ ├── DefaultTimeGenerator.php
│ │ │ ├── NameGeneratorFactory.php
│ │ │ ├── NameGeneratorInterface.php
│ │ │ ├── PeclUuidNameGenerator.php
│ │ │ ├── PeclUuidRandomGenerator.php
│ │ │ ├── PeclUuidTimeGenerator.php
│ │ │ ├── RandomBytesGenerator.php
│ │ │ ├── RandomGeneratorFactory.php
│ │ │ ├── RandomGeneratorInterface.php
│ │ │ ├── RandomLibAdapter.php
│ │ │ ├── TimeGeneratorFactory.php
│ │ │ ├── TimeGeneratorInterface.php
│ │ │ └── UnixTimeGenerator.php
│ │ │ ├── Guid
│ │ │ ├── Fields.php
│ │ │ ├── Guid.php
│ │ │ └── GuidBuilder.php
│ │ │ ├── Lazy
│ │ │ └── LazyUuidFromString.php
│ │ │ ├── Math
│ │ │ ├── BrickMathCalculator.php
│ │ │ ├── CalculatorInterface.php
│ │ │ └── RoundingMode.php
│ │ │ ├── Nonstandard
│ │ │ ├── Fields.php
│ │ │ ├── Uuid.php
│ │ │ ├── UuidBuilder.php
│ │ │ └── UuidV6.php
│ │ │ ├── Provider
│ │ │ ├── Dce
│ │ │ │ └── SystemDceSecurityProvider.php
│ │ │ ├── DceSecurityProviderInterface.php
│ │ │ ├── Node
│ │ │ │ ├── FallbackNodeProvider.php
│ │ │ │ ├── NodeProviderCollection.php
│ │ │ │ ├── RandomNodeProvider.php
│ │ │ │ ├── StaticNodeProvider.php
│ │ │ │ └── SystemNodeProvider.php
│ │ │ ├── NodeProviderInterface.php
│ │ │ ├── Time
│ │ │ │ ├── FixedTimeProvider.php
│ │ │ │ └── SystemTimeProvider.php
│ │ │ └── TimeProviderInterface.php
│ │ │ ├── Rfc4122
│ │ │ ├── Fields.php
│ │ │ ├── FieldsInterface.php
│ │ │ ├── MaxTrait.php
│ │ │ ├── MaxUuid.php
│ │ │ ├── NilTrait.php
│ │ │ ├── NilUuid.php
│ │ │ ├── TimeTrait.php
│ │ │ ├── UuidBuilder.php
│ │ │ ├── UuidInterface.php
│ │ │ ├── UuidV1.php
│ │ │ ├── UuidV2.php
│ │ │ ├── UuidV3.php
│ │ │ ├── UuidV4.php
│ │ │ ├── UuidV5.php
│ │ │ ├── UuidV6.php
│ │ │ ├── UuidV7.php
│ │ │ ├── UuidV8.php
│ │ │ ├── Validator.php
│ │ │ ├── VariantTrait.php
│ │ │ └── VersionTrait.php
│ │ │ ├── Type
│ │ │ ├── Decimal.php
│ │ │ ├── Hexadecimal.php
│ │ │ ├── Integer.php
│ │ │ ├── NumberInterface.php
│ │ │ ├── Time.php
│ │ │ └── TypeInterface.php
│ │ │ ├── Uuid.php
│ │ │ ├── UuidFactory.php
│ │ │ ├── UuidFactoryInterface.php
│ │ │ ├── UuidInterface.php
│ │ │ ├── Validator
│ │ │ ├── GenericValidator.php
│ │ │ └── ValidatorInterface.php
│ │ │ └── functions.php
│ ├── symfony
│ │ └── deprecation-contracts
│ │ │ ├── LICENSE
│ │ │ └── function.php
│ └── vendor
│ │ ├── autoload.php
│ │ └── composer
│ │ ├── ClassLoader.php
│ │ ├── LICENSE
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ └── autoload_static.php
└── scoper-autoload.php
└── vue
├── dist
├── GoogleAnalyticsImporter.umd.js
├── GoogleAnalyticsImporter.umd.min.js
└── umd.metadata.json
└── src
├── AdminPage
├── AdminPage.vue
└── CommonConnect.vue
├── ClientConfig
└── ClientConfig.vue
├── Configure
├── ConfigureConnection.less
└── ConfigureConnection.vue
├── ImportScheduler
└── ImportSchedulerGA4.vue
├── ImportStatus
├── ImportStatus.less
├── ImportStatus.vue
└── ImportStatusRow.vue
├── index.ts
└── onWidgetLoaded.ts
/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/.gitattributes
--------------------------------------------------------------------------------
/.github/workflows/matomo-tests.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/.github/workflows/matomo-tests.yml
--------------------------------------------------------------------------------
/.github/workflows/phpcs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/.github/workflows/phpcs.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/.gitignore
--------------------------------------------------------------------------------
/ApiQuotaHelper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/ApiQuotaHelper.php
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/CHANGELOG.md
--------------------------------------------------------------------------------
/CannotImportCustomDimensionException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/CannotImportCustomDimensionException.php
--------------------------------------------------------------------------------
/CannotImportCustomDimensionGA4Exception.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/CannotImportCustomDimensionGA4Exception.php
--------------------------------------------------------------------------------
/CannotImportGoalException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/CannotImportGoalException.php
--------------------------------------------------------------------------------
/CannotProcessImportException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/CannotProcessImportException.php
--------------------------------------------------------------------------------
/Commands/ArchiveImportedData.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Commands/ArchiveImportedData.php
--------------------------------------------------------------------------------
/Commands/GenerateGaTestData.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Commands/GenerateGaTestData.php
--------------------------------------------------------------------------------
/Commands/ImportGA4Reports.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Commands/ImportGA4Reports.php
--------------------------------------------------------------------------------
/Commands/ImportReports.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Commands/ImportReports.php
--------------------------------------------------------------------------------
/Controller.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Controller.php
--------------------------------------------------------------------------------
/Diagnostic/RequiredExecutablesCheck.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Diagnostic/RequiredExecutablesCheck.php
--------------------------------------------------------------------------------
/Diagnostic/RequiredFunctionsCheck.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Diagnostic/RequiredFunctionsCheck.php
--------------------------------------------------------------------------------
/Exceptions/CloudApiQuotaExceeded.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Exceptions/CloudApiQuotaExceeded.php
--------------------------------------------------------------------------------
/Google/Authorization.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/Authorization.php
--------------------------------------------------------------------------------
/Google/AuthorizationGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/AuthorizationGA4.php
--------------------------------------------------------------------------------
/Google/DailyRateLimitReached.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/DailyRateLimitReached.php
--------------------------------------------------------------------------------
/Google/GoogleAnalyticsGA4QueryService.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleAnalyticsGA4QueryService.php
--------------------------------------------------------------------------------
/Google/GoogleAnalyticsQueryService.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleAnalyticsQueryService.php
--------------------------------------------------------------------------------
/Google/GoogleCustomDimensionMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleCustomDimensionMapper.php
--------------------------------------------------------------------------------
/Google/GoogleGA4CustomDimensionMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleGA4CustomDimensionMapper.php
--------------------------------------------------------------------------------
/Google/GoogleGA4GoalMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleGA4GoalMapper.php
--------------------------------------------------------------------------------
/Google/GoogleGA4MetricMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleGA4MetricMapper.php
--------------------------------------------------------------------------------
/Google/GoogleGA4QueryObjectFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleGA4QueryObjectFactory.php
--------------------------------------------------------------------------------
/Google/GoogleGA4ResponseDataTableFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleGA4ResponseDataTableFactory.php
--------------------------------------------------------------------------------
/Google/GoogleGoalMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleGoalMapper.php
--------------------------------------------------------------------------------
/Google/GoogleMetricMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleMetricMapper.php
--------------------------------------------------------------------------------
/Google/GoogleQueryObjectFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleQueryObjectFactory.php
--------------------------------------------------------------------------------
/Google/GoogleResponseDataTableFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/GoogleResponseDataTableFactory.php
--------------------------------------------------------------------------------
/Google/HourlyRateLimitReached.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/HourlyRateLimitReached.php
--------------------------------------------------------------------------------
/Google/SearchEngineMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Google/SearchEngineMapper.php
--------------------------------------------------------------------------------
/GoogleAnalyticsImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/GoogleAnalyticsImporter.php
--------------------------------------------------------------------------------
/IdMapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/IdMapper.php
--------------------------------------------------------------------------------
/ImportConfiguration.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/ImportConfiguration.php
--------------------------------------------------------------------------------
/ImportLock.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/ImportLock.php
--------------------------------------------------------------------------------
/ImportStatus.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/ImportStatus.php
--------------------------------------------------------------------------------
/ImportWasCancelledException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/ImportWasCancelledException.php
--------------------------------------------------------------------------------
/Importer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importer.php
--------------------------------------------------------------------------------
/ImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/ImporterGA4.php
--------------------------------------------------------------------------------
/Importers/Actions/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Actions/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/Actions/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Actions/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/CustomDimensions/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/CustomDimensions/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/CustomDimensions/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/CustomDimensions/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/CustomVariables/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/CustomVariables/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/CustomVariables/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/CustomVariables/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/DevicesDetection/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/DevicesDetection/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/DevicesDetection/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/DevicesDetection/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/Events/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Events/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/Events/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Events/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/Goals/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Goals/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/Goals/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Goals/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/MarketingCampaignsReporting/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/MarketingCampaignsReporting/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/Referrers/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Referrers/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/Referrers/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Referrers/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/Resolution/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Resolution/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/Resolution/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/Resolution/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/UserCountry/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/UserCountry/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/UserCountry/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/UserCountry/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/UserLanguage/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/UserLanguage/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/UserLanguage/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/UserLanguage/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/VisitFrequency/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitFrequency/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/VisitFrequency/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitFrequency/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/VisitTime/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitTime/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/VisitTime/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitTime/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/VisitorInterest/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitorInterest/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/VisitorInterest/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitorInterest/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Importers/VisitsSummary/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitsSummary/RecordImporter.php
--------------------------------------------------------------------------------
/Importers/VisitsSummary/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Importers/VisitsSummary/RecordImporterGA4.php
--------------------------------------------------------------------------------
/Input/EndDate.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Input/EndDate.php
--------------------------------------------------------------------------------
/Input/MaxEndDateReached.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Input/MaxEndDateReached.php
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/LICENSE
--------------------------------------------------------------------------------
/Logger/LogToSingleFileProcessor.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Logger/LogToSingleFileProcessor.php
--------------------------------------------------------------------------------
/Menu.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Menu.php
--------------------------------------------------------------------------------
/Monolog/Handler/GASystemLogHandler.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Monolog/Handler/GASystemLogHandler.php
--------------------------------------------------------------------------------
/OutOfCustomDimensionsException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/OutOfCustomDimensionsException.php
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/README.md
--------------------------------------------------------------------------------
/RecordImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/RecordImporter.php
--------------------------------------------------------------------------------
/RecordImporterGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/RecordImporterGA4.php
--------------------------------------------------------------------------------
/RecordInserter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/RecordInserter.php
--------------------------------------------------------------------------------
/SiteContentDetection/GoogleAnalyticsImporter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/SiteContentDetection/GoogleAnalyticsImporter.php
--------------------------------------------------------------------------------
/TESTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/TESTING.md
--------------------------------------------------------------------------------
/TESTINGGA4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/TESTINGGA4.md
--------------------------------------------------------------------------------
/Tasks.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/Tasks.php
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/composer.json
--------------------------------------------------------------------------------
/composer.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/composer.lock
--------------------------------------------------------------------------------
/config/config.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/config/config.php
--------------------------------------------------------------------------------
/images/ga-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/images/ga-icon.svg
--------------------------------------------------------------------------------
/javascripts/configureImportNotification.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/javascripts/configureImportNotification.js
--------------------------------------------------------------------------------
/javascripts/googleAnalyticsImporter.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/javascripts/googleAnalyticsImporter.js
--------------------------------------------------------------------------------
/lang/am.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/am.json
--------------------------------------------------------------------------------
/lang/ar.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ar.json
--------------------------------------------------------------------------------
/lang/az.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/az.json
--------------------------------------------------------------------------------
/lang/be.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/be.json
--------------------------------------------------------------------------------
/lang/bg.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/bg.json
--------------------------------------------------------------------------------
/lang/bn.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/bn.json
--------------------------------------------------------------------------------
/lang/bs.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/bs.json
--------------------------------------------------------------------------------
/lang/ca.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ca.json
--------------------------------------------------------------------------------
/lang/cs.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/cs.json
--------------------------------------------------------------------------------
/lang/cy.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/cy.json
--------------------------------------------------------------------------------
/lang/da.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/da.json
--------------------------------------------------------------------------------
/lang/de.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/de.json
--------------------------------------------------------------------------------
/lang/dv.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/lang/el.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/el.json
--------------------------------------------------------------------------------
/lang/en.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/en.json
--------------------------------------------------------------------------------
/lang/eo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/eo.json
--------------------------------------------------------------------------------
/lang/es-ar.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/es-ar.json
--------------------------------------------------------------------------------
/lang/es.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/es.json
--------------------------------------------------------------------------------
/lang/et.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/et.json
--------------------------------------------------------------------------------
/lang/eu.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/eu.json
--------------------------------------------------------------------------------
/lang/fa.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/fa.json
--------------------------------------------------------------------------------
/lang/fi.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/fi.json
--------------------------------------------------------------------------------
/lang/fr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/fr.json
--------------------------------------------------------------------------------
/lang/ga.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ga.json
--------------------------------------------------------------------------------
/lang/gl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/gl.json
--------------------------------------------------------------------------------
/lang/gu.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/gu.json
--------------------------------------------------------------------------------
/lang/he.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/he.json
--------------------------------------------------------------------------------
/lang/hi.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/hi.json
--------------------------------------------------------------------------------
/lang/hr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/hr.json
--------------------------------------------------------------------------------
/lang/hu.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/hu.json
--------------------------------------------------------------------------------
/lang/hy.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/hy.json
--------------------------------------------------------------------------------
/lang/id.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/id.json
--------------------------------------------------------------------------------
/lang/is.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/is.json
--------------------------------------------------------------------------------
/lang/it.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/it.json
--------------------------------------------------------------------------------
/lang/ja.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ja.json
--------------------------------------------------------------------------------
/lang/ka.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ka.json
--------------------------------------------------------------------------------
/lang/ko.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ko.json
--------------------------------------------------------------------------------
/lang/ku.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ku.json
--------------------------------------------------------------------------------
/lang/lb.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/lb.json
--------------------------------------------------------------------------------
/lang/lt.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/lt.json
--------------------------------------------------------------------------------
/lang/lv.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/lv.json
--------------------------------------------------------------------------------
/lang/ms.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ms.json
--------------------------------------------------------------------------------
/lang/nb.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/nb.json
--------------------------------------------------------------------------------
/lang/nl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/nl.json
--------------------------------------------------------------------------------
/lang/nn.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/nn.json
--------------------------------------------------------------------------------
/lang/pl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/pl.json
--------------------------------------------------------------------------------
/lang/pt-br.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/pt-br.json
--------------------------------------------------------------------------------
/lang/pt.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/pt.json
--------------------------------------------------------------------------------
/lang/ro.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ro.json
--------------------------------------------------------------------------------
/lang/ru.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ru.json
--------------------------------------------------------------------------------
/lang/si.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/si.json
--------------------------------------------------------------------------------
/lang/sk.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/sk.json
--------------------------------------------------------------------------------
/lang/sl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/sl.json
--------------------------------------------------------------------------------
/lang/sq.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/sq.json
--------------------------------------------------------------------------------
/lang/sr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/sr.json
--------------------------------------------------------------------------------
/lang/sv.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/sv.json
--------------------------------------------------------------------------------
/lang/ta.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ta.json
--------------------------------------------------------------------------------
/lang/te.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/te.json
--------------------------------------------------------------------------------
/lang/th.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/th.json
--------------------------------------------------------------------------------
/lang/tl.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/tl.json
--------------------------------------------------------------------------------
/lang/tr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/tr.json
--------------------------------------------------------------------------------
/lang/tzm.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/tzm.json
--------------------------------------------------------------------------------
/lang/uk.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/uk.json
--------------------------------------------------------------------------------
/lang/ur.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/ur.json
--------------------------------------------------------------------------------
/lang/vi.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/vi.json
--------------------------------------------------------------------------------
/lang/zh-cn.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/zh-cn.json
--------------------------------------------------------------------------------
/lang/zh-tw.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/lang/zh-tw.json
--------------------------------------------------------------------------------
/phpcs.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/phpcs.xml
--------------------------------------------------------------------------------
/plugin.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/plugin.json
--------------------------------------------------------------------------------
/pull_request_template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/pull_request_template.md
--------------------------------------------------------------------------------
/scoper.inc.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/scoper.inc.php
--------------------------------------------------------------------------------
/stylesheets/styles.less:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/stylesheets/styles.less
--------------------------------------------------------------------------------
/templates/gaImportNoData.twig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/templates/gaImportNoData.twig
--------------------------------------------------------------------------------
/templates/index.twig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/templates/index.twig
--------------------------------------------------------------------------------
/test.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/test.php
--------------------------------------------------------------------------------
/tests/Fixtures/ImportedFromGoogle.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Fixtures/ImportedFromGoogle.php
--------------------------------------------------------------------------------
/tests/Fixtures/ImportedFromGoogleGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Fixtures/ImportedFromGoogleGA4.php
--------------------------------------------------------------------------------
/tests/Fixtures/MockApiResponses.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Fixtures/MockApiResponses.php
--------------------------------------------------------------------------------
/tests/Fixtures/MockApiResponsesGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Fixtures/MockApiResponsesGA4.php
--------------------------------------------------------------------------------
/tests/Framework/BaseRecordImporterTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/BaseRecordImporterTest.php
--------------------------------------------------------------------------------
/tests/Framework/CaptureRestTransport.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/CaptureRestTransport.php
--------------------------------------------------------------------------------
/tests/Framework/CapturingGoogleAdminServiceClientGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/CapturingGoogleAdminServiceClientGA4.php
--------------------------------------------------------------------------------
/tests/Framework/CapturingGoogleClient.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/CapturingGoogleClient.php
--------------------------------------------------------------------------------
/tests/Framework/CapturingGoogleClientGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/CapturingGoogleClientGA4.php
--------------------------------------------------------------------------------
/tests/Framework/MockResponseAdminServiceClientGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/MockResponseAdminServiceClientGA4.php
--------------------------------------------------------------------------------
/tests/Framework/MockResponseBuilderGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/MockResponseBuilderGA4.php
--------------------------------------------------------------------------------
/tests/Framework/MockResponseClient.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/MockResponseClient.php
--------------------------------------------------------------------------------
/tests/Framework/MockResponseClientGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/MockResponseClientGA4.php
--------------------------------------------------------------------------------
/tests/Framework/MockRestTransport.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Framework/MockRestTransport.php
--------------------------------------------------------------------------------
/tests/Integration/DbBackOffTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/DbBackOffTest.php
--------------------------------------------------------------------------------
/tests/Integration/GoogleAnalyticsImporterTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/GoogleAnalyticsImporterTest.php
--------------------------------------------------------------------------------
/tests/Integration/ImportStatusTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/ImportStatusTest.php
--------------------------------------------------------------------------------
/tests/Integration/ImporterTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/ImporterTest.php
--------------------------------------------------------------------------------
/tests/Integration/ImporterTestGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/ImporterTestGA4.php
--------------------------------------------------------------------------------
/tests/Integration/Importers/Actions/RecordImporterTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/Importers/Actions/RecordImporterTest.php
--------------------------------------------------------------------------------
/tests/Integration/Importers/expected/Actions_mobileApp.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/Importers/expected/Actions_mobileApp.xml
--------------------------------------------------------------------------------
/tests/Integration/TasksTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Integration/TasksTest.php
--------------------------------------------------------------------------------
/tests/System/CheckDirectDependencyUseCommandTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/CheckDirectDependencyUseCommandTest.php
--------------------------------------------------------------------------------
/tests/System/ImportTestGA4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/ImportTestGA4.php
--------------------------------------------------------------------------------
/tests/System/expected/test__5b1__Goals.getDaysToConversion_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/tests/System/expected/test__5b1__Goals.getGoals.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__5b1__Goals.getGoals.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__5b1__Goals.getMetrics_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__5b1__Goals.getMetrics_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__5b1__Goals.getVisitsUntilConversion_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__5b1__Goals.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__5b1__Goals.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownload_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownload_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownload_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownload_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownloads_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownloads_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownloads_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getDownloads_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getEntryPageTitles_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getEntryPageTitles_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getEntryPageUrls_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getEntryPageUrls_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getExitPageTitles_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getExitPageTitles_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getExitPageUrls_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getExitPageUrls_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlink_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlink_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlink_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlink_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlinks_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlinks_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlinks_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getOutlinks_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitle_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitle_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitle_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitle_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitlesFollowingSiteSearch_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitlesFollowingSiteSearch_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitlesFollowingSiteSearch_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageTitlesFollowingSiteSearch_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrl_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrl_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrl_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrl_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrlsFollowingSiteSearch_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrlsFollowingSiteSearch_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrlsFollowingSiteSearch_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrlsFollowingSiteSearch_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrls_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getPageUrls_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchCategories_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchCategories_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchCategories_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchCategories_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchNoResultKeywords_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchNoResultKeywords_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchNoResultKeywords_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.getSiteSearchNoResultKeywords_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Actions.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Actions.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Actions.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Actions.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Actions.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__CustomVariables.getCustomVariables_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__CustomVariables.getCustomVariables_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__CustomVariables.getCustomVariables_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__CustomVariables.getCustomVariables_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__DevicesDetection.getBrowserVersions_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__DevicesDetection.getBrowserVersions_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getAction_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getAction_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getAction_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getAction_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getAction_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getAction_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getName_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getName_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getName_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getName_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getName_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getName_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Events.getName_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Events.getName_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getDaysToConversion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getDaysToConversion_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getDaysToConversion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getDaysToConversion_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getGoals.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.getGoals.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsCategory_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsCategory_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsCategory_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsCategory_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsName_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsName_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsName_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsName_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsSku_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsSku_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsSku_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getItemsSku_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getMetrics_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.getMetrics_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getMetrics_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.getMetrics_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getMetrics_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.getMetrics_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getVisitsUntilConversion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getVisitsUntilConversion_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getVisitsUntilConversion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.getVisitsUntilConversion_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Goals.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Goals.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getContent_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getContent_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getContent_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getContent_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getGroup_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getGroup_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getGroup_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getGroup_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getId_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getId_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getId_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getId_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getPlacement_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getPlacement_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getPlacement_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__MarketingCampaignsReporting.getPlacement_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getAll_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.getAll_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getAll_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.getAll_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getAll_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.getAll_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getKeywords_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getKeywords_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getKeywords_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getKeywords_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSearchEngines_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSearchEngines_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSearchEngines_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSearchEngines_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSocials_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSocials_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSocials_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getSocials_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getUrlsForSocial_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getUrlsForSocial_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getUrlsForSocial_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.getUrlsForSocial_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__Referrers.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__Referrers.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__UserCountry.getRegion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__UserCountry.getRegion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__VisitTime.getVisitInformationPerLocalTime_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__VisitTime.getVisitInformationPerLocalTime_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4__VisitsSummary.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test__GA4__VisitsSummary.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getDaysToConversion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getDaysToConversion_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getDaysToConversion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getDaysToConversion_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_ecommerceOrder__Goals.getVisitsUntilConversion_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test__GA4_flat__Referrers.getSearchEngines_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownload_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownload_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownload_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownload_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownloads_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownloads_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownloads_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getDownloads_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlink_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlink_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlink_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlink_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlinks_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlinks_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlinks_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getOutlinks_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitle_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitle_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitle_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitle_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitlesFollowingSiteSearch_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitlesFollowingSiteSearch_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitlesFollowingSiteSearch_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitlesFollowingSiteSearch_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageTitles_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.getPageTitles_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrl_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrl_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrl_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrl_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrlsFollowingSiteSearch_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrlsFollowingSiteSearch_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrlsFollowingSiteSearch_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrlsFollowingSiteSearch_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrls_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.getPageUrls_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrls_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.getPageUrls_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrls_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.getPageUrls_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getPageUrls_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.getPageUrls_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchCategories_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchCategories_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchCategories_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchKeywords_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchKeywords_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchKeywords_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchNoResultKeywords_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchNoResultKeywords_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchNoResultKeywords_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.getSiteSearchNoResultKeywords_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Actions.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Actions.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___CustomVariables.getCustomVariables_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___CustomVariables.getCustomVariables_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___CustomVariables.getCustomVariables_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___CustomVariables.getCustomVariables_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getAction_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getAction_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getAction_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getAction_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getAction_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getAction_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getAction_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getAction_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getCategory_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getCategory_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getCategory_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getCategory_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getCategory_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getCategory_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getCategory_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getCategory_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getName_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getName_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getName_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getName_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getName_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getName_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Events.getName_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Events.getName_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getDaysToConversion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getDaysToConversion_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getDaysToConversion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getGoals.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getGoals.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsName_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsName_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsName_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsName_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsName_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsName_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsName_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsName_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsSku_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsSku_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsSku_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsSku_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsSku_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsSku_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getItemsSku_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getItemsSku_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getMetrics_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getMetrics_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getMetrics_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getMetrics_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getMetrics_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getMetrics_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getMetrics_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.getMetrics_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getVisitsUntilConversion_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getVisitsUntilConversion_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.getVisitsUntilConversion_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Goals.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Goals.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getGroup_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getGroup_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getGroup_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getGroup_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getPlacement_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getPlacement_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getPlacement_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___MarketingCampaignsReporting.getPlacement_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getAll_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getAll_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getAll_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getAll_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getAll_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getAll_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getAll_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getAll_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getCampaigns_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getCampaigns_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getCampaigns_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getCampaigns_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getKeywordsForPageUrl_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getKeywordsForPageUrl_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getKeywordsForPageUrl_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getKeywordsForPageUrl_year.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getKeywords_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getKeywords_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getSocials_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getSocials_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getSocials_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getSocials_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getSocials_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getSocials_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.getWebsites_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.getWebsites_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___Referrers.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___Referrers.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___UserCountry.getCity_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___UserCountry.getCity_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___UserCountry.getCity_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___UserCountry.getCity_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___UserCountry.getCity_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___UserCountry.getCity_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___UserCountry.getCity_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___UserCountry.getCity_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___UserCountry.getRegion_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___UserCountry.getRegion_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitFrequency.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitFrequency.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitFrequency.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitFrequency.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitFrequency.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitFrequency.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitFrequency.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitFrequency.get_year.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitTime.getVisitInformationPerLocalTime_day.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitTime.getVisitInformationPerLocalTime_month.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitTime.getVisitInformationPerLocalTime_week.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitsSummary.get_day.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitsSummary.get_day.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitsSummary.get_month.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitsSummary.get_month.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitsSummary.get_week.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitsSummary.get_week.xml
--------------------------------------------------------------------------------
/tests/System/expected/test___VisitsSummary.get_year.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/System/expected/test___VisitsSummary.get_year.xml
--------------------------------------------------------------------------------
/tests/UI/EmptySite_GA_spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/UI/EmptySite_GA_spec.js
--------------------------------------------------------------------------------
/tests/UI/GoogleAnalyticsImporterGA4_spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/UI/GoogleAnalyticsImporterGA4_spec.js
--------------------------------------------------------------------------------
/tests/UI/expected-ui-screenshots/EmptySite_GA_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/UI/expected-ui-screenshots/EmptySite_GA_list.png
--------------------------------------------------------------------------------
/tests/Unit/Google/GoogleGA4MetricMapperTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/Google/GoogleGA4MetricMapperTest.php
--------------------------------------------------------------------------------
/tests/Unit/Google/GoogleGA4QueryObjectFactoryTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/Google/GoogleGA4QueryObjectFactoryTest.php
--------------------------------------------------------------------------------
/tests/Unit/Google/GoogleMetricMapperTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/Google/GoogleMetricMapperTest.php
--------------------------------------------------------------------------------
/tests/Unit/Google/GoogleQueryObjectFactoryTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/Google/GoogleQueryObjectFactoryTest.php
--------------------------------------------------------------------------------
/tests/Unit/Google/GoogleResponseDataTableFactoryTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/Google/GoogleResponseDataTableFactoryTest.php
--------------------------------------------------------------------------------
/tests/Unit/Input/EndDateTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/Input/EndDateTest.php
--------------------------------------------------------------------------------
/tests/Unit/NotificationDisplayTest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/Unit/NotificationDisplayTest.php
--------------------------------------------------------------------------------
/tests/resources/capturedresponses-ga4.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/resources/capturedresponses-ga4.log
--------------------------------------------------------------------------------
/tests/resources/capturedresponses.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/tests/resources/capturedresponses.log
--------------------------------------------------------------------------------
/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/autoload.php
--------------------------------------------------------------------------------
/vendor/autoload_original.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/autoload_original.php
--------------------------------------------------------------------------------
/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/vendor/composer/InstalledVersions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/InstalledVersions.php
--------------------------------------------------------------------------------
/vendor/composer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/LICENSE
--------------------------------------------------------------------------------
/vendor/composer/autoload_classmap.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/autoload_classmap.php
--------------------------------------------------------------------------------
/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/autoload_files.php
--------------------------------------------------------------------------------
/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/autoload_namespaces.php
--------------------------------------------------------------------------------
/vendor/composer/autoload_psr4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/autoload_psr4.php
--------------------------------------------------------------------------------
/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/vendor/composer/autoload_static.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/autoload_static.php
--------------------------------------------------------------------------------
/vendor/composer/installed.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/installed.json
--------------------------------------------------------------------------------
/vendor/composer/installed.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/composer/installed.php
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/src/BigDecimal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/src/BigDecimal.php
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/src/BigInteger.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/src/BigInteger.php
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/src/BigNumber.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/src/BigNumber.php
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/src/BigRational.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/src/BigRational.php
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/src/Internal/Calculator.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/src/Internal/Calculator.php
--------------------------------------------------------------------------------
/vendor/prefixed/brick/math/src/RoundingMode.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/brick/math/src/RoundingMode.php
--------------------------------------------------------------------------------
/vendor/prefixed/firebase/php-jwt/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/firebase/php-jwt/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/firebase/php-jwt/src/CachedKeySet.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/firebase/php-jwt/src/CachedKeySet.php
--------------------------------------------------------------------------------
/vendor/prefixed/firebase/php-jwt/src/JWK.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/firebase/php-jwt/src/JWK.php
--------------------------------------------------------------------------------
/vendor/prefixed/firebase/php-jwt/src/JWT.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/firebase/php-jwt/src/JWT.php
--------------------------------------------------------------------------------
/vendor/prefixed/firebase/php-jwt/src/Key.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/firebase/php-jwt/src/Key.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/analytics-admin/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/analytics-admin/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/analytics-admin/VERSION:
--------------------------------------------------------------------------------
1 | 0.22.5
2 |
--------------------------------------------------------------------------------
/vendor/prefixed/google/analytics-data/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/analytics-data/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/analytics-data/VERSION:
--------------------------------------------------------------------------------
1 | 0.17.1
2 |
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient-services/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient-services/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient-services/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient-services/autoload.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient-services/renovate.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient-services/renovate.json
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient-services/synth.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient-services/synth.py
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Client.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Client.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Collection.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Collection.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Exception.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Exception.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Http/Batch.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Http/Batch.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Http/REST.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Http/REST.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Model.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Model.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Service.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Service.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Task/Composer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Task/Composer.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Task/Exception.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Task/Exception.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Task/Retryable.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Task/Retryable.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/Task/Runner.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/Task/Runner.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/apiclient/src/aliases.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/apiclient/src/aliases.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/COPYING:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/COPYING
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/VERSION:
--------------------------------------------------------------------------------
1 | 1.41.0
2 |
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/autoload.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/AccessToken.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/AccessToken.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/Cache/Item.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/Cache/Item.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/Cache/TypedItem.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/Cache/TypedItem.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/CacheTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/CacheTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/CredentialsLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/CredentialsLoader.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/FetchAuthTokenCache.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/FetchAuthTokenCache.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/GCECache.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/GCECache.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/Iam.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/Iam.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/IamSignerTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/IamSignerTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/MetricsTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/MetricsTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/OAuth2.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/OAuth2.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/SignBlobInterface.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/SignBlobInterface.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/auth/src/UpdateMetadataTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/auth/src/UpdateMetadataTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/renovate.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/renovate.json
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Api/Advice.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Api/Advice.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Api/Http.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Api/Http.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Api/Metric.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Api/Metric.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Api/Page.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Api/Page.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Api/Quota.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Api/Quota.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Api/Usage.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Api/Usage.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Rpc/Code.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Rpc/Code.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Rpc/Help.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Rpc/Help.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Rpc/Status.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Rpc/Status.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Type/Color.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Type/Color.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Type/Date.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Type/Date.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Type/Expr.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Type/Expr.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Type/Money.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Type/Money.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/common-protos/src/Type/Month.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/common-protos/src/Type/Month.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/VERSION:
--------------------------------------------------------------------------------
1 | 1.34.0
2 |
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/phpstan.neon.dist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/phpstan.neon.dist
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/renovate.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/renovate.json
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/AgentHeader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/AgentHeader.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ApiException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ApiException.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ApiStatus.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ApiStatus.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ArrayTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ArrayTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/BidiStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/BidiStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Call.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Call.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ClientOptionsTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ClientOptionsTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ClientStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ClientStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/CredentialsWrapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/CredentialsWrapper.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/FixedSizeCollection.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/FixedSizeCollection.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/GPBLabel.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/GPBLabel.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/GPBType.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/GPBType.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/GapicClientTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/GapicClientTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/GrpcSupportTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/GrpcSupportTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/OperationResponse.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/OperationResponse.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Options/CallOptions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Options/CallOptions.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Options/OptionsTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Options/OptionsTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Page.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Page.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/PagedListResponse.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/PagedListResponse.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/PathTemplate.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/PathTemplate.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/PollingTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/PollingTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/RequestBuilder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/RequestBuilder.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ResourceHelperTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ResourceHelperTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/RetrySettings.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/RetrySettings.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Serializer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Serializer.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ServerStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ServerStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ServiceAddressTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ServiceAddressTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Testing/MockRequest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Testing/MockRequest.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Testing/MockResponse.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Testing/MockResponse.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Testing/MockStatus.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Testing/MockStatus.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Testing/mocks.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Testing/mocks.proto
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/UriTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/UriTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ValidationException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ValidationException.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/ValidationTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/ValidationTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/gax/src/Version.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/gax/src/Version.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/cloudprober/codegen.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/cloudprober/codegen.sh
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/src/ChannelRef.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/src/ChannelRef.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/src/Config.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/src/Config.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/src/GCPCallInvoker.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/src/GCPCallInvoker.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/src/GCPUnaryCall.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/src/GCPUnaryCall.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/src/GcpBaseCall.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/src/GcpBaseCall.php
--------------------------------------------------------------------------------
/vendor/prefixed/google/grpc-gcp/src/grpc_gcp.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/grpc-gcp/src/grpc_gcp.proto
--------------------------------------------------------------------------------
/vendor/prefixed/google/longrunning/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/longrunning/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/longrunning/VERSION:
--------------------------------------------------------------------------------
1 | 0.4.3
2 |
--------------------------------------------------------------------------------
/vendor/prefixed/google/protobuf/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/protobuf/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/google/protobuf/src/phpdoc.dist.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/google/protobuf/src/phpdoc.dist.xml
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/etc/roots.pem:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/etc/roots.pem
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/AbstractCall.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/AbstractCall.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/BaseStub.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/BaseStub.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/BidiStreamingCall.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/BidiStreamingCall.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/CallInvoker.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/CallInvoker.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/Interceptor.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/Interceptor.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/MethodDescriptor.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/MethodDescriptor.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/RpcServer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/RpcServer.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/ServerCallReader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/ServerCallReader.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/ServerCallWriter.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/ServerCallWriter.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/ServerContext.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/ServerContext.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/Status.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/Status.php
--------------------------------------------------------------------------------
/vendor/prefixed/grpc/grpc/src/lib/UnaryCall.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/grpc/grpc/src/lib/UnaryCall.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/Client.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/Client.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/ClientTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/ClientTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/HandlerStack.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/HandlerStack.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/Middleware.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/Middleware.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/Pool.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/Pool.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/TransferStats.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/TransferStats.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/Utils.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/Utils.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/guzzle/src/functions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/guzzle/src/functions.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/Coroutine.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/Coroutine.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/Create.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/Create.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/Each.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/Each.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/EachPromise.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/EachPromise.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/Is.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/Is.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/Promise.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/Promise.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/TaskQueue.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/TaskQueue.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/promises/src/Utils.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/promises/src/Utils.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/AppendStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/AppendStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/BufferStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/BufferStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/CachingStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/CachingStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/DroppingStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/DroppingStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/FnStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/FnStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Header.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Header.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/HttpFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/HttpFactory.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/InflateStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/InflateStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/LazyOpenStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/LazyOpenStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/LimitStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/LimitStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Message.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Message.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/MessageTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/MessageTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/MimeType.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/MimeType.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/MultipartStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/MultipartStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/NoSeekStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/NoSeekStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/PumpStream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/PumpStream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Query.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Query.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Request.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Request.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Response.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Response.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Rfc7230.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Rfc7230.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/ServerRequest.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/ServerRequest.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Stream.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Stream.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/StreamWrapper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/StreamWrapper.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/UploadedFile.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/UploadedFile.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Uri.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Uri.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/UriComparator.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/UriComparator.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/UriNormalizer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/UriNormalizer.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/UriResolver.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/UriResolver.php
--------------------------------------------------------------------------------
/vendor/prefixed/guzzlehttp/psr7/src/Utils.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/guzzlehttp/psr7/src/Utils.php
--------------------------------------------------------------------------------
/vendor/prefixed/paragonie/random_compat/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/paragonie/random_compat/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/paragonie/random_compat/build-phar.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/paragonie/random_compat/build-phar.sh
--------------------------------------------------------------------------------
/vendor/prefixed/paragonie/random_compat/lib/random.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/paragonie/random_compat/lib/random.php
--------------------------------------------------------------------------------
/vendor/prefixed/paragonie/random_compat/psalm.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/paragonie/random_compat/psalm.xml
--------------------------------------------------------------------------------
/vendor/prefixed/phpseclib/bcmath_compat/lib/bcmath.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/phpseclib/bcmath_compat/lib/bcmath.php
--------------------------------------------------------------------------------
/vendor/prefixed/phpseclib/bcmath_compat/src/BCMath.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/phpseclib/bcmath_compat/src/BCMath.php
--------------------------------------------------------------------------------
/vendor/prefixed/phpseclib/phpseclib/AUTHORS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/phpseclib/phpseclib/AUTHORS
--------------------------------------------------------------------------------
/vendor/prefixed/phpseclib/phpseclib/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/phpseclib/phpseclib/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/psr/cache/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/cache/LICENSE.txt
--------------------------------------------------------------------------------
/vendor/prefixed/psr/cache/src/CacheException.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/cache/src/CacheException.php
--------------------------------------------------------------------------------
/vendor/prefixed/psr/cache/src/CacheItemInterface.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/cache/src/CacheItemInterface.php
--------------------------------------------------------------------------------
/vendor/prefixed/psr/http-client/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/http-client/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/psr/http-client/src/ClientInterface.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/http-client/src/ClientInterface.php
--------------------------------------------------------------------------------
/vendor/prefixed/psr/http-factory/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/http-factory/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/psr/http-message/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/http-message/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/psr/http-message/src/UriInterface.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/psr/http-message/src/UriInterface.php
--------------------------------------------------------------------------------
/vendor/prefixed/ralouphie/getallheaders/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ralouphie/getallheaders/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/AbstractArray.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/AbstractArray.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/AbstractSet.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/AbstractSet.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/Collection.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/Collection.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/GenericArray.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/GenericArray.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/Map/TypedMap.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/Map/TypedMap.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/Queue.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/Queue.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/Set.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/Set.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/collection/src/Sort.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/collection/src/Sort.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/BinaryUtils.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/BinaryUtils.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Codec/StringCodec.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Codec/StringCodec.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/DegradedUuid.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/DegradedUuid.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/FeatureSet.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/FeatureSet.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Guid/Fields.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Guid/Fields.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Guid/Guid.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Guid/Guid.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Guid/GuidBuilder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Guid/GuidBuilder.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Math/RoundingMode.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Math/RoundingMode.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Nonstandard/Fields.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Nonstandard/Fields.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Nonstandard/Uuid.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Nonstandard/Uuid.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Nonstandard/UuidV6.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Nonstandard/UuidV6.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/Fields.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/Fields.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/MaxTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/MaxTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/MaxUuid.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/MaxUuid.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/NilTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/NilTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/NilUuid.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/NilUuid.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/TimeTrait.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/TimeTrait.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidBuilder.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidBuilder.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV1.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV1.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV2.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV2.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV3.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV3.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV4.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV5.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV5.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV6.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV6.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV7.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV7.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV8.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/UuidV8.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Rfc4122/Validator.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Rfc4122/Validator.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Type/Decimal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Type/Decimal.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Type/Hexadecimal.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Type/Hexadecimal.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Type/Integer.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Type/Integer.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Type/Time.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Type/Time.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Type/TypeInterface.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Type/TypeInterface.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/Uuid.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/Uuid.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/UuidFactory.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/UuidFactory.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/UuidInterface.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/UuidInterface.php
--------------------------------------------------------------------------------
/vendor/prefixed/ramsey/uuid/src/functions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/ramsey/uuid/src/functions.php
--------------------------------------------------------------------------------
/vendor/prefixed/symfony/deprecation-contracts/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/symfony/deprecation-contracts/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/autoload.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/ClassLoader.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/ClassLoader.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/LICENSE
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/autoload_classmap.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/autoload_classmap.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/autoload_files.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/autoload_namespaces.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/autoload_namespaces.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/autoload_psr4.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/autoload_psr4.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/autoload_real.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/autoload_real.php
--------------------------------------------------------------------------------
/vendor/prefixed/vendor/composer/autoload_static.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/prefixed/vendor/composer/autoload_static.php
--------------------------------------------------------------------------------
/vendor/scoper-autoload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vendor/scoper-autoload.php
--------------------------------------------------------------------------------
/vue/dist/GoogleAnalyticsImporter.umd.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/dist/GoogleAnalyticsImporter.umd.js
--------------------------------------------------------------------------------
/vue/dist/GoogleAnalyticsImporter.umd.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/dist/GoogleAnalyticsImporter.umd.min.js
--------------------------------------------------------------------------------
/vue/dist/umd.metadata.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/dist/umd.metadata.json
--------------------------------------------------------------------------------
/vue/src/AdminPage/AdminPage.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/AdminPage/AdminPage.vue
--------------------------------------------------------------------------------
/vue/src/AdminPage/CommonConnect.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/AdminPage/CommonConnect.vue
--------------------------------------------------------------------------------
/vue/src/ClientConfig/ClientConfig.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/ClientConfig/ClientConfig.vue
--------------------------------------------------------------------------------
/vue/src/Configure/ConfigureConnection.less:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/Configure/ConfigureConnection.less
--------------------------------------------------------------------------------
/vue/src/Configure/ConfigureConnection.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/Configure/ConfigureConnection.vue
--------------------------------------------------------------------------------
/vue/src/ImportScheduler/ImportSchedulerGA4.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/ImportScheduler/ImportSchedulerGA4.vue
--------------------------------------------------------------------------------
/vue/src/ImportStatus/ImportStatus.less:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/ImportStatus/ImportStatus.less
--------------------------------------------------------------------------------
/vue/src/ImportStatus/ImportStatus.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/ImportStatus/ImportStatus.vue
--------------------------------------------------------------------------------
/vue/src/ImportStatus/ImportStatusRow.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/ImportStatus/ImportStatusRow.vue
--------------------------------------------------------------------------------
/vue/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/index.ts
--------------------------------------------------------------------------------
/vue/src/onWidgetLoaded.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matomo-org/plugin-GoogleAnalyticsImporter/HEAD/vue/src/onWidgetLoaded.ts
--------------------------------------------------------------------------------