WP Meta SEO - Version 4.4.5

Version Description

  • Add : Update Google API
    • Fix : SEO checker on WP Meta SEO meta box
Download this release

Release Info

Developer JoomUnited
Plugin Icon 128x128 WP Meta SEO
Version 4.4.5
Comparing to
See all releases

Code changes from version 4.4.4 to 4.4.5

Files changed (156) hide show
  1. assets/js/cliffpyles.js +12 -1
  2. assets/js/elementor/wpms-elementor.js +1 -1
  3. assets/js/google-analytics/google_analytics.js +5 -1
  4. assets/js/wp-metaseo-metabox.js +7 -3
  5. assets/js/wpms-seokeyword-metabox.js +1 -0
  6. inc/class.metaseo-admin.php +5 -19
  7. inc/google-tag-manager/wpms-tagmanager-api.php +1 -1
  8. inc/google_analytics/wpmsgapi.php +38 -44
  9. inc/install-wizard/handler-wizard.php +5 -13
  10. inc/lib/google-api/README.md +13 -13
  11. inc/lib/google-api/composer.lock +480 -302
  12. inc/lib/google-api/src/Client.php +2 -2
  13. inc/lib/google-api/src/Task/Composer.php +1 -1
  14. inc/lib/google-api/src/Task/Exception.php +1 -1
  15. inc/lib/google-api/src/Task/Retryable.php +1 -1
  16. inc/lib/google-api/src/Task/Runner.php +1 -1
  17. inc/lib/google-api/src/aliases.php +42 -42
  18. inc/lib/google-api/vendor/composer/ClassLoader.php +116 -25
  19. inc/lib/google-api/vendor/composer/InstalledVersions.php +339 -888
  20. inc/lib/google-api/vendor/composer/autoload_classmap.php +21 -746
  21. inc/lib/google-api/vendor/composer/autoload_files.php +3 -9
  22. inc/lib/google-api/vendor/composer/autoload_namespaces.php +1 -1
  23. inc/lib/google-api/vendor/composer/autoload_psr4.php +6 -35
  24. inc/lib/google-api/vendor/composer/autoload_real.php +3 -3
  25. inc/lib/google-api/vendor/composer/autoload_static.php +46 -949
  26. inc/lib/google-api/vendor/composer/installed.json +597 -3928
  27. inc/lib/google-api/vendor/composer/installed.php +187 -638
  28. inc/lib/google-api/vendor/composer/platform_check.php +2 -2
  29. inc/lib/google-api/vendor/firebase/php-jwt/LICENSE +1 -1
  30. inc/lib/google-api/vendor/firebase/php-jwt/README.md +87 -11
  31. inc/lib/google-api/vendor/firebase/php-jwt/composer.json +3 -0
  32. inc/lib/google-api/vendor/firebase/php-jwt/src/BeforeValidException.php +1 -0
  33. inc/lib/google-api/vendor/firebase/php-jwt/src/ExpiredException.php +1 -0
  34. inc/lib/google-api/vendor/firebase/php-jwt/src/JWK.php +2 -2
  35. inc/lib/google-api/vendor/firebase/php-jwt/src/JWT.php +152 -53
  36. inc/lib/google-api/vendor/firebase/php-jwt/src/Key.php +59 -0
  37. inc/lib/google-api/vendor/firebase/php-jwt/src/SignatureInvalidException.php +1 -0
  38. inc/lib/google-api/vendor/google/apiclient-services/README.md +1 -11
  39. inc/lib/google-api/vendor/google/apiclient-services/SECURITY.md +7 -0
  40. inc/lib/google-api/vendor/google/apiclient-services/autoload.php +36 -0
  41. inc/lib/google-api/vendor/google/apiclient-services/composer.json +12 -4
  42. inc/lib/google-api/vendor/google/apiclient-services/renovate.json +7 -0
  43. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics.php +2170 -0
  44. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Account.php +121 -0
  45. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountChildLink.php +44 -0
  46. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountPermissions.php +36 -0
  47. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountRef.php +62 -0
  48. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountSummaries.php +106 -0
  49. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountSummary.php +79 -0
  50. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountTicket.php +101 -0
  51. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountTreeRequest.php +80 -0
  52. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountTreeResponse.php +83 -0
  53. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Accounts.php +106 -0
  54. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AdWordsAccount.php +53 -0
  55. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AnalyticsDataimportDeleteUploadDataRequest.php +36 -0
  56. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Column.php +53 -0
  57. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Columns.php +79 -0
  58. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSource.php +185 -0
  59. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSourceChildLink.php +44 -0
  60. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSourceParentLink.php +44 -0
  61. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSources.php +106 -0
  62. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDimension.php +141 -0
  63. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDimensionParentLink.php +44 -0
  64. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDimensions.php +106 -0
  65. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomMetric.php +172 -0
  66. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomMetricParentLink.php +44 -0
  67. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomMetrics.php +106 -0
  68. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityAdWordsLink.php +104 -0
  69. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityAdWordsLinkEntity.php +42 -0
  70. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityAdWordsLinks.php +97 -0
  71. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLink.php +101 -0
  72. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLinkEntity.php +74 -0
  73. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLinkPermissions.php +45 -0
  74. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLinks.php +97 -0
  75. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Experiment.php +293 -0
  76. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ExperimentParentLink.php +44 -0
  77. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ExperimentVariations.php +71 -0
  78. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Experiments.php +106 -0
  79. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Filter.php +210 -0
  80. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterAdvancedDetails.php +143 -0
  81. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterExpression.php +80 -0
  82. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterLowercaseDetails.php +44 -0
  83. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterParentLink.php +44 -0
  84. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterRef.php +71 -0
  85. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterSearchAndReplaceDetails.php +71 -0
  86. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterUppercaseDetails.php +44 -0
  87. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Filters.php +106 -0
  88. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaData.php +208 -0
  89. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataColumnHeaders.php +53 -0
  90. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTable.php +59 -0
  91. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTableCols.php +53 -0
  92. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTableRows.php +43 -0
  93. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTableRowsC.php +35 -0
  94. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataProfileInfo.php +80 -0
  95. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataQuery.php +132 -0
  96. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Goal.php +223 -0
  97. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalEventDetails.php +52 -0
  98. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalEventDetailsEventConditions.php +71 -0
  99. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalParentLink.php +44 -0
  100. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalUrlDestinationDetails.php +79 -0
  101. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalUrlDestinationDetailsSteps.php +53 -0
  102. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalVisitNumPagesDetails.php +44 -0
  103. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalVisitTimeOnSiteDetails.php +44 -0
  104. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Goals.php +106 -0
  105. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/HashClientIdRequest.php +53 -0
  106. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/HashClientIdResponse.php +62 -0
  107. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/IncludeConditions.php +71 -0
  108. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/LinkedForeignAccount.php +116 -0
  109. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfData.php +190 -0
  110. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataColumnHeaders.php +53 -0
  111. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataProfileInfo.php +80 -0
  112. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataQuery.php +132 -0
  113. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataRows.php +52 -0
  114. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataRowsConversionPathValue.php +44 -0
  115. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Profile.php +281 -0
  116. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileChildLink.php +44 -0
  117. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileFilterLink.php +94 -0
  118. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileFilterLinks.php +106 -0
  119. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileParentLink.php +44 -0
  120. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfilePermissions.php +36 -0
  121. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileRef.php +89 -0
  122. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileSummary.php +71 -0
  123. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Profiles.php +106 -0
  124. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeData.php +129 -0
  125. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeDataColumnHeaders.php +53 -0
  126. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeDataProfileInfo.php +80 -0
  127. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeDataQuery.php +84 -0
  128. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudience.php +174 -0
  129. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudienceAudienceDefinition.php +42 -0
  130. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudienceStateBasedAudienceDefinition.php +58 -0
  131. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php +44 -0
  132. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudiences.php +106 -0
  133. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/Data.php +33 -0
  134. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/DataGa.php +74 -0
  135. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/DataMcf.php +70 -0
  136. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/DataRealtime.php +60 -0
  137. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/Management.php +33 -0
  138. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementAccountSummaries.php +54 -0
  139. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementAccountUserLinks.php +99 -0
  140. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementAccounts.php +54 -0
  141. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementClientId.php +49 -0
  142. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementCustomDataSources.php +57 -0
  143. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementCustomDimensions.php +134 -0
  144. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementCustomMetrics.php +132 -0
  145. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementExperiments.php +140 -0
  146. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementFilters.php +127 -0
  147. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementGoals.php +128 -0
  148. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementProfileFilterLinks.php +148 -0
  149. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementProfileUserLinks.php +112 -0
  150. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementProfiles.php +143 -0
  151. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementRemarketingAudience.php +151 -0
  152. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementSegments.php +54 -0
  153. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementUnsampledReports.php +113 -0
  154. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementUploads.php +109 -0
  155. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementWebPropertyAdWordsLinks.php +147 -0
  156. inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementWebproperties.php +36 -0
assets/js/cliffpyles.js CHANGED
@@ -24,12 +24,23 @@ jQuery(document).ready(function ($) {
24
  title = wpmscliffpyles.post_title;
25
  mcontent = wpmscliffpyles.post_content;
26
  } else {
27
- title = $('.editor-post-title__input').val();
28
  if (typeof wp.data !== "undefined" && typeof wp.data.select('core/editor') !== "undefined" && wp.data.select('core/editor') !== null) {
 
29
  mcontent = wp.data.select('core/editor').getEditedPostContent();
 
 
 
 
 
 
 
 
 
30
  }
31
  }
32
  } else {
 
33
  if (typeof mpageurl === 'undefined') {
34
  mpageurl = $('#editable-post-name-full').text();
35
  }
24
  title = wpmscliffpyles.post_title;
25
  mcontent = wpmscliffpyles.post_content;
26
  } else {
27
+ // Core editor
28
  if (typeof wp.data !== "undefined" && typeof wp.data.select('core/editor') !== "undefined" && wp.data.select('core/editor') !== null) {
29
+ title = $('.editor-post-title__input').text();
30
  mcontent = wp.data.select('core/editor').getEditedPostContent();
31
+ } else if(typeof tinyMCE !== 'undefined') {
32
+ // WooCommerce product
33
+ title = $('#title').val();
34
+ if (tinyMCE.get('content') !== null) {
35
+ mcontent = tinyMCE.editors.content.getContent();
36
+ if (mcontent === '') mcontent = $('#content').val();
37
+ } else {
38
+ mcontent = $('#content').val();
39
+ }
40
  }
41
  }
42
  } else {
43
+ // Fixme:: when this case is run?
44
  if (typeof mpageurl === 'undefined') {
45
  mpageurl = $('#editable-post-name-full').text();
46
  }
assets/js/elementor/wpms-elementor.js CHANGED
@@ -406,7 +406,7 @@ jQuery(function ($) {
406
  var matches = str.match(regex);
407
  for (var i = 0; i < matches.length; i++) {
408
  if (typeof (replacedVars[matches[i]]) === 'undefined') {
409
- str = str.replace(matches[i], replacedVars[matches[i]]);
410
  } else {
411
  var replaceableVar = matches[i];
412
 
406
  var matches = str.match(regex);
407
  for (var i = 0; i < matches.length; i++) {
408
  if (typeof (replacedVars[matches[i]]) === 'undefined') {
409
+ //str = str.replace(matches[i], replacedVars[matches[i]]);
410
  } else {
411
  var replaceableVar = matches[i];
412
 
assets/js/google-analytics/google_analytics.js CHANGED
@@ -1078,7 +1078,7 @@ jQuery.fn.extend({
1078
  }
1079
  });
1080
 
1081
- jQuery(document).ready(function () {
1082
  if (wpmsItemData.scope === 'admin-widgets') {
1083
  jQuery('#wpms-window-1').wpmsItemReport(1);
1084
  } else {
@@ -1127,4 +1127,8 @@ jQuery(document).ready(function () {
1127
  instance.setContent(instance.reference.dataset.tippy);
1128
  }
1129
  });
 
 
 
 
1130
  });
1078
  }
1079
  });
1080
 
1081
+ jQuery(document).ready(function ($) {
1082
  if (wpmsItemData.scope === 'admin-widgets') {
1083
  jQuery('#wpms-window-1').wpmsItemReport(1);
1084
  } else {
1127
  instance.setContent(instance.reference.dataset.tippy);
1128
  }
1129
  });
1130
+
1131
+ $(document).on('click', '.notice-dismiss', function () {
1132
+ $('#setting-error-settings_updated').hide();
1133
+ });
1134
  });
assets/js/wp-metaseo-metabox.js CHANGED
@@ -32,7 +32,7 @@ function msReplaceVariables(str, callback) {
32
  return;
33
  }
34
  if (jQuery(wpmsdivtitle).length) {
35
- str = str.replace(/%title%/g, jQuery(wpmsdivtitle).val().replace(/(<([^>]+)>)/ig, ''));
36
  }
37
 
38
  // These are added in the head for performance reasons.
@@ -74,7 +74,7 @@ function msReplaceVariables(str, callback) {
74
  var matches = str.match(regex);
75
  for (var i = 0; i < matches.length; i++) {
76
  if (typeof (replacedVars[ matches[ i ] ]) === 'undefined') {
77
- str = str.replace(matches[ i ], replacedVars[ matches[ i ] ]);
78
  } else {
79
  var replaceableVar = matches[ i ];
80
 
@@ -328,7 +328,11 @@ jQuery(document).ready(function ($) {
328
 
329
  $('body').on('keyup', wpmsdivtitle, function(event) {
330
  if (jQuery('#metaseo_wpmseo_title').data('firstcreatepost')) {
331
- jQuery('#metaseo_wpmseo_title').val(jQuery(wpmsdivtitle).val().replace(/(<([^>]+)>)/ig, ''));
 
 
 
 
332
  }
333
  msUpdateTitle();
334
  msUpdateDesc();
32
  return;
33
  }
34
  if (jQuery(wpmsdivtitle).length) {
35
+ str = str.replace(/%title%/g, jQuery(wpmsdivtitle).text().replace(/(<([^>]+)>)/ig, ''));
36
  }
37
 
38
  // These are added in the head for performance reasons.
74
  var matches = str.match(regex);
75
  for (var i = 0; i < matches.length; i++) {
76
  if (typeof (replacedVars[ matches[ i ] ]) === 'undefined') {
77
+ // str = str.replace(matches[ i ], replacedVars[ matches[ i ] ]);
78
  } else {
79
  var replaceableVar = matches[ i ];
80
 
328
 
329
  $('body').on('keyup', wpmsdivtitle, function(event) {
330
  if (jQuery('#metaseo_wpmseo_title').data('firstcreatepost')) {
331
+ if (typeof wp.blocks !== "undefined" && wp.data.select('core/editor') !== null) {
332
+ jQuery('#metaseo_wpmseo_title').val(jQuery(wpmsdivtitle).text().replace(/(<([^>]+)>)/ig, ''));
333
+ } else {
334
+ jQuery('#metaseo_wpmseo_title').val(jQuery(wpmsdivtitle).val().replace(/(<([^>]+)>)/ig, ''));
335
+ }
336
  }
337
  msUpdateTitle();
338
  msUpdateDesc();
assets/js/wpms-seokeyword-metabox.js CHANGED
@@ -32,6 +32,7 @@
32
  this.title = $('#title').val();
33
  if (typeof tinyMCE !== 'undefined' && tinyMCE.get('content') !== null) {
34
  this.content = tinyMCE.editors.content.getContent();
 
35
  } else {
36
  this.content = $('#content').val();
37
  }
32
  this.title = $('#title').val();
33
  if (typeof tinyMCE !== 'undefined' && tinyMCE.get('content') !== null) {
34
  this.content = tinyMCE.editors.content.getContent();
35
+ if (this.content === '') this.content = $('#content').val();
36
  } else {
37
  this.content = $('#content').val();
38
  }
inc/class.metaseo-admin.php CHANGED
@@ -4087,14 +4087,7 @@ class MetaSeoAdmin
4087
  WpmsGaTools::deleteCache('last_error');
4088
  }
4089
  return $ga_dash_profile_list;
4090
- } catch (Google_IO_Exception $e) {
4091
- WpmsGaTools::setCache(
4092
- 'last_error',
4093
- date('Y-m-d H:i:s') . ': ' . esc_html($e),
4094
- $this->error_timeout
4095
- );
4096
- return $ga_dash_profile_list;
4097
- } catch (Google_Service_Exception $e) {
4098
  WpmsGaTools::setCache(
4099
  'last_error',
4100
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
@@ -4203,7 +4196,8 @@ class MetaSeoAdmin
4203
  $this->setErrorTimeout();
4204
  $this->client = WpmsGaTools::setClient($this->client, $this->google_alanytics, $this->access);
4205
  $authUrl = $this->client->createAuthUrl();
4206
- $this->service = new Google_Service_Analytics($this->client);
 
4207
  $controller = new WpmsGapiController();
4208
 
4209
  if (!empty($_POST['wpms_gg_access_code'])) {
@@ -4220,13 +4214,7 @@ class MetaSeoAdmin
4220
  $this->client->setAccessToken($getAccessToken);
4221
  $this->google_alanytics['googleCredentials']
4222
  = $this->client->getAccessToken();
4223
- } catch (Google_IO_Exception $e) {
4224
- WpmsGaTools::setCache(
4225
- 'wpmsga_dash_lasterror',
4226
- date('Y-m-d H:i:s') . ': ' . esc_html($e),
4227
- $this->error_timeout
4228
- );
4229
- } catch (Google_Service_Exception $e) {
4230
  WpmsGaTools::setCache(
4231
  'wpmsga_dash_lasterror',
4232
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
@@ -4256,9 +4244,7 @@ class MetaSeoAdmin
4256
  $this->google_alanytics['googleCredentials'] = $getAccessToken;
4257
  $this->google_alanytics['profile_list'] = $profiles;
4258
  update_option('wpms_google_alanytics', $this->google_alanytics);
4259
- } catch (Google_IO_Exception $e) {
4260
- echo '';
4261
- } catch (Google_Service_Exception $e) {
4262
  echo '';
4263
  } catch (Exception $e) {
4264
  echo '';
4087
  WpmsGaTools::deleteCache('last_error');
4088
  }
4089
  return $ga_dash_profile_list;
4090
+ } catch (WPMSGoogle\Service\Exception $e) {
 
 
 
 
 
 
 
4091
  WpmsGaTools::setCache(
4092
  'last_error',
4093
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
4196
  $this->setErrorTimeout();
4197
  $this->client = WpmsGaTools::setClient($this->client, $this->google_alanytics, $this->access);
4198
  $authUrl = $this->client->createAuthUrl();
4199
+
4200
+ $this->service = new \WPMSGoogle\Service\Analytics($this->client);
4201
  $controller = new WpmsGapiController();
4202
 
4203
  if (!empty($_POST['wpms_gg_access_code'])) {
4214
  $this->client->setAccessToken($getAccessToken);
4215
  $this->google_alanytics['googleCredentials']
4216
  = $this->client->getAccessToken();
4217
+ } catch (WPMSGoogle\Service\Exception $e) {
 
 
 
 
 
 
4218
  WpmsGaTools::setCache(
4219
  'wpmsga_dash_lasterror',
4220
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
4244
  $this->google_alanytics['googleCredentials'] = $getAccessToken;
4245
  $this->google_alanytics['profile_list'] = $profiles;
4246
  update_option('wpms_google_alanytics', $this->google_alanytics);
4247
+ } catch (WPMSGoogle\Service\Exception $e) {
 
 
4248
  echo '';
4249
  } catch (Exception $e) {
4250
  echo '';
inc/google-tag-manager/wpms-tagmanager-api.php CHANGED
@@ -41,7 +41,7 @@ if (!class_exists('WpmsTagManagerController')) {
41
  $this->managequota = 'u' . get_current_user_id() . 's' . get_current_blog_id();
42
  $this->client->setClientId($google_alanytics['wpmsga_dash_clientid']);
43
  $this->client->setClientSecret($google_alanytics['wpmsga_dash_clientsecret']);
44
- $this->tagmanager_service = new Google_Service_TagManager($this->client);
45
  if (!empty($google_alanytics['googleCredentials'])) {
46
  $token = $google_alanytics['googleCredentials'];
47
  if ($token) {
41
  $this->managequota = 'u' . get_current_user_id() . 's' . get_current_blog_id();
42
  $this->client->setClientId($google_alanytics['wpmsga_dash_clientid']);
43
  $this->client->setClientSecret($google_alanytics['wpmsga_dash_clientsecret']);
44
+ $this->tagmanager_service = new WPMSGoogle_Service_TagManager($this->client);
45
  if (!empty($google_alanytics['googleCredentials'])) {
46
  $token = $google_alanytics['googleCredentials'];
47
  if ($token) {
inc/google_analytics/wpmsgapi.php CHANGED
@@ -24,13 +24,13 @@ if (!class_exists('WpmsGapiController')) {
24
  /**
25
  * Google service analytics
26
  *
27
- * @var Google_Service_Analytics
28
  */
29
  public $service;
30
  /**
31
  * Google analytics 4 service
32
  *
33
- * @var Google_Service_AnalyticsData
34
  */
35
  public $service_ga4;
36
  /**
@@ -90,20 +90,14 @@ if (!class_exists('WpmsGapiController')) {
90
  $this->setErrorTimeout();
91
  $this->managequota = 'u' . get_current_user_id() . 's' . get_current_blog_id();
92
  $this->client = WpmsGaTools::setClient($this->client, $google_alanytics, $this->access);
93
- $this->service = new Google_Service_Analytics($this->client);
94
- $this->service_ga4 = new Google_Service_AnalyticsData($this->client);
95
  if (!empty($google_alanytics['googleCredentials'])) {
96
  $token = $google_alanytics['googleCredentials'];
97
  if ($token) {
98
  try {
99
  $this->client->setAccessToken($token);
100
- } catch (Google_IO_Exception $e) {
101
- WpmsGaTools::setCache(
102
- 'wpmsga_dash_lasterror',
103
- date('Y-m-d H:i:s') . ': ' . esc_html($e),
104
- $this->error_timeout
105
- );
106
- } catch (Google_Service_Exception $e) {
107
  WpmsGaTools::setCache(
108
  'wpmsga_dash_lasterror',
109
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
@@ -204,7 +198,7 @@ if (!class_exists('WpmsGapiController')) {
204
  * @param array $options Optional parameters.
205
  * @param string $serial Serial
206
  *
207
- * @return boolean|Google_Service_Analytics_GaData|int|mixed
208
  */
209
  private function handleCorereports($projectId, $from, $to, $metrics, $options, $serial)
210
  {
@@ -230,64 +224,64 @@ if (!class_exists('WpmsGapiController')) {
230
  $data = $this->service->data_ga->get('ga:' . $projectId, $from, $to, $metrics, $options);
231
  } else {
232
  if ($metrics === 'bottomstats') {
233
- $ga4_metrics_sessions = new Google_Service_AnalyticsData_Metric();
234
  $ga4_metrics_sessions->setName('sessions');
235
 
236
- $ga4_metrics_users = new Google_Service_AnalyticsData_Metric();
237
  $ga4_metrics_users->setName('totalUsers');
238
 
239
- $ga4_metrics_page_views = new Google_Service_AnalyticsData_Metric();
240
  $ga4_metrics_page_views->setName('screenPageViews');
241
 
242
- $ga4_metrics_engagement = new Google_Service_AnalyticsData_Metric();
243
  $ga4_metrics_engagement->setName('engagementAVG');
244
  $ga4_metrics_engagement->setExpression('userEngagementDuration/totalUsers');
245
 
246
- $ga4_metrics_organic = new Google_Service_AnalyticsData_Metric();
247
  $ga4_metrics_organic->setName('transactions');
248
 
249
- $ga4_metrics_pageViewsPerSession = new Google_Service_AnalyticsData_Metric();
250
  $ga4_metrics_pageViewsPerSession->setName('PageViewsPerSession');
251
  $ga4_metrics_pageViewsPerSession->setExpression('screenPageViews/sessions');
252
 
253
  $ga4_metrics = array($ga4_metrics_sessions, $ga4_metrics_users, $ga4_metrics_page_views, $ga4_metrics_engagement,
254
  $ga4_metrics_organic, $ga4_metrics_pageViewsPerSession);
255
  } elseif ($options['ga4_dimensions'] === 'visitorType') {
256
- $ga4_metric_new_user = new Google_Service_AnalyticsData_Metric();
257
  $ga4_metric_new_user->setName('newUsers');
258
 
259
- $ga4_metric_total_users = new Google_Service_AnalyticsData_Metric();
260
  $ga4_metric_total_users->setName('totalUsers');
261
 
262
  $ga4_metrics = array($ga4_metric_new_user, $ga4_metric_total_users);
263
  } elseif ($metrics === 'averageEngagementTime') {
264
- $ga4_metrics = new Google_Service_AnalyticsData_Metric();
265
  $ga4_metrics->setName('averageEngagementTime');
266
  $ga4_metrics->setExpression('userEngagementDuration/totalUsers');
267
  } else {
268
- $ga4_metrics = new Google_Service_AnalyticsData_Metric();
269
  $ga4_metrics->setName($metrics);
270
  }
271
 
272
  if ($options['ga4_dimensions'] === 'month_and_year') {
273
- $dim_month = new Google_Service_AnalyticsData_Dimension();
274
  $dim_month->setName('month');
275
 
276
- $dim_year = new Google_Service_AnalyticsData_Dimension();
277
  $dim_year->setName('year');
278
 
279
  $ga4_dimensions = array($dim_month, $dim_year);
280
  } else {
281
  $dim = $options['ga4_dimensions'];
282
- $ga4_dimensions = new Google_Service_AnalyticsData_Dimension();
283
  $ga4_dimensions->setName($dim);
284
  }
285
 
286
- $date_range = new Google_Service_AnalyticsData_DateRange();
287
  $date_range->setStartDate($from);
288
  $date_range->setEndDate($to);
289
 
290
- $request = new Google_Service_AnalyticsData_RunReportRequest();
291
  $request->setMetrics(array($ga4_metrics));
292
  $request->setDateRanges($date_range);
293
  if ($metrics !== 'bottomstats' && $options['ga4_dimensions'] !== 'visitorType') {
@@ -300,7 +294,7 @@ if (!class_exists('WpmsGapiController')) {
300
  } else {
301
  $data = $transient;
302
  }
303
- } catch (Google_Service_Exception $e) {
304
  WpmsGaTools::setCache(
305
  'last_error',
306
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
@@ -583,7 +577,7 @@ if (!class_exists('WpmsGapiController')) {
583
  * @param string $filter Filter
584
  * @param string $property_type Google analytic property type
585
  *
586
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
587
  */
588
  private function getNottomstats($projectId, $from, $to, $query, $filter = '', $property_type = 'UA')
589
  {
@@ -647,7 +641,7 @@ if (!class_exists('WpmsGapiController')) {
647
  * @param string $filter Filter
648
  * @param string $property_type Google analytic property type
649
  *
650
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
651
  */
652
  private function getContentPages($projectId, $from, $to, $filter = '', $property_type = 'UA')
653
  {
@@ -698,7 +692,7 @@ if (!class_exists('WpmsGapiController')) {
698
  * @param string $filter Filter
699
  * @param string $property_type Google analytic property
700
  *
701
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
702
  */
703
  private function getReferrers($projectId, $from, $to, $filter = '', $property_type = 'UA')
704
  {
@@ -756,7 +750,7 @@ if (!class_exists('WpmsGapiController')) {
756
  * @param string $filter Filter
757
  * @param string $property_type Google analytic property
758
  *
759
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
760
  */
761
  private function getSearches($projectId, $from, $to, $filter = '', $property_type = 'UA')
762
  {
@@ -808,7 +802,7 @@ if (!class_exists('WpmsGapiController')) {
808
  * @param string $filter Filter
809
  * @param string $property_type Google analytic property
810
  *
811
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
812
  */
813
  private function getLocations($projectId, $from, $to, $filter = '', $property_type = 'UA')
814
  {
@@ -877,7 +871,7 @@ if (!class_exists('WpmsGapiController')) {
877
  * @param string $filter Filter
878
  * @param string $property_type Google analytic property
879
  *
880
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
881
  */
882
  private function getOrgchartData($projectId, $from, $to, $query, $filter = '', $property_type = 'UA')
883
  {
@@ -972,7 +966,7 @@ if (!class_exists('WpmsGapiController')) {
972
  * @param string $filter Filter
973
  * @param string $property_type Google analytic property
974
  *
975
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
976
  */
977
  private function getPiechartData($projectId, $from, $to, $query, $filter = '', $property_type = 'UA')
978
  {
@@ -1083,7 +1077,7 @@ if (!class_exists('WpmsGapiController')) {
1083
  * @param string $from Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date
1084
  * @param string $anonim Anonim
1085
  *
1086
- * @return array|boolean|Google_Service_Analytics_GaData|integer|mixed
1087
  */
1088
  public function frontendWidgetStats($projectId, $from, $anonim)
1089
  {
@@ -1128,25 +1122,25 @@ if (!class_exists('WpmsGapiController')) {
1128
  {
1129
  if ($property_type === 'GA4') {
1130
  // Create the Metrics object.
1131
- $metric_active_users = new Google_Service_AnalyticsData_Metric();
1132
  $metric_active_users->setName('activeUsers');
1133
 
1134
- $metric_count_page_view = new Google_Service_AnalyticsData_Metric();
1135
  $metric_count_page_view->setName('screenPageViews');
1136
 
1137
  // Create the Dimension object
1138
- $dimension_all_active_users = new Google_Service_AnalyticsData_Dimension();
1139
  $dimension_all_active_users->setName('audienceName');
1140
 
1141
- $dimension_page_title = new Google_Service_AnalyticsData_Dimension();
1142
  $dimension_page_title->setName('unifiedScreenName');
1143
 
1144
  // Create the Request object
1145
- $request_all_active_users = new Google_Service_AnalyticsData_RunRealtimeReportRequest();
1146
  $request_all_active_users->setMetrics($metric_active_users);
1147
  $request_all_active_users->setDimensions($dimension_all_active_users);
1148
 
1149
- $request_all_page_title = new Google_Service_AnalyticsData_RunRealtimeReportRequest();
1150
  $request_all_page_title->setMetrics($metric_count_page_view);
1151
  $request_all_page_title->setDimensions($dimension_page_title);
1152
  } else {
@@ -1177,7 +1171,7 @@ if (!class_exists('WpmsGapiController')) {
1177
  } else {
1178
  $data = $transient;
1179
  }
1180
- } catch (Google_Service_Exception $e) {
1181
  WpmsGaTools::setCache(
1182
  'last_error',
1183
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
@@ -1234,7 +1228,7 @@ if (!class_exists('WpmsGapiController')) {
1234
  * @param string $filter Filter
1235
  * @param string $property_type Google analytic property
1236
  *
1237
- * @return array|boolean|Google_Service_Analytics_GaData|int|mixed
1238
  */
1239
  public function get($projectId, $query, $from = false, $to = false, $filter = '', $property_type = 'UA')
1240
  {
24
  /**
25
  * Google service analytics
26
  *
27
+ * @var WPMSGoogle\Service\Analytics
28
  */
29
  public $service;
30
  /**
31
  * Google analytics 4 service
32
  *
33
+ * @var WPMSGoogle\Service\AnalyticsData
34
  */
35
  public $service_ga4;
36
  /**
90
  $this->setErrorTimeout();
91
  $this->managequota = 'u' . get_current_user_id() . 's' . get_current_blog_id();
92
  $this->client = WpmsGaTools::setClient($this->client, $google_alanytics, $this->access);
93
+ $this->service = new WPMSGoogle\Service\Analytics($this->client);
94
+ $this->service_ga4 = new WPMSGoogle\Service\AnalyticsData($this->client);
95
  if (!empty($google_alanytics['googleCredentials'])) {
96
  $token = $google_alanytics['googleCredentials'];
97
  if ($token) {
98
  try {
99
  $this->client->setAccessToken($token);
100
+ } catch (WPMSGoogle\Service\Exception $e) {
 
 
 
 
 
 
101
  WpmsGaTools::setCache(
102
  'wpmsga_dash_lasterror',
103
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
198
  * @param array $options Optional parameters.
199
  * @param string $serial Serial
200
  *
201
+ * @return boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
202
  */
203
  private function handleCorereports($projectId, $from, $to, $metrics, $options, $serial)
204
  {
224
  $data = $this->service->data_ga->get('ga:' . $projectId, $from, $to, $metrics, $options);
225
  } else {
226
  if ($metrics === 'bottomstats') {
227
+ $ga4_metrics_sessions = new WPMSGoogle\Service\AnalyticsData\Metric();
228
  $ga4_metrics_sessions->setName('sessions');
229
 
230
+ $ga4_metrics_users = new WPMSGoogle\Service\AnalyticsData\Metric();
231
  $ga4_metrics_users->setName('totalUsers');
232
 
233
+ $ga4_metrics_page_views = new WPMSGoogle\Service\AnalyticsData\Metric();
234
  $ga4_metrics_page_views->setName('screenPageViews');
235
 
236
+ $ga4_metrics_engagement = new WPMSGoogle\Service\AnalyticsData\Metric();
237
  $ga4_metrics_engagement->setName('engagementAVG');
238
  $ga4_metrics_engagement->setExpression('userEngagementDuration/totalUsers');
239
 
240
+ $ga4_metrics_organic = new WPMSGoogle\Service\AnalyticsData\Metric();
241
  $ga4_metrics_organic->setName('transactions');
242
 
243
+ $ga4_metrics_pageViewsPerSession = new WPMSGoogle\Service\AnalyticsData\Metric();
244
  $ga4_metrics_pageViewsPerSession->setName('PageViewsPerSession');
245
  $ga4_metrics_pageViewsPerSession->setExpression('screenPageViews/sessions');
246
 
247
  $ga4_metrics = array($ga4_metrics_sessions, $ga4_metrics_users, $ga4_metrics_page_views, $ga4_metrics_engagement,
248
  $ga4_metrics_organic, $ga4_metrics_pageViewsPerSession);
249
  } elseif ($options['ga4_dimensions'] === 'visitorType') {
250
+ $ga4_metric_new_user = new WPMSGoogle\Service\AnalyticsData\Metric();
251
  $ga4_metric_new_user->setName('newUsers');
252
 
253
+ $ga4_metric_total_users = new WPMSGoogle\Service\AnalyticsData\Metric();
254
  $ga4_metric_total_users->setName('totalUsers');
255
 
256
  $ga4_metrics = array($ga4_metric_new_user, $ga4_metric_total_users);
257
  } elseif ($metrics === 'averageEngagementTime') {
258
+ $ga4_metrics = new WPMSGoogle\Service\AnalyticsData\Metric();
259
  $ga4_metrics->setName('averageEngagementTime');
260
  $ga4_metrics->setExpression('userEngagementDuration/totalUsers');
261
  } else {
262
+ $ga4_metrics = new WPMSGoogle\Service\AnalyticsData\Metric();
263
  $ga4_metrics->setName($metrics);
264
  }
265
 
266
  if ($options['ga4_dimensions'] === 'month_and_year') {
267
+ $dim_month = new WPMSGoogle\Service\AnalyticsData\Dimension();
268
  $dim_month->setName('month');
269
 
270
+ $dim_year = new WPMSGoogle\Service\AnalyticsData\Dimension();
271
  $dim_year->setName('year');
272
 
273
  $ga4_dimensions = array($dim_month, $dim_year);
274
  } else {
275
  $dim = $options['ga4_dimensions'];
276
+ $ga4_dimensions = new WPMSGoogle\Service\AnalyticsData\Dimension();
277
  $ga4_dimensions->setName($dim);
278
  }
279
 
280
+ $date_range = new WPMSGoogle\Service\AnalyticsData\DateRange();
281
  $date_range->setStartDate($from);
282
  $date_range->setEndDate($to);
283
 
284
+ $request = new WPMSGoogle\Service\AnalyticsData\RunReportRequest();
285
  $request->setMetrics(array($ga4_metrics));
286
  $request->setDateRanges($date_range);
287
  if ($metrics !== 'bottomstats' && $options['ga4_dimensions'] !== 'visitorType') {
294
  } else {
295
  $data = $transient;
296
  }
297
+ } catch (WPMSGoogle\Service\Exception $e) {
298
  WpmsGaTools::setCache(
299
  'last_error',
300
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
577
  * @param string $filter Filter
578
  * @param string $property_type Google analytic property type
579
  *
580
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
581
  */
582
  private function getNottomstats($projectId, $from, $to, $query, $filter = '', $property_type = 'UA')
583
  {
641
  * @param string $filter Filter
642
  * @param string $property_type Google analytic property type
643
  *
644
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
645
  */
646
  private function getContentPages($projectId, $from, $to, $filter = '', $property_type = 'UA')
647
  {
692
  * @param string $filter Filter
693
  * @param string $property_type Google analytic property
694
  *
695
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
696
  */
697
  private function getReferrers($projectId, $from, $to, $filter = '', $property_type = 'UA')
698
  {
750
  * @param string $filter Filter
751
  * @param string $property_type Google analytic property
752
  *
753
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
754
  */
755
  private function getSearches($projectId, $from, $to, $filter = '', $property_type = 'UA')
756
  {
802
  * @param string $filter Filter
803
  * @param string $property_type Google analytic property
804
  *
805
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
806
  */
807
  private function getLocations($projectId, $from, $to, $filter = '', $property_type = 'UA')
808
  {
871
  * @param string $filter Filter
872
  * @param string $property_type Google analytic property
873
  *
874
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
875
  */
876
  private function getOrgchartData($projectId, $from, $to, $query, $filter = '', $property_type = 'UA')
877
  {
966
  * @param string $filter Filter
967
  * @param string $property_type Google analytic property
968
  *
969
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
970
  */
971
  private function getPiechartData($projectId, $from, $to, $query, $filter = '', $property_type = 'UA')
972
  {
1077
  * @param string $from Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date
1078
  * @param string $anonim Anonim
1079
  *
1080
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
1081
  */
1082
  public function frontendWidgetStats($projectId, $from, $anonim)
1083
  {
1122
  {
1123
  if ($property_type === 'GA4') {
1124
  // Create the Metrics object.
1125
+ $metric_active_users = new WPMSGoogle\Service\AnalyticsData\Metric();
1126
  $metric_active_users->setName('activeUsers');
1127
 
1128
+ $metric_count_page_view = new WPMSGoogle\Service\AnalyticsData\Metric();
1129
  $metric_count_page_view->setName('screenPageViews');
1130
 
1131
  // Create the Dimension object
1132
+ $dimension_all_active_users = new WPMSGoogle\Service\AnalyticsData\Dimension();
1133
  $dimension_all_active_users->setName('audienceName');
1134
 
1135
+ $dimension_page_title = new WPMSGoogle\Service\AnalyticsData\Dimension();
1136
  $dimension_page_title->setName('unifiedScreenName');
1137
 
1138
  // Create the Request object
1139
+ $request_all_active_users = new WPMSGoogle\Service\AnalyticsData\RunRealtimeReportRequest();
1140
  $request_all_active_users->setMetrics($metric_active_users);
1141
  $request_all_active_users->setDimensions($dimension_all_active_users);
1142
 
1143
+ $request_all_page_title = new WPMSGoogle\Service\AnalyticsData\RunRealtimeReportRequest();
1144
  $request_all_page_title->setMetrics($metric_count_page_view);
1145
  $request_all_page_title->setDimensions($dimension_page_title);
1146
  } else {
1171
  } else {
1172
  $data = $transient;
1173
  }
1174
+ } catch (WPMSGoogle_Service_Exception $e) {
1175
  WpmsGaTools::setCache(
1176
  'last_error',
1177
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
1228
  * @param string $filter Filter
1229
  * @param string $property_type Google analytic property
1230
  *
1231
+ * @return array|boolean|WPMSGoogle\Service\Analytics\GaData|integer|mixed
1232
  */
1233
  public function get($projectId, $query, $from = false, $to = false, $filter = '', $property_type = 'UA')
1234
  {
inc/install-wizard/handler-wizard.php CHANGED
@@ -118,7 +118,7 @@ class WpmsHandlerWizard
118
  $client->setApplicationName('WP Meta SEO');
119
  $client->setRedirectUri('urn:ietf:wg:oauth:2.0:oob');
120
  $client = WpmsGaTools::setClient($client, array(), array(WPMS_CLIENTID, WPMS_CLIENTSECRET));
121
- $service = new Google_Service_Analytics($client);
122
  $google_alanytics = array();
123
  if (!stripos('x' . $wpms_ga_code, 'UA-', 1)) {
124
  WpmsGaTools::deleteCache('gapi_errors');
@@ -132,13 +132,7 @@ class WpmsHandlerWizard
132
  $client->setAccessToken($getAccessToken);
133
  $google_alanytics['googleCredentials']
134
  = $client->getAccessToken();
135
- } catch (Google_IO_Exception $e) {
136
- WpmsGaTools::setCache(
137
- 'wpmsga_dash_lasterror',
138
- date('Y-m-d H:i:s') . ': ' . esc_html($e),
139
- $error_timeout
140
- );
141
- } catch (Google_Service_Exception $e) {
142
  WpmsGaTools::setCache(
143
  'wpmsga_dash_lasterror',
144
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
@@ -168,9 +162,7 @@ class WpmsHandlerWizard
168
  $google_alanytics['googleCredentials'] = $getAccessToken;
169
  $google_alanytics['profile_list'] = $profiles;
170
  update_option('wpms_google_alanytics', $google_alanytics);
171
- } catch (Google_IO_Exception $e) {
172
- echo '';
173
- } catch (Google_Service_Exception $e) {
174
  echo '';
175
  } catch (Exception $e) {
176
  echo '';
@@ -253,14 +245,14 @@ class WpmsHandlerWizard
253
  WpmsGaTools::deleteCache('last_error');
254
  }
255
  return $ga_dash_profile_list;
256
- } catch (Google_IO_Exception $e) {
257
  WpmsGaTools::setCache(
258
  'last_error',
259
  date('Y-m-d H:i:s') . ': ' . esc_html($e),
260
  $error_timeout
261
  );
262
  return $ga_dash_profile_list;
263
- } catch (Google_Service_Exception $e) {
264
  WpmsGaTools::setCache(
265
  'last_error',
266
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
118
  $client->setApplicationName('WP Meta SEO');
119
  $client->setRedirectUri('urn:ietf:wg:oauth:2.0:oob');
120
  $client = WpmsGaTools::setClient($client, array(), array(WPMS_CLIENTID, WPMS_CLIENTSECRET));
121
+ $service = new WPMSGoogle_Service_Analytics($client);
122
  $google_alanytics = array();
123
  if (!stripos('x' . $wpms_ga_code, 'UA-', 1)) {
124
  WpmsGaTools::deleteCache('gapi_errors');
132
  $client->setAccessToken($getAccessToken);
133
  $google_alanytics['googleCredentials']
134
  = $client->getAccessToken();
135
+ } catch (WPMSGoogle\Service\Exception $e) {
 
 
 
 
 
 
136
  WpmsGaTools::setCache(
137
  'wpmsga_dash_lasterror',
138
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
162
  $google_alanytics['googleCredentials'] = $getAccessToken;
163
  $google_alanytics['profile_list'] = $profiles;
164
  update_option('wpms_google_alanytics', $google_alanytics);
165
+ } catch (WPMSGoogle\Service\Exception $e) {
 
 
166
  echo '';
167
  } catch (Exception $e) {
168
  echo '';
245
  WpmsGaTools::deleteCache('last_error');
246
  }
247
  return $ga_dash_profile_list;
248
+ } catch (WPMSGoogle_IO_Exception $e) {
249
  WpmsGaTools::setCache(
250
  'last_error',
251
  date('Y-m-d H:i:s') . ': ' . esc_html($e),
252
  $error_timeout
253
  );
254
  return $ga_dash_profile_list;
255
+ } catch (WPMSGoogle_Service_Exception $e) {
256
  WpmsGaTools::setCache(
257
  'last_error',
258
  date('Y-m-d H:i:s') . ': ' . esc_html('(' . $e->getCode() . ') ' . $e->getMessage()),
inc/lib/google-api/README.md CHANGED
@@ -135,7 +135,7 @@ $client = new WPMSGoogle\Client();
135
  $client->setApplicationName("Client_Library_Examples");
136
  $client->setDeveloperKey("YOUR_APP_KEY");
137
 
138
- $service = new Google_Service_Books($client);
139
  $optParams = array(
140
  'filter' => 'free-ebooks',
141
  'q' => 'Henry David Thoreau'
@@ -163,7 +163,7 @@ foreach ($results->getItems() as $item) {
163
  1. Set the scopes required for the API you are going to call
164
 
165
  ```php
166
- $client->addScope(Google_Service_Drive::DRIVE);
167
  ```
168
 
169
  1. Set your application's redirect URI
@@ -210,7 +210,7 @@ calls return unexpected 401 or 403 errors.
210
  1. Set the scopes required for the API you are going to call
211
 
212
  ```php
213
- $client->addScope(Google_Service_Drive::DRIVE);
214
  ```
215
 
216
  1. If you have delegated domain-wide access to the service account and you want to impersonate a user account, specify the email address of the user account using the method setSubject:
@@ -248,10 +248,10 @@ Using this library, the same call would look something like this:
248
 
249
  ```php
250
  // create the datastore service class
251
- $datastore = new Google_Service_Datastore($client);
252
 
253
  // build the query - this maps directly to the JSON
254
- $query = new Google_Service_Datastore_Query([
255
  'kind' => [
256
  [
257
  'name' => 'Book',
@@ -267,7 +267,7 @@ $query = new Google_Service_Datastore_Query([
267
  ]);
268
 
269
  // build the request and response
270
- $request = new Google_Service_Datastore_RunQueryRequest(['query' => $query]);
271
  $response = $datastore->projects->runQuery('YOUR_DATASET_ID', $request);
272
  ```
273
 
@@ -275,20 +275,20 @@ However, as each property of the JSON API has a corresponding generated class, t
275
 
276
  ```php
277
  // create the datastore service class
278
- $datastore = new Google_Service_Datastore($client);
279
 
280
  // build the query
281
- $request = new Google_Service_Datastore_RunQueryRequest();
282
- $query = new Google_Service_Datastore_Query();
283
  // - set the order
284
- $order = new Google_Service_Datastore_PropertyOrder();
285
  $order->setDirection('descending');
286
- $property = new Google_Service_Datastore_PropertyReference();
287
  $property->setName('title');
288
  $order->setProperty($property);
289
  $query->setOrder([$order]);
290
  // - set the kinds
291
- $kind = new Google_Service_Datastore_KindExpression();
292
  $kind->setName('Book');
293
  $query->setKinds([$kind]);
294
  // - set the limit
@@ -319,7 +319,7 @@ $client = new WPMSGoogle\Client();
319
  * Application Default Credentials.
320
  */
321
  $client->useApplicationDefaultCredentials();
322
- $client->addScope(Google_Service_Plus::PLUS_ME);
323
 
324
  // returns a Guzzle HTTP Client
325
  $httpClient = $client->authorize();
135
  $client->setApplicationName("Client_Library_Examples");
136
  $client->setDeveloperKey("YOUR_APP_KEY");
137
 
138
+ $service = new WPMSGoogle_Service_Books($client);
139
  $optParams = array(
140
  'filter' => 'free-ebooks',
141
  'q' => 'Henry David Thoreau'
163
  1. Set the scopes required for the API you are going to call
164
 
165
  ```php
166
+ $client->addScope(WPMSGoogle_Service_Drive::DRIVE);
167
  ```
168
 
169
  1. Set your application's redirect URI
210
  1. Set the scopes required for the API you are going to call
211
 
212
  ```php
213
+ $client->addScope(WPMSGoogle_Service_Drive::DRIVE);
214
  ```
215
 
216
  1. If you have delegated domain-wide access to the service account and you want to impersonate a user account, specify the email address of the user account using the method setSubject:
248
 
249
  ```php
250
  // create the datastore service class
251
+ $datastore = new WPMSGoogle_Service_Datastore($client);
252
 
253
  // build the query - this maps directly to the JSON
254
+ $query = new WPMSGoogle_Service_Datastore_Query([
255
  'kind' => [
256
  [
257
  'name' => 'Book',
267
  ]);
268
 
269
  // build the request and response
270
+ $request = new WPMSGoogle_Service_Datastore_RunQueryRequest(['query' => $query]);
271
  $response = $datastore->projects->runQuery('YOUR_DATASET_ID', $request);
272
  ```
273
 
275
 
276
  ```php
277
  // create the datastore service class
278
+ $datastore = new WPMSGoogle_Service_Datastore($client);
279
 
280
  // build the query
281
+ $request = new WPMSGoogle_Service_Datastore_RunQueryRequest();
282
+ $query = new WPMSGoogle_Service_Datastore_Query();
283
  // - set the order
284
+ $order = new WPMSGoogle_Service_Datastore_PropertyOrder();
285
  $order->setDirection('descending');
286
+ $property = new WPMSGoogle_Service_Datastore_PropertyReference();
287
  $property->setName('title');
288
  $order->setProperty($property);
289
  $query->setOrder([$order]);
290
  // - set the kinds
291
+ $kind = new WPMSGoogle_Service_Datastore_KindExpression();
292
  $kind->setName('Book');
293
  $query->setKinds([$kind]);
294
  // - set the limit
319
  * Application Default Credentials.
320
  */
321
  $client->useApplicationDefaultCredentials();
322
+ $client->addScope(WPMSGoogle_Service_Plus::PLUS_ME);
323
 
324
  // returns a Guzzle HTTP Client
325
  $httpClient = $client->authorize();
inc/lib/google-api/composer.lock CHANGED
@@ -8,16 +8,16 @@
8
  "packages": [
9
  {
10
  "name": "firebase/php-jwt",
11
- "version": "v5.2.1",
12
  "source": {
13
  "type": "git",
14
  "url": "https://github.com/firebase/php-jwt.git",
15
- "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
16
  },
17
  "dist": {
18
  "type": "zip",
19
- "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
20
- "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
21
  "shasum": ""
22
  },
23
  "require": {
@@ -26,6 +26,9 @@
26
  "require-dev": {
27
  "phpunit/phpunit": ">=4.8 <=9"
28
  },
 
 
 
29
  "type": "library",
30
  "autoload": {
31
  "psr-4": {
@@ -56,35 +59,38 @@
56
  ],
57
  "support": {
58
  "issues": "https://github.com/firebase/php-jwt/issues",
59
- "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
60
  },
61
- "time": "2021-02-12T00:02:00+00:00"
62
  },
63
  {
64
  "name": "google/apiclient-services",
65
- "version": "v0.171.0",
66
  "source": {
67
  "type": "git",
68
  "url": "https://github.com/googleapis/google-api-php-client-services.git",
69
- "reference": "b45ddc3d82b2c8f328d869d55db88c1885d898ee"
70
  },
71
  "dist": {
72
  "type": "zip",
73
- "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/b45ddc3d82b2c8f328d869d55db88c1885d898ee",
74
- "reference": "b45ddc3d82b2c8f328d869d55db88c1885d898ee",
75
  "shasum": ""
76
  },
77
  "require": {
78
- "php": ">=5.4"
79
  },
80
  "require-dev": {
81
- "phpunit/phpunit": "^4.8|^5"
82
  },
83
  "type": "library",
84
  "autoload": {
85
- "psr-0": {
86
- "Google_Service_": "src"
87
- }
 
 
 
88
  },
89
  "notification-url": "https://packagist.org/downloads/",
90
  "license": [
@@ -97,30 +103,30 @@
97
  ],
98
  "support": {
99
  "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
100
- "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.171.0"
101
  },
102
- "time": "2021-04-20T20:34:12+00:00"
103
  },
104
  {
105
  "name": "google/auth",
106
- "version": "v1.15.1",
107
  "source": {
108
  "type": "git",
109
  "url": "https://github.com/googleapis/google-auth-library-php.git",
110
- "reference": "4e0c9367719df9703e96f5ad613041b87742471c"
111
  },
112
  "dist": {
113
  "type": "zip",
114
- "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/4e0c9367719df9703e96f5ad613041b87742471c",
115
- "reference": "4e0c9367719df9703e96f5ad613041b87742471c",
116
  "shasum": ""
117
  },
118
  "require": {
119
  "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
120
  "guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
121
- "guzzlehttp/psr7": "^1.2",
122
  "php": ">=5.4",
123
- "psr/cache": "^1.0",
124
  "psr/http-message": "^1.0"
125
  },
126
  "require-dev": {
@@ -128,8 +134,7 @@
128
  "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
129
  "phpseclib/phpseclib": "^2.0.31",
130
  "phpunit/phpunit": "^4.8.36|^5.7",
131
- "sebastian/comparator": ">=1.2.3",
132
- "squizlabs/php_codesniffer": "^3.5"
133
  },
134
  "suggest": {
135
  "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
@@ -154,30 +159,31 @@
154
  "support": {
155
  "docs": "https://googleapis.github.io/google-auth-library-php/master/",
156
  "issues": "https://github.com/googleapis/google-auth-library-php/issues",
157
- "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.15.1"
158
  },
159
- "time": "2021-04-21T17:42:05+00:00"
160
  },
161
  {
162
  "name": "guzzlehttp/guzzle",
163
- "version": "7.3.0",
164
  "source": {
165
  "type": "git",
166
  "url": "https://github.com/guzzle/guzzle.git",
167
- "reference": "7008573787b430c1c1f650e3722d9bba59967628"
168
  },
169
  "dist": {
170
  "type": "zip",
171
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
172
- "reference": "7008573787b430c1c1f650e3722d9bba59967628",
173
  "shasum": ""
174
  },
175
  "require": {
176
  "ext-json": "*",
177
- "guzzlehttp/promises": "^1.4",
178
- "guzzlehttp/psr7": "^1.7 || ^2.0",
179
  "php": "^7.2.5 || ^8.0",
180
- "psr/http-client": "^1.0"
 
181
  },
182
  "provide": {
183
  "psr/http-client-implementation": "1.0"
@@ -187,7 +193,7 @@
187
  "ext-curl": "*",
188
  "php-http/client-integration-tests": "^3.0",
189
  "phpunit/phpunit": "^8.5.5 || ^9.3.5",
190
- "psr/log": "^1.1"
191
  },
192
  "suggest": {
193
  "ext-curl": "Required for CURL handler support",
@@ -197,7 +203,7 @@
197
  "type": "library",
198
  "extra": {
199
  "branch-alias": {
200
- "dev-master": "7.3-dev"
201
  }
202
  },
203
  "autoload": {
@@ -213,19 +219,43 @@
213
  "MIT"
214
  ],
215
  "authors": [
 
 
 
 
 
216
  {
217
  "name": "Michael Dowling",
218
  "email": "mtdowling@gmail.com",
219
  "homepage": "https://github.com/mtdowling"
220
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  {
222
  "name": "Márk Sági-Kazár",
223
  "email": "mark.sagikazar@gmail.com",
224
- "homepage": "https://sagikazarmark.hu"
 
 
 
 
 
225
  }
226
  ],
227
  "description": "Guzzle is a PHP HTTP client library",
228
- "homepage": "http://guzzlephp.org/",
229
  "keywords": [
230
  "client",
231
  "curl",
@@ -239,7 +269,7 @@
239
  ],
240
  "support": {
241
  "issues": "https://github.com/guzzle/guzzle/issues",
242
- "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
243
  },
244
  "funding": [
245
  {
@@ -251,28 +281,24 @@
251
  "type": "github"
252
  },
253
  {
254
- "url": "https://github.com/alexeyshockov",
255
- "type": "github"
256
- },
257
- {
258
- "url": "https://github.com/gmponos",
259
- "type": "github"
260
  }
261
  ],
262
- "time": "2021-03-23T11:33:13+00:00"
263
  },
264
  {
265
  "name": "guzzlehttp/promises",
266
- "version": "1.4.1",
267
  "source": {
268
  "type": "git",
269
  "url": "https://github.com/guzzle/promises.git",
270
- "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
271
  },
272
  "dist": {
273
  "type": "zip",
274
- "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
275
- "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
276
  "shasum": ""
277
  },
278
  "require": {
@@ -284,7 +310,7 @@
284
  "type": "library",
285
  "extra": {
286
  "branch-alias": {
287
- "dev-master": "1.4-dev"
288
  }
289
  },
290
  "autoload": {
@@ -300,10 +326,25 @@
300
  "MIT"
301
  ],
302
  "authors": [
 
 
 
 
 
303
  {
304
  "name": "Michael Dowling",
305
  "email": "mtdowling@gmail.com",
306
  "homepage": "https://github.com/mtdowling"
 
 
 
 
 
 
 
 
 
 
307
  }
308
  ],
309
  "description": "Guzzle promises library",
@@ -312,22 +353,36 @@
312
  ],
313
  "support": {
314
  "issues": "https://github.com/guzzle/promises/issues",
315
- "source": "https://github.com/guzzle/promises/tree/1.4.1"
316
  },
317
- "time": "2021-03-07T09:25:29+00:00"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  },
319
  {
320
  "name": "guzzlehttp/psr7",
321
- "version": "1.8.2",
322
  "source": {
323
  "type": "git",
324
  "url": "https://github.com/guzzle/psr7.git",
325
- "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
326
  },
327
  "dist": {
328
  "type": "zip",
329
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
330
- "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
331
  "shasum": ""
332
  },
333
  "require": {
@@ -364,13 +419,34 @@
364
  "MIT"
365
  ],
366
  "authors": [
 
 
 
 
 
367
  {
368
  "name": "Michael Dowling",
369
  "email": "mtdowling@gmail.com",
370
  "homepage": "https://github.com/mtdowling"
371
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
  {
373
  "name": "Tobias Schultze",
 
374
  "homepage": "https://github.com/Tobion"
375
  }
376
  ],
@@ -387,30 +463,44 @@
387
  ],
388
  "support": {
389
  "issues": "https://github.com/guzzle/psr7/issues",
390
- "source": "https://github.com/guzzle/psr7/tree/1.8.2"
391
  },
392
- "time": "2021-04-26T09:17:50+00:00"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
393
  },
394
  {
395
  "name": "monolog/monolog",
396
- "version": "2.2.0",
397
  "source": {
398
  "type": "git",
399
  "url": "https://github.com/Seldaek/monolog.git",
400
- "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
401
  },
402
  "dist": {
403
  "type": "zip",
404
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
405
- "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
406
  "shasum": ""
407
  },
408
  "require": {
409
  "php": ">=7.2",
410
- "psr/log": "^1.0.1"
411
  },
412
  "provide": {
413
- "psr/log-implementation": "1.0.0"
414
  },
415
  "require-dev": {
416
  "aws/aws-sdk-php": "^2.4.9 || ^3.0",
@@ -418,14 +508,14 @@
418
  "elasticsearch/elasticsearch": "^7",
419
  "graylog2/gelf-php": "^1.4.2",
420
  "mongodb/mongodb": "^1.8",
421
- "php-amqplib/php-amqplib": "~2.4",
422
  "php-console/php-console": "^3.1.3",
423
  "phpspec/prophecy": "^1.6.1",
424
- "phpstan/phpstan": "^0.12.59",
425
  "phpunit/phpunit": "^8.5",
426
  "predis/predis": "^1.1",
427
  "rollbar/rollbar": "^1.3",
428
- "ruflin/elastica": ">=0.90 <7.0.1",
429
  "swiftmailer/swiftmailer": "^5.3|^6.0"
430
  },
431
  "suggest": {
@@ -433,8 +523,11 @@
433
  "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
434
  "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
435
  "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
 
436
  "ext-mbstring": "Allow to work properly with unicode symbols",
437
  "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
 
 
438
  "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
439
  "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
440
  "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
@@ -473,7 +566,7 @@
473
  ],
474
  "support": {
475
  "issues": "https://github.com/Seldaek/monolog/issues",
476
- "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
477
  },
478
  "funding": [
479
  {
@@ -485,7 +578,7 @@
485
  "type": "tidelift"
486
  }
487
  ],
488
- "time": "2020-12-14T13:15:25+00:00"
489
  },
490
  {
491
  "name": "paragonie/constant_time_encoding",
@@ -606,16 +699,16 @@
606
  },
607
  {
608
  "name": "phpseclib/phpseclib",
609
- "version": "3.0.8",
610
  "source": {
611
  "type": "git",
612
  "url": "https://github.com/phpseclib/phpseclib.git",
613
- "reference": "d9615a6fb970d9933866ca8b4036ec3407b020b6"
614
  },
615
  "dist": {
616
  "type": "zip",
617
- "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d9615a6fb970d9933866ca8b4036ec3407b020b6",
618
- "reference": "d9615a6fb970d9933866ca8b4036ec3407b020b6",
619
  "shasum": ""
620
  },
621
  "require": {
@@ -697,7 +790,7 @@
697
  ],
698
  "support": {
699
  "issues": "https://github.com/phpseclib/phpseclib/issues",
700
- "source": "https://github.com/phpseclib/phpseclib/tree/3.0.8"
701
  },
702
  "funding": [
703
  {
@@ -713,7 +806,7 @@
713
  "type": "tidelift"
714
  }
715
  ],
716
- "time": "2021-04-19T03:20:48+00:00"
717
  },
718
  {
719
  "name": "psr/cache",
@@ -871,16 +964,16 @@
871
  },
872
  {
873
  "name": "psr/log",
874
- "version": "1.1.3",
875
  "source": {
876
  "type": "git",
877
  "url": "https://github.com/php-fig/log.git",
878
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
879
  },
880
  "dist": {
881
  "type": "zip",
882
- "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
883
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
884
  "shasum": ""
885
  },
886
  "require": {
@@ -904,7 +997,7 @@
904
  "authors": [
905
  {
906
  "name": "PHP-FIG",
907
- "homepage": "http://www.php-fig.org/"
908
  }
909
  ],
910
  "description": "Common interface for logging libraries",
@@ -915,9 +1008,9 @@
915
  "psr-3"
916
  ],
917
  "support": {
918
- "source": "https://github.com/php-fig/log/tree/1.1.3"
919
  },
920
- "time": "2020-03-23T09:12:05+00:00"
921
  },
922
  {
923
  "name": "ralouphie/getallheaders",
@@ -962,6 +1055,73 @@
962
  "source": "https://github.com/ralouphie/getallheaders/tree/develop"
963
  },
964
  "time": "2019-03-08T08:55:37+00:00"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
965
  }
966
  ],
967
  "packages-dev": [
@@ -1162,16 +1322,16 @@
1162
  },
1163
  {
1164
  "name": "composer/ca-bundle",
1165
- "version": "1.2.9",
1166
  "source": {
1167
  "type": "git",
1168
  "url": "https://github.com/composer/ca-bundle.git",
1169
- "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
1170
  },
1171
  "dist": {
1172
  "type": "zip",
1173
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
1174
- "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
1175
  "shasum": ""
1176
  },
1177
  "require": {
@@ -1183,7 +1343,7 @@
1183
  "phpstan/phpstan": "^0.12.55",
1184
  "psr/log": "^1.0",
1185
  "symfony/phpunit-bridge": "^4.2 || ^5",
1186
- "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
1187
  },
1188
  "type": "library",
1189
  "extra": {
@@ -1218,7 +1378,7 @@
1218
  "support": {
1219
  "irc": "irc://irc.freenode.org/composer",
1220
  "issues": "https://github.com/composer/ca-bundle/issues",
1221
- "source": "https://github.com/composer/ca-bundle/tree/1.2.9"
1222
  },
1223
  "funding": [
1224
  {
@@ -1234,20 +1394,20 @@
1234
  "type": "tidelift"
1235
  }
1236
  ],
1237
- "time": "2021-01-12T12:10:35+00:00"
1238
  },
1239
  {
1240
  "name": "composer/composer",
1241
- "version": "1.10.21",
1242
  "source": {
1243
  "type": "git",
1244
  "url": "https://github.com/composer/composer.git",
1245
- "reference": "04021432f4a9cbd9351dd166b8c193f42c36a39c"
1246
  },
1247
  "dist": {
1248
  "type": "zip",
1249
- "url": "https://api.github.com/repos/composer/composer/zipball/04021432f4a9cbd9351dd166b8c193f42c36a39c",
1250
- "reference": "04021432f4a9cbd9351dd166b8c193f42c36a39c",
1251
  "shasum": ""
1252
  },
1253
  "require": {
@@ -1317,7 +1477,7 @@
1317
  "support": {
1318
  "irc": "irc://irc.freenode.org/composer",
1319
  "issues": "https://github.com/composer/composer/issues",
1320
- "source": "https://github.com/composer/composer/tree/1.10.21"
1321
  },
1322
  "funding": [
1323
  {
@@ -1333,7 +1493,7 @@
1333
  "type": "tidelift"
1334
  }
1335
  ],
1336
- "time": "2021-04-01T07:16:35+00:00"
1337
  },
1338
  {
1339
  "name": "composer/semver",
@@ -1417,23 +1577,24 @@
1417
  },
1418
  {
1419
  "name": "composer/spdx-licenses",
1420
- "version": "1.5.5",
1421
  "source": {
1422
  "type": "git",
1423
  "url": "https://github.com/composer/spdx-licenses.git",
1424
- "reference": "de30328a7af8680efdc03e396aad24befd513200"
1425
  },
1426
  "dist": {
1427
  "type": "zip",
1428
- "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
1429
- "reference": "de30328a7af8680efdc03e396aad24befd513200",
1430
  "shasum": ""
1431
  },
1432
  "require": {
1433
  "php": "^5.3.2 || ^7.0 || ^8.0"
1434
  },
1435
  "require-dev": {
1436
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
 
1437
  },
1438
  "type": "library",
1439
  "extra": {
@@ -1476,7 +1637,7 @@
1476
  "support": {
1477
  "irc": "irc://irc.freenode.org/composer",
1478
  "issues": "https://github.com/composer/spdx-licenses/issues",
1479
- "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
1480
  },
1481
  "funding": [
1482
  {
@@ -1492,7 +1653,7 @@
1492
  "type": "tidelift"
1493
  }
1494
  ],
1495
- "time": "2020-12-03T16:04:16+00:00"
1496
  },
1497
  {
1498
  "name": "composer/xdebug-handler",
@@ -1699,16 +1860,16 @@
1699
  },
1700
  {
1701
  "name": "justinrainbow/json-schema",
1702
- "version": "5.2.10",
1703
  "source": {
1704
  "type": "git",
1705
  "url": "https://github.com/justinrainbow/json-schema.git",
1706
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
1707
  },
1708
  "dist": {
1709
  "type": "zip",
1710
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
1711
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
1712
  "shasum": ""
1713
  },
1714
  "require": {
@@ -1763,22 +1924,22 @@
1763
  ],
1764
  "support": {
1765
  "issues": "https://github.com/justinrainbow/json-schema/issues",
1766
- "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
1767
  },
1768
- "time": "2020-05-27T16:41:55+00:00"
1769
  },
1770
  {
1771
  "name": "league/flysystem",
1772
- "version": "1.1.3",
1773
  "source": {
1774
  "type": "git",
1775
  "url": "https://github.com/thephpleague/flysystem.git",
1776
- "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
1777
  },
1778
  "dist": {
1779
  "type": "zip",
1780
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
1781
- "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
1782
  "shasum": ""
1783
  },
1784
  "require": {
@@ -1794,7 +1955,6 @@
1794
  "phpunit/phpunit": "^8.5.8"
1795
  },
1796
  "suggest": {
1797
- "ext-fileinfo": "Required for MimeType",
1798
  "ext-ftp": "Allows you to use FTP server storage",
1799
  "ext-openssl": "Allows you to use FTPS server storage",
1800
  "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
@@ -1852,7 +2012,7 @@
1852
  ],
1853
  "support": {
1854
  "issues": "https://github.com/thephpleague/flysystem/issues",
1855
- "source": "https://github.com/thephpleague/flysystem/tree/1.x"
1856
  },
1857
  "funding": [
1858
  {
@@ -1860,20 +2020,20 @@
1860
  "type": "other"
1861
  }
1862
  ],
1863
- "time": "2020-08-23T07:39:11+00:00"
1864
  },
1865
  {
1866
  "name": "league/mime-type-detection",
1867
- "version": "1.7.0",
1868
  "source": {
1869
  "type": "git",
1870
  "url": "https://github.com/thephpleague/mime-type-detection.git",
1871
- "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
1872
  },
1873
  "dist": {
1874
  "type": "zip",
1875
- "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
1876
- "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
1877
  "shasum": ""
1878
  },
1879
  "require": {
@@ -1881,7 +2041,7 @@
1881
  "php": "^7.2 || ^8.0"
1882
  },
1883
  "require-dev": {
1884
- "friendsofphp/php-cs-fixer": "^2.18",
1885
  "phpstan/phpstan": "^0.12.68",
1886
  "phpunit/phpunit": "^8.5.8 || ^9.3"
1887
  },
@@ -1904,7 +2064,7 @@
1904
  "description": "Mime-type detection for Flysystem",
1905
  "support": {
1906
  "issues": "https://github.com/thephpleague/mime-type-detection/issues",
1907
- "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
1908
  },
1909
  "funding": [
1910
  {
@@ -1916,7 +2076,7 @@
1916
  "type": "tidelift"
1917
  }
1918
  ],
1919
- "time": "2021-01-18T20:58:21+00:00"
1920
  },
1921
  {
1922
  "name": "myclabs/deep-copy",
@@ -1978,16 +2138,16 @@
1978
  },
1979
  {
1980
  "name": "phar-io/manifest",
1981
- "version": "2.0.1",
1982
  "source": {
1983
  "type": "git",
1984
  "url": "https://github.com/phar-io/manifest.git",
1985
- "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
1986
  },
1987
  "dist": {
1988
  "type": "zip",
1989
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
1990
- "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
1991
  "shasum": ""
1992
  },
1993
  "require": {
@@ -2032,9 +2192,9 @@
2032
  "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
2033
  "support": {
2034
  "issues": "https://github.com/phar-io/manifest/issues",
2035
- "source": "https://github.com/phar-io/manifest/tree/master"
2036
  },
2037
- "time": "2020-06-27T14:33:11+00:00"
2038
  },
2039
  {
2040
  "name": "phar-io/version",
@@ -2204,16 +2364,16 @@
2204
  },
2205
  {
2206
  "name": "phpdocumentor/reflection-docblock",
2207
- "version": "5.2.2",
2208
  "source": {
2209
  "type": "git",
2210
  "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
2211
- "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
2212
  },
2213
  "dist": {
2214
  "type": "zip",
2215
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
2216
- "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
2217
  "shasum": ""
2218
  },
2219
  "require": {
@@ -2224,7 +2384,8 @@
2224
  "webmozart/assert": "^1.9.1"
2225
  },
2226
  "require-dev": {
2227
- "mockery/mockery": "~1.3.2"
 
2228
  },
2229
  "type": "library",
2230
  "extra": {
@@ -2254,22 +2415,22 @@
2254
  "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
2255
  "support": {
2256
  "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
2257
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
2258
  },
2259
- "time": "2020-09-03T19:13:55+00:00"
2260
  },
2261
  {
2262
  "name": "phpdocumentor/type-resolver",
2263
- "version": "1.4.0",
2264
  "source": {
2265
  "type": "git",
2266
  "url": "https://github.com/phpDocumentor/TypeResolver.git",
2267
- "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
2268
  },
2269
  "dist": {
2270
  "type": "zip",
2271
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
2272
- "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
2273
  "shasum": ""
2274
  },
2275
  "require": {
@@ -2277,7 +2438,8 @@
2277
  "phpdocumentor/reflection-common": "^2.0"
2278
  },
2279
  "require-dev": {
2280
- "ext-tokenizer": "*"
 
2281
  },
2282
  "type": "library",
2283
  "extra": {
@@ -2303,39 +2465,39 @@
2303
  "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
2304
  "support": {
2305
  "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
2306
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
2307
  },
2308
- "time": "2020-09-17T18:55:26+00:00"
2309
  },
2310
  {
2311
  "name": "phpspec/prophecy",
2312
- "version": "1.13.0",
2313
  "source": {
2314
  "type": "git",
2315
  "url": "https://github.com/phpspec/prophecy.git",
2316
- "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
2317
  },
2318
  "dist": {
2319
  "type": "zip",
2320
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
2321
- "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
2322
  "shasum": ""
2323
  },
2324
  "require": {
2325
  "doctrine/instantiator": "^1.2",
2326
- "php": "^7.2 || ~8.0, <8.1",
2327
  "phpdocumentor/reflection-docblock": "^5.2",
2328
  "sebastian/comparator": "^3.0 || ^4.0",
2329
  "sebastian/recursion-context": "^3.0 || ^4.0"
2330
  },
2331
  "require-dev": {
2332
- "phpspec/phpspec": "^6.0",
2333
  "phpunit/phpunit": "^8.0 || ^9.0"
2334
  },
2335
  "type": "library",
2336
  "extra": {
2337
  "branch-alias": {
2338
- "dev-master": "1.11.x-dev"
2339
  }
2340
  },
2341
  "autoload": {
@@ -2370,22 +2532,22 @@
2370
  ],
2371
  "support": {
2372
  "issues": "https://github.com/phpspec/prophecy/issues",
2373
- "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
2374
  },
2375
- "time": "2021-03-17T13:42:18+00:00"
2376
  },
2377
  {
2378
  "name": "phpunit/php-code-coverage",
2379
- "version": "7.0.14",
2380
  "source": {
2381
  "type": "git",
2382
  "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
2383
- "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
2384
  },
2385
  "dist": {
2386
  "type": "zip",
2387
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
2388
- "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
2389
  "shasum": ""
2390
  },
2391
  "require": {
@@ -2394,7 +2556,7 @@
2394
  "php": ">=7.2",
2395
  "phpunit/php-file-iterator": "^2.0.2",
2396
  "phpunit/php-text-template": "^1.2.1",
2397
- "phpunit/php-token-stream": "^3.1.1 || ^4.0",
2398
  "sebastian/code-unit-reverse-lookup": "^1.0.1",
2399
  "sebastian/environment": "^4.2.2",
2400
  "sebastian/version": "^2.0.1",
@@ -2437,7 +2599,7 @@
2437
  ],
2438
  "support": {
2439
  "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
2440
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
2441
  },
2442
  "funding": [
2443
  {
@@ -2445,20 +2607,20 @@
2445
  "type": "github"
2446
  }
2447
  ],
2448
- "time": "2020-12-02T13:39:03+00:00"
2449
  },
2450
  {
2451
  "name": "phpunit/php-file-iterator",
2452
- "version": "2.0.3",
2453
  "source": {
2454
  "type": "git",
2455
  "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
2456
- "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
2457
  },
2458
  "dist": {
2459
  "type": "zip",
2460
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
2461
- "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
2462
  "shasum": ""
2463
  },
2464
  "require": {
@@ -2497,7 +2659,7 @@
2497
  ],
2498
  "support": {
2499
  "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
2500
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
2501
  },
2502
  "funding": [
2503
  {
@@ -2505,7 +2667,7 @@
2505
  "type": "github"
2506
  }
2507
  ],
2508
- "time": "2020-11-30T08:25:21+00:00"
2509
  },
2510
  {
2511
  "name": "phpunit/php-text-template",
@@ -2673,16 +2835,16 @@
2673
  },
2674
  {
2675
  "name": "phpunit/phpunit",
2676
- "version": "8.5.15",
2677
  "source": {
2678
  "type": "git",
2679
  "url": "https://github.com/sebastianbergmann/phpunit.git",
2680
- "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
2681
  },
2682
  "dist": {
2683
  "type": "zip",
2684
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
2685
- "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
2686
  "shasum": ""
2687
  },
2688
  "require": {
@@ -2694,12 +2856,12 @@
2694
  "ext-xml": "*",
2695
  "ext-xmlwriter": "*",
2696
  "myclabs/deep-copy": "^1.10.0",
2697
- "phar-io/manifest": "^2.0.1",
2698
  "phar-io/version": "^3.0.2",
2699
  "php": ">=7.2",
2700
  "phpspec/prophecy": "^1.10.3",
2701
  "phpunit/php-code-coverage": "^7.0.12",
2702
- "phpunit/php-file-iterator": "^2.0.2",
2703
  "phpunit/php-text-template": "^1.2.1",
2704
  "phpunit/php-timer": "^2.1.2",
2705
  "sebastian/comparator": "^3.0.2",
@@ -2754,7 +2916,7 @@
2754
  ],
2755
  "support": {
2756
  "issues": "https://github.com/sebastianbergmann/phpunit/issues",
2757
- "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.15"
2758
  },
2759
  "funding": [
2760
  {
@@ -2766,26 +2928,31 @@
2766
  "type": "github"
2767
  }
2768
  ],
2769
- "time": "2021-03-17T07:27:54+00:00"
2770
  },
2771
  {
2772
  "name": "psr/container",
2773
- "version": "1.1.1",
2774
  "source": {
2775
  "type": "git",
2776
  "url": "https://github.com/php-fig/container.git",
2777
- "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
2778
  },
2779
  "dist": {
2780
  "type": "zip",
2781
- "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
2782
- "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
2783
  "shasum": ""
2784
  },
2785
  "require": {
2786
- "php": ">=7.2.0"
2787
  },
2788
  "type": "library",
 
 
 
 
 
2789
  "autoload": {
2790
  "psr-4": {
2791
  "Psr\\Container\\": "src/"
@@ -2812,9 +2979,9 @@
2812
  ],
2813
  "support": {
2814
  "issues": "https://github.com/php-fig/container/issues",
2815
- "source": "https://github.com/php-fig/container/tree/1.1.1"
2816
  },
2817
- "time": "2021-03-05T17:36:06+00:00"
2818
  },
2819
  {
2820
  "name": "psr/simple-cache",
@@ -3127,16 +3294,16 @@
3127
  },
3128
  {
3129
  "name": "sebastian/exporter",
3130
- "version": "3.1.3",
3131
  "source": {
3132
  "type": "git",
3133
  "url": "https://github.com/sebastianbergmann/exporter.git",
3134
- "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
3135
  },
3136
  "dist": {
3137
  "type": "zip",
3138
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
3139
- "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
3140
  "shasum": ""
3141
  },
3142
  "require": {
@@ -3145,7 +3312,7 @@
3145
  },
3146
  "require-dev": {
3147
  "ext-mbstring": "*",
3148
- "phpunit/phpunit": "^6.0"
3149
  },
3150
  "type": "library",
3151
  "extra": {
@@ -3192,7 +3359,7 @@
3192
  ],
3193
  "support": {
3194
  "issues": "https://github.com/sebastianbergmann/exporter/issues",
3195
- "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
3196
  },
3197
  "funding": [
3198
  {
@@ -3200,7 +3367,7 @@
3200
  "type": "github"
3201
  }
3202
  ],
3203
- "time": "2020-11-30T07:47:53+00:00"
3204
  },
3205
  {
3206
  "name": "sebastian/global-state",
@@ -3661,16 +3828,16 @@
3661
  },
3662
  {
3663
  "name": "seld/phar-utils",
3664
- "version": "1.1.1",
3665
  "source": {
3666
  "type": "git",
3667
  "url": "https://github.com/Seldaek/phar-utils.git",
3668
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
3669
  },
3670
  "dist": {
3671
  "type": "zip",
3672
- "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
3673
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
3674
  "shasum": ""
3675
  },
3676
  "require": {
@@ -3703,9 +3870,9 @@
3703
  ],
3704
  "support": {
3705
  "issues": "https://github.com/Seldaek/phar-utils/issues",
3706
- "source": "https://github.com/Seldaek/phar-utils/tree/master"
3707
  },
3708
- "time": "2020-07-07T18:42:57+00:00"
3709
  },
3710
  {
3711
  "name": "squizlabs/php_codesniffer",
@@ -3792,27 +3959,29 @@
3792
  },
3793
  {
3794
  "name": "symfony/console",
3795
- "version": "v5.2.6",
3796
  "source": {
3797
  "type": "git",
3798
  "url": "https://github.com/symfony/console.git",
3799
- "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d"
3800
  },
3801
  "dist": {
3802
  "type": "zip",
3803
- "url": "https://api.github.com/repos/symfony/console/zipball/35f039df40a3b335ebf310f244cb242b3a83ac8d",
3804
- "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d",
3805
  "shasum": ""
3806
  },
3807
  "require": {
3808
  "php": ">=7.2.5",
 
3809
  "symfony/polyfill-mbstring": "~1.0",
3810
  "symfony/polyfill-php73": "^1.8",
3811
- "symfony/polyfill-php80": "^1.15",
3812
- "symfony/service-contracts": "^1.1|^2",
3813
- "symfony/string": "^5.1"
3814
  },
3815
  "conflict": {
 
3816
  "symfony/dependency-injection": "<4.4",
3817
  "symfony/dotenv": "<5.1",
3818
  "symfony/event-dispatcher": "<4.4",
@@ -3820,16 +3989,16 @@
3820
  "symfony/process": "<4.4"
3821
  },
3822
  "provide": {
3823
- "psr/log-implementation": "1.0"
3824
  },
3825
  "require-dev": {
3826
- "psr/log": "~1.0",
3827
- "symfony/config": "^4.4|^5.0",
3828
- "symfony/dependency-injection": "^4.4|^5.0",
3829
- "symfony/event-dispatcher": "^4.4|^5.0",
3830
- "symfony/lock": "^4.4|^5.0",
3831
- "symfony/process": "^4.4|^5.0",
3832
- "symfony/var-dumper": "^4.4|^5.0"
3833
  },
3834
  "suggest": {
3835
  "psr/log": "For using the console logger",
@@ -3869,7 +4038,7 @@
3869
  "terminal"
3870
  ],
3871
  "support": {
3872
- "source": "https://github.com/symfony/console/tree/v5.2.6"
3873
  },
3874
  "funding": [
3875
  {
@@ -3885,7 +4054,7 @@
3885
  "type": "tidelift"
3886
  }
3887
  ],
3888
- "time": "2021-03-28T09:42:18+00:00"
3889
  },
3890
  {
3891
  "name": "symfony/css-selector",
@@ -4005,21 +4174,23 @@
4005
  },
4006
  {
4007
  "name": "symfony/filesystem",
4008
- "version": "v5.2.6",
4009
  "source": {
4010
  "type": "git",
4011
  "url": "https://github.com/symfony/filesystem.git",
4012
- "reference": "8c86a82f51658188119e62cff0a050a12d09836f"
4013
  },
4014
  "dist": {
4015
  "type": "zip",
4016
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
4017
- "reference": "8c86a82f51658188119e62cff0a050a12d09836f",
4018
  "shasum": ""
4019
  },
4020
  "require": {
4021
  "php": ">=7.2.5",
4022
- "symfony/polyfill-ctype": "~1.8"
 
 
4023
  },
4024
  "type": "library",
4025
  "autoload": {
@@ -4047,7 +4218,7 @@
4047
  "description": "Provides basic utilities for the filesystem",
4048
  "homepage": "https://symfony.com",
4049
  "support": {
4050
- "source": "https://github.com/symfony/filesystem/tree/v5.2.6"
4051
  },
4052
  "funding": [
4053
  {
@@ -4063,24 +4234,26 @@
4063
  "type": "tidelift"
4064
  }
4065
  ],
4066
- "time": "2021-03-28T14:30:26+00:00"
4067
  },
4068
  {
4069
  "name": "symfony/finder",
4070
- "version": "v5.2.4",
4071
  "source": {
4072
  "type": "git",
4073
  "url": "https://github.com/symfony/finder.git",
4074
- "reference": "0d639a0943822626290d169965804f79400e6a04"
4075
  },
4076
  "dist": {
4077
  "type": "zip",
4078
- "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
4079
- "reference": "0d639a0943822626290d169965804f79400e6a04",
4080
  "shasum": ""
4081
  },
4082
  "require": {
4083
- "php": ">=7.2.5"
 
 
4084
  },
4085
  "type": "library",
4086
  "autoload": {
@@ -4108,7 +4281,7 @@
4108
  "description": "Finds files and directories via an intuitive fluent interface",
4109
  "homepage": "https://symfony.com",
4110
  "support": {
4111
- "source": "https://github.com/symfony/finder/tree/v5.2.4"
4112
  },
4113
  "funding": [
4114
  {
@@ -4124,20 +4297,20 @@
4124
  "type": "tidelift"
4125
  }
4126
  ],
4127
- "time": "2021-02-15T18:55:04+00:00"
4128
  },
4129
  {
4130
  "name": "symfony/polyfill-ctype",
4131
- "version": "v1.22.1",
4132
  "source": {
4133
  "type": "git",
4134
  "url": "https://github.com/symfony/polyfill-ctype.git",
4135
- "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
4136
  },
4137
  "dist": {
4138
  "type": "zip",
4139
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
4140
- "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
4141
  "shasum": ""
4142
  },
4143
  "require": {
@@ -4149,7 +4322,7 @@
4149
  "type": "library",
4150
  "extra": {
4151
  "branch-alias": {
4152
- "dev-main": "1.22-dev"
4153
  },
4154
  "thanks": {
4155
  "name": "symfony/polyfill",
@@ -4187,7 +4360,7 @@
4187
  "portable"
4188
  ],
4189
  "support": {
4190
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
4191
  },
4192
  "funding": [
4193
  {
@@ -4203,20 +4376,20 @@
4203
  "type": "tidelift"
4204
  }
4205
  ],
4206
- "time": "2021-01-07T16:49:33+00:00"
4207
  },
4208
  {
4209
  "name": "symfony/polyfill-intl-grapheme",
4210
- "version": "v1.22.1",
4211
  "source": {
4212
  "type": "git",
4213
  "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
4214
- "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
4215
  },
4216
  "dist": {
4217
  "type": "zip",
4218
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
4219
- "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
4220
  "shasum": ""
4221
  },
4222
  "require": {
@@ -4228,7 +4401,7 @@
4228
  "type": "library",
4229
  "extra": {
4230
  "branch-alias": {
4231
- "dev-main": "1.22-dev"
4232
  },
4233
  "thanks": {
4234
  "name": "symfony/polyfill",
@@ -4268,7 +4441,7 @@
4268
  "shim"
4269
  ],
4270
  "support": {
4271
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
4272
  },
4273
  "funding": [
4274
  {
@@ -4284,20 +4457,20 @@
4284
  "type": "tidelift"
4285
  }
4286
  ],
4287
- "time": "2021-01-22T09:19:47+00:00"
4288
  },
4289
  {
4290
  "name": "symfony/polyfill-intl-normalizer",
4291
- "version": "v1.22.1",
4292
  "source": {
4293
  "type": "git",
4294
  "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
4295
- "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
4296
  },
4297
  "dist": {
4298
  "type": "zip",
4299
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
4300
- "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
4301
  "shasum": ""
4302
  },
4303
  "require": {
@@ -4309,7 +4482,7 @@
4309
  "type": "library",
4310
  "extra": {
4311
  "branch-alias": {
4312
- "dev-main": "1.22-dev"
4313
  },
4314
  "thanks": {
4315
  "name": "symfony/polyfill",
@@ -4352,7 +4525,7 @@
4352
  "shim"
4353
  ],
4354
  "support": {
4355
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
4356
  },
4357
  "funding": [
4358
  {
@@ -4368,20 +4541,20 @@
4368
  "type": "tidelift"
4369
  }
4370
  ],
4371
- "time": "2021-01-22T09:19:47+00:00"
4372
  },
4373
  {
4374
  "name": "symfony/polyfill-mbstring",
4375
- "version": "v1.22.1",
4376
  "source": {
4377
  "type": "git",
4378
  "url": "https://github.com/symfony/polyfill-mbstring.git",
4379
- "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
4380
  },
4381
  "dist": {
4382
  "type": "zip",
4383
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
4384
- "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
4385
  "shasum": ""
4386
  },
4387
  "require": {
@@ -4393,7 +4566,7 @@
4393
  "type": "library",
4394
  "extra": {
4395
  "branch-alias": {
4396
- "dev-main": "1.22-dev"
4397
  },
4398
  "thanks": {
4399
  "name": "symfony/polyfill",
@@ -4432,7 +4605,7 @@
4432
  "shim"
4433
  ],
4434
  "support": {
4435
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
4436
  },
4437
  "funding": [
4438
  {
@@ -4448,20 +4621,20 @@
4448
  "type": "tidelift"
4449
  }
4450
  ],
4451
- "time": "2021-01-22T09:19:47+00:00"
4452
  },
4453
  {
4454
  "name": "symfony/polyfill-php73",
4455
- "version": "v1.22.1",
4456
  "source": {
4457
  "type": "git",
4458
  "url": "https://github.com/symfony/polyfill-php73.git",
4459
- "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
4460
  },
4461
  "dist": {
4462
  "type": "zip",
4463
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
4464
- "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
4465
  "shasum": ""
4466
  },
4467
  "require": {
@@ -4470,7 +4643,7 @@
4470
  "type": "library",
4471
  "extra": {
4472
  "branch-alias": {
4473
- "dev-main": "1.22-dev"
4474
  },
4475
  "thanks": {
4476
  "name": "symfony/polyfill",
@@ -4511,7 +4684,7 @@
4511
  "shim"
4512
  ],
4513
  "support": {
4514
- "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
4515
  },
4516
  "funding": [
4517
  {
@@ -4527,20 +4700,20 @@
4527
  "type": "tidelift"
4528
  }
4529
  ],
4530
- "time": "2021-01-07T16:49:33+00:00"
4531
  },
4532
  {
4533
  "name": "symfony/polyfill-php80",
4534
- "version": "v1.22.1",
4535
  "source": {
4536
  "type": "git",
4537
  "url": "https://github.com/symfony/polyfill-php80.git",
4538
- "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
4539
  },
4540
  "dist": {
4541
  "type": "zip",
4542
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
4543
- "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
4544
  "shasum": ""
4545
  },
4546
  "require": {
@@ -4549,7 +4722,7 @@
4549
  "type": "library",
4550
  "extra": {
4551
  "branch-alias": {
4552
- "dev-main": "1.22-dev"
4553
  },
4554
  "thanks": {
4555
  "name": "symfony/polyfill",
@@ -4594,7 +4767,7 @@
4594
  "shim"
4595
  ],
4596
  "support": {
4597
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
4598
  },
4599
  "funding": [
4600
  {
@@ -4610,25 +4783,25 @@
4610
  "type": "tidelift"
4611
  }
4612
  ],
4613
- "time": "2021-01-07T16:49:33+00:00"
4614
  },
4615
  {
4616
  "name": "symfony/process",
4617
- "version": "v5.2.4",
4618
  "source": {
4619
  "type": "git",
4620
  "url": "https://github.com/symfony/process.git",
4621
- "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
4622
  },
4623
  "dist": {
4624
  "type": "zip",
4625
- "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
4626
- "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
4627
  "shasum": ""
4628
  },
4629
  "require": {
4630
  "php": ">=7.2.5",
4631
- "symfony/polyfill-php80": "^1.15"
4632
  },
4633
  "type": "library",
4634
  "autoload": {
@@ -4656,7 +4829,7 @@
4656
  "description": "Executes commands in sub-processes",
4657
  "homepage": "https://symfony.com",
4658
  "support": {
4659
- "source": "https://github.com/symfony/process/tree/v5.2.4"
4660
  },
4661
  "funding": [
4662
  {
@@ -4672,25 +4845,28 @@
4672
  "type": "tidelift"
4673
  }
4674
  ],
4675
- "time": "2021-01-27T10:15:41+00:00"
4676
  },
4677
  {
4678
  "name": "symfony/service-contracts",
4679
- "version": "v2.4.0",
4680
  "source": {
4681
  "type": "git",
4682
  "url": "https://github.com/symfony/service-contracts.git",
4683
- "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
4684
  },
4685
  "dist": {
4686
  "type": "zip",
4687
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
4688
- "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
4689
  "shasum": ""
4690
  },
4691
  "require": {
4692
- "php": ">=7.2.5",
4693
- "psr/container": "^1.1"
 
 
 
4694
  },
4695
  "suggest": {
4696
  "symfony/service-implementation": ""
@@ -4698,7 +4874,7 @@
4698
  "type": "library",
4699
  "extra": {
4700
  "branch-alias": {
4701
- "dev-main": "2.4-dev"
4702
  },
4703
  "thanks": {
4704
  "name": "symfony/contracts",
@@ -4735,7 +4911,7 @@
4735
  "standards"
4736
  ],
4737
  "support": {
4738
- "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
4739
  },
4740
  "funding": [
4741
  {
@@ -4751,35 +4927,37 @@
4751
  "type": "tidelift"
4752
  }
4753
  ],
4754
- "time": "2021-04-01T10:43:52+00:00"
4755
  },
4756
  {
4757
  "name": "symfony/string",
4758
- "version": "v5.2.6",
4759
  "source": {
4760
  "type": "git",
4761
  "url": "https://github.com/symfony/string.git",
4762
- "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
4763
  },
4764
  "dist": {
4765
  "type": "zip",
4766
- "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
4767
- "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
4768
  "shasum": ""
4769
  },
4770
  "require": {
4771
- "php": ">=7.2.5",
4772
  "symfony/polyfill-ctype": "~1.8",
4773
  "symfony/polyfill-intl-grapheme": "~1.0",
4774
  "symfony/polyfill-intl-normalizer": "~1.0",
4775
- "symfony/polyfill-mbstring": "~1.0",
4776
- "symfony/polyfill-php80": "~1.15"
 
 
4777
  },
4778
  "require-dev": {
4779
- "symfony/error-handler": "^4.4|^5.0",
4780
- "symfony/http-client": "^4.4|^5.0",
4781
- "symfony/translation-contracts": "^1.1|^2",
4782
- "symfony/var-exporter": "^4.4|^5.0"
4783
  },
4784
  "type": "library",
4785
  "autoload": {
@@ -4818,7 +4996,7 @@
4818
  "utf8"
4819
  ],
4820
  "support": {
4821
- "source": "https://github.com/symfony/string/tree/v5.2.6"
4822
  },
4823
  "funding": [
4824
  {
@@ -4834,20 +5012,20 @@
4834
  "type": "tidelift"
4835
  }
4836
  ],
4837
- "time": "2021-03-17T17:12:15+00:00"
4838
  },
4839
  {
4840
  "name": "theseer/tokenizer",
4841
- "version": "1.2.0",
4842
  "source": {
4843
  "type": "git",
4844
  "url": "https://github.com/theseer/tokenizer.git",
4845
- "reference": "75a63c33a8577608444246075ea0af0d052e452a"
4846
  },
4847
  "dist": {
4848
  "type": "zip",
4849
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
4850
- "reference": "75a63c33a8577608444246075ea0af0d052e452a",
4851
  "shasum": ""
4852
  },
4853
  "require": {
@@ -4876,7 +5054,7 @@
4876
  "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
4877
  "support": {
4878
  "issues": "https://github.com/theseer/tokenizer/issues",
4879
- "source": "https://github.com/theseer/tokenizer/tree/master"
4880
  },
4881
  "funding": [
4882
  {
@@ -4884,7 +5062,7 @@
4884
  "type": "github"
4885
  }
4886
  ],
4887
- "time": "2020-07-12T23:59:07+00:00"
4888
  },
4889
  {
4890
  "name": "webmozart/assert",
@@ -4954,5 +5132,5 @@
4954
  "php": "^5.6|^7.0|^8.0"
4955
  },
4956
  "platform-dev": [],
4957
- "plugin-api-version": "2.0.0"
4958
  }
8
  "packages": [
9
  {
10
  "name": "firebase/php-jwt",
11
+ "version": "v5.5.1",
12
  "source": {
13
  "type": "git",
14
  "url": "https://github.com/firebase/php-jwt.git",
15
+ "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
16
  },
17
  "dist": {
18
  "type": "zip",
19
+ "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
20
+ "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
21
  "shasum": ""
22
  },
23
  "require": {
26
  "require-dev": {
27
  "phpunit/phpunit": ">=4.8 <=9"
28
  },
29
+ "suggest": {
30
+ "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
31
+ },
32
  "type": "library",
33
  "autoload": {
34
  "psr-4": {
59
  ],
60
  "support": {
61
  "issues": "https://github.com/firebase/php-jwt/issues",
62
+ "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
63
  },
64
+ "time": "2021-11-08T20:18:51+00:00"
65
  },
66
  {
67
  "name": "google/apiclient-services",
68
+ "version": "v0.224.0",
69
  "source": {
70
  "type": "git",
71
  "url": "https://github.com/googleapis/google-api-php-client-services.git",
72
+ "reference": "2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1"
73
  },
74
  "dist": {
75
  "type": "zip",
76
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1",
77
+ "reference": "2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1",
78
  "shasum": ""
79
  },
80
  "require": {
81
+ "php": ">=5.6"
82
  },
83
  "require-dev": {
84
+ "phpunit/phpunit": "^5.7||^8.5.13"
85
  },
86
  "type": "library",
87
  "autoload": {
88
+ "psr-4": {
89
+ "WPMSGoogle\\Service\\": "src"
90
+ },
91
+ "files": [
92
+ "autoload.php"
93
+ ]
94
  },
95
  "notification-url": "https://packagist.org/downloads/",
96
  "license": [
103
  ],
104
  "support": {
105
  "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
106
+ "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.224.0"
107
  },
108
+ "time": "2021-11-24T12:26:12+00:00"
109
  },
110
  {
111
  "name": "google/auth",
112
+ "version": "v1.18.0",
113
  "source": {
114
  "type": "git",
115
  "url": "https://github.com/googleapis/google-auth-library-php.git",
116
+ "reference": "21dd478e77b0634ed9e3a68613f74ed250ca9347"
117
  },
118
  "dist": {
119
  "type": "zip",
120
+ "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/21dd478e77b0634ed9e3a68613f74ed250ca9347",
121
+ "reference": "21dd478e77b0634ed9e3a68613f74ed250ca9347",
122
  "shasum": ""
123
  },
124
  "require": {
125
  "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
126
  "guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
127
+ "guzzlehttp/psr7": "^1.7|^2.0",
128
  "php": ">=5.4",
129
+ "psr/cache": "^1.0|^2.0",
130
  "psr/http-message": "^1.0"
131
  },
132
  "require-dev": {
134
  "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
135
  "phpseclib/phpseclib": "^2.0.31",
136
  "phpunit/phpunit": "^4.8.36|^5.7",
137
+ "sebastian/comparator": ">=1.2.3"
 
138
  },
139
  "suggest": {
140
  "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
159
  "support": {
160
  "docs": "https://googleapis.github.io/google-auth-library-php/master/",
161
  "issues": "https://github.com/googleapis/google-auth-library-php/issues",
162
+ "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.18.0"
163
  },
164
+ "time": "2021-08-24T18:03:18+00:00"
165
  },
166
  {
167
  "name": "guzzlehttp/guzzle",
168
+ "version": "7.4.0",
169
  "source": {
170
  "type": "git",
171
  "url": "https://github.com/guzzle/guzzle.git",
172
+ "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94"
173
  },
174
  "dist": {
175
  "type": "zip",
176
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/868b3571a039f0ebc11ac8f344f4080babe2cb94",
177
+ "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94",
178
  "shasum": ""
179
  },
180
  "require": {
181
  "ext-json": "*",
182
+ "guzzlehttp/promises": "^1.5",
183
+ "guzzlehttp/psr7": "^1.8.3 || ^2.1",
184
  "php": "^7.2.5 || ^8.0",
185
+ "psr/http-client": "^1.0",
186
+ "symfony/deprecation-contracts": "^2.2"
187
  },
188
  "provide": {
189
  "psr/http-client-implementation": "1.0"
193
  "ext-curl": "*",
194
  "php-http/client-integration-tests": "^3.0",
195
  "phpunit/phpunit": "^8.5.5 || ^9.3.5",
196
+ "psr/log": "^1.1 || ^2.0 || ^3.0"
197
  },
198
  "suggest": {
199
  "ext-curl": "Required for CURL handler support",
203
  "type": "library",
204
  "extra": {
205
  "branch-alias": {
206
+ "dev-master": "7.4-dev"
207
  }
208
  },
209
  "autoload": {
219
  "MIT"
220
  ],
221
  "authors": [
222
+ {
223
+ "name": "Graham Campbell",
224
+ "email": "hello@gjcampbell.co.uk",
225
+ "homepage": "https://github.com/GrahamCampbell"
226
+ },
227
  {
228
  "name": "Michael Dowling",
229
  "email": "mtdowling@gmail.com",
230
  "homepage": "https://github.com/mtdowling"
231
  },
232
+ {
233
+ "name": "Jeremy Lindblom",
234
+ "email": "jeremeamia@gmail.com",
235
+ "homepage": "https://github.com/jeremeamia"
236
+ },
237
+ {
238
+ "name": "George Mponos",
239
+ "email": "gmponos@gmail.com",
240
+ "homepage": "https://github.com/gmponos"
241
+ },
242
+ {
243
+ "name": "Tobias Nyholm",
244
+ "email": "tobias.nyholm@gmail.com",
245
+ "homepage": "https://github.com/Nyholm"
246
+ },
247
  {
248
  "name": "Márk Sági-Kazár",
249
  "email": "mark.sagikazar@gmail.com",
250
+ "homepage": "https://github.com/sagikazarmark"
251
+ },
252
+ {
253
+ "name": "Tobias Schultze",
254
+ "email": "webmaster@tubo-world.de",
255
+ "homepage": "https://github.com/Tobion"
256
  }
257
  ],
258
  "description": "Guzzle is a PHP HTTP client library",
 
259
  "keywords": [
260
  "client",
261
  "curl",
269
  ],
270
  "support": {
271
  "issues": "https://github.com/guzzle/guzzle/issues",
272
+ "source": "https://github.com/guzzle/guzzle/tree/7.4.0"
273
  },
274
  "funding": [
275
  {
281
  "type": "github"
282
  },
283
  {
284
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
285
+ "type": "tidelift"
 
 
 
 
286
  }
287
  ],
288
+ "time": "2021-10-18T09:52:00+00:00"
289
  },
290
  {
291
  "name": "guzzlehttp/promises",
292
+ "version": "1.5.1",
293
  "source": {
294
  "type": "git",
295
  "url": "https://github.com/guzzle/promises.git",
296
+ "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
297
  },
298
  "dist": {
299
  "type": "zip",
300
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
301
+ "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
302
  "shasum": ""
303
  },
304
  "require": {
310
  "type": "library",
311
  "extra": {
312
  "branch-alias": {
313
+ "dev-master": "1.5-dev"
314
  }
315
  },
316
  "autoload": {
326
  "MIT"
327
  ],
328
  "authors": [
329
+ {
330
+ "name": "Graham Campbell",
331
+ "email": "hello@gjcampbell.co.uk",
332
+ "homepage": "https://github.com/GrahamCampbell"
333
+ },
334
  {
335
  "name": "Michael Dowling",
336
  "email": "mtdowling@gmail.com",
337
  "homepage": "https://github.com/mtdowling"
338
+ },
339
+ {
340
+ "name": "Tobias Nyholm",
341
+ "email": "tobias.nyholm@gmail.com",
342
+ "homepage": "https://github.com/Nyholm"
343
+ },
344
+ {
345
+ "name": "Tobias Schultze",
346
+ "email": "webmaster@tubo-world.de",
347
+ "homepage": "https://github.com/Tobion"
348
  }
349
  ],
350
  "description": "Guzzle promises library",
353
  ],
354
  "support": {
355
  "issues": "https://github.com/guzzle/promises/issues",
356
+ "source": "https://github.com/guzzle/promises/tree/1.5.1"
357
  },
358
+ "funding": [
359
+ {
360
+ "url": "https://github.com/GrahamCampbell",
361
+ "type": "github"
362
+ },
363
+ {
364
+ "url": "https://github.com/Nyholm",
365
+ "type": "github"
366
+ },
367
+ {
368
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
369
+ "type": "tidelift"
370
+ }
371
+ ],
372
+ "time": "2021-10-22T20:56:57+00:00"
373
  },
374
  {
375
  "name": "guzzlehttp/psr7",
376
+ "version": "1.8.3",
377
  "source": {
378
  "type": "git",
379
  "url": "https://github.com/guzzle/psr7.git",
380
+ "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
381
  },
382
  "dist": {
383
  "type": "zip",
384
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
385
+ "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
386
  "shasum": ""
387
  },
388
  "require": {
419
  "MIT"
420
  ],
421
  "authors": [
422
+ {
423
+ "name": "Graham Campbell",
424
+ "email": "hello@gjcampbell.co.uk",
425
+ "homepage": "https://github.com/GrahamCampbell"
426
+ },
427
  {
428
  "name": "Michael Dowling",
429
  "email": "mtdowling@gmail.com",
430
  "homepage": "https://github.com/mtdowling"
431
  },
432
+ {
433
+ "name": "George Mponos",
434
+ "email": "gmponos@gmail.com",
435
+ "homepage": "https://github.com/gmponos"
436
+ },
437
+ {
438
+ "name": "Tobias Nyholm",
439
+ "email": "tobias.nyholm@gmail.com",
440
+ "homepage": "https://github.com/Nyholm"
441
+ },
442
+ {
443
+ "name": "Márk Sági-Kazár",
444
+ "email": "mark.sagikazar@gmail.com",
445
+ "homepage": "https://github.com/sagikazarmark"
446
+ },
447
  {
448
  "name": "Tobias Schultze",
449
+ "email": "webmaster@tubo-world.de",
450
  "homepage": "https://github.com/Tobion"
451
  }
452
  ],
463
  ],
464
  "support": {
465
  "issues": "https://github.com/guzzle/psr7/issues",
466
+ "source": "https://github.com/guzzle/psr7/tree/1.8.3"
467
  },
468
+ "funding": [
469
+ {
470
+ "url": "https://github.com/GrahamCampbell",
471
+ "type": "github"
472
+ },
473
+ {
474
+ "url": "https://github.com/Nyholm",
475
+ "type": "github"
476
+ },
477
+ {
478
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
479
+ "type": "tidelift"
480
+ }
481
+ ],
482
+ "time": "2021-10-05T13:56:00+00:00"
483
  },
484
  {
485
  "name": "monolog/monolog",
486
+ "version": "2.3.5",
487
  "source": {
488
  "type": "git",
489
  "url": "https://github.com/Seldaek/monolog.git",
490
+ "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
491
  },
492
  "dist": {
493
  "type": "zip",
494
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
495
+ "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
496
  "shasum": ""
497
  },
498
  "require": {
499
  "php": ">=7.2",
500
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
501
  },
502
  "provide": {
503
+ "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
504
  },
505
  "require-dev": {
506
  "aws/aws-sdk-php": "^2.4.9 || ^3.0",
508
  "elasticsearch/elasticsearch": "^7",
509
  "graylog2/gelf-php": "^1.4.2",
510
  "mongodb/mongodb": "^1.8",
511
+ "php-amqplib/php-amqplib": "~2.4 || ^3",
512
  "php-console/php-console": "^3.1.3",
513
  "phpspec/prophecy": "^1.6.1",
514
+ "phpstan/phpstan": "^0.12.91",
515
  "phpunit/phpunit": "^8.5",
516
  "predis/predis": "^1.1",
517
  "rollbar/rollbar": "^1.3",
518
+ "ruflin/elastica": ">=0.90@dev",
519
  "swiftmailer/swiftmailer": "^5.3|^6.0"
520
  },
521
  "suggest": {
523
  "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
524
  "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
525
  "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
526
+ "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
527
  "ext-mbstring": "Allow to work properly with unicode symbols",
528
  "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
529
+ "ext-openssl": "Required to send log messages using SSL",
530
+ "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
531
  "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
532
  "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
533
  "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
566
  ],
567
  "support": {
568
  "issues": "https://github.com/Seldaek/monolog/issues",
569
+ "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
570
  },
571
  "funding": [
572
  {
578
  "type": "tidelift"
579
  }
580
  ],
581
+ "time": "2021-10-01T21:08:31+00:00"
582
  },
583
  {
584
  "name": "paragonie/constant_time_encoding",
699
  },
700
  {
701
  "name": "phpseclib/phpseclib",
702
+ "version": "3.0.12",
703
  "source": {
704
  "type": "git",
705
  "url": "https://github.com/phpseclib/phpseclib.git",
706
+ "reference": "89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb"
707
  },
708
  "dist": {
709
  "type": "zip",
710
+ "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb",
711
+ "reference": "89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb",
712
  "shasum": ""
713
  },
714
  "require": {
790
  ],
791
  "support": {
792
  "issues": "https://github.com/phpseclib/phpseclib/issues",
793
+ "source": "https://github.com/phpseclib/phpseclib/tree/3.0.12"
794
  },
795
  "funding": [
796
  {
806
  "type": "tidelift"
807
  }
808
  ],
809
+ "time": "2021-11-28T23:46:03+00:00"
810
  },
811
  {
812
  "name": "psr/cache",
964
  },
965
  {
966
  "name": "psr/log",
967
+ "version": "1.1.4",
968
  "source": {
969
  "type": "git",
970
  "url": "https://github.com/php-fig/log.git",
971
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
972
  },
973
  "dist": {
974
  "type": "zip",
975
+ "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
976
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
977
  "shasum": ""
978
  },
979
  "require": {
997
  "authors": [
998
  {
999
  "name": "PHP-FIG",
1000
+ "homepage": "https://www.php-fig.org/"
1001
  }
1002
  ],
1003
  "description": "Common interface for logging libraries",
1008
  "psr-3"
1009
  ],
1010
  "support": {
1011
+ "source": "https://github.com/php-fig/log/tree/1.1.4"
1012
  },
1013
+ "time": "2021-05-03T11:20:27+00:00"
1014
  },
1015
  {
1016
  "name": "ralouphie/getallheaders",
1055
  "source": "https://github.com/ralouphie/getallheaders/tree/develop"
1056
  },
1057
  "time": "2019-03-08T08:55:37+00:00"
1058
+ },
1059
+ {
1060
+ "name": "symfony/deprecation-contracts",
1061
+ "version": "v2.5.0",
1062
+ "source": {
1063
+ "type": "git",
1064
+ "url": "https://github.com/symfony/deprecation-contracts.git",
1065
+ "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
1066
+ },
1067
+ "dist": {
1068
+ "type": "zip",
1069
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
1070
+ "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
1071
+ "shasum": ""
1072
+ },
1073
+ "require": {
1074
+ "php": ">=7.1"
1075
+ },
1076
+ "type": "library",
1077
+ "extra": {
1078
+ "branch-alias": {
1079
+ "dev-main": "2.5-dev"
1080
+ },
1081
+ "thanks": {
1082
+ "name": "symfony/contracts",
1083
+ "url": "https://github.com/symfony/contracts"
1084
+ }
1085
+ },
1086
+ "autoload": {
1087
+ "files": [
1088
+ "function.php"
1089
+ ]
1090
+ },
1091
+ "notification-url": "https://packagist.org/downloads/",
1092
+ "license": [
1093
+ "MIT"
1094
+ ],
1095
+ "authors": [
1096
+ {
1097
+ "name": "Nicolas Grekas",
1098
+ "email": "p@tchwork.com"
1099
+ },
1100
+ {
1101
+ "name": "Symfony Community",
1102
+ "homepage": "https://symfony.com/contributors"
1103
+ }
1104
+ ],
1105
+ "description": "A generic function and convention to trigger deprecation notices",
1106
+ "homepage": "https://symfony.com",
1107
+ "support": {
1108
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
1109
+ },
1110
+ "funding": [
1111
+ {
1112
+ "url": "https://symfony.com/sponsor",
1113
+ "type": "custom"
1114
+ },
1115
+ {
1116
+ "url": "https://github.com/fabpot",
1117
+ "type": "github"
1118
+ },
1119
+ {
1120
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1121
+ "type": "tidelift"
1122
+ }
1123
+ ],
1124
+ "time": "2021-07-12T14:48:14+00:00"
1125
  }
1126
  ],
1127
  "packages-dev": [
1322
  },
1323
  {
1324
  "name": "composer/ca-bundle",
1325
+ "version": "1.3.1",
1326
  "source": {
1327
  "type": "git",
1328
  "url": "https://github.com/composer/ca-bundle.git",
1329
+ "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b"
1330
  },
1331
  "dist": {
1332
  "type": "zip",
1333
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b",
1334
+ "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b",
1335
  "shasum": ""
1336
  },
1337
  "require": {
1343
  "phpstan/phpstan": "^0.12.55",
1344
  "psr/log": "^1.0",
1345
  "symfony/phpunit-bridge": "^4.2 || ^5",
1346
+ "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
1347
  },
1348
  "type": "library",
1349
  "extra": {
1378
  "support": {
1379
  "irc": "irc://irc.freenode.org/composer",
1380
  "issues": "https://github.com/composer/ca-bundle/issues",
1381
+ "source": "https://github.com/composer/ca-bundle/tree/1.3.1"
1382
  },
1383
  "funding": [
1384
  {
1394
  "type": "tidelift"
1395
  }
1396
  ],
1397
+ "time": "2021-10-28T20:44:15+00:00"
1398
  },
1399
  {
1400
  "name": "composer/composer",
1401
+ "version": "1.10.23",
1402
  "source": {
1403
  "type": "git",
1404
  "url": "https://github.com/composer/composer.git",
1405
+ "reference": "eb3bae3d3de2e4abd94fa56fbe18355aba0b47ae"
1406
  },
1407
  "dist": {
1408
  "type": "zip",
1409
+ "url": "https://api.github.com/repos/composer/composer/zipball/eb3bae3d3de2e4abd94fa56fbe18355aba0b47ae",
1410
+ "reference": "eb3bae3d3de2e4abd94fa56fbe18355aba0b47ae",
1411
  "shasum": ""
1412
  },
1413
  "require": {
1477
  "support": {
1478
  "irc": "irc://irc.freenode.org/composer",
1479
  "issues": "https://github.com/composer/composer/issues",
1480
+ "source": "https://github.com/composer/composer/tree/1.10.23"
1481
  },
1482
  "funding": [
1483
  {
1493
  "type": "tidelift"
1494
  }
1495
  ],
1496
+ "time": "2021-10-05T07:44:27+00:00"
1497
  },
1498
  {
1499
  "name": "composer/semver",
1577
  },
1578
  {
1579
  "name": "composer/spdx-licenses",
1580
+ "version": "1.5.6",
1581
  "source": {
1582
  "type": "git",
1583
  "url": "https://github.com/composer/spdx-licenses.git",
1584
+ "reference": "a30d487169d799745ca7280bc90fdfa693536901"
1585
  },
1586
  "dist": {
1587
  "type": "zip",
1588
+ "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a30d487169d799745ca7280bc90fdfa693536901",
1589
+ "reference": "a30d487169d799745ca7280bc90fdfa693536901",
1590
  "shasum": ""
1591
  },
1592
  "require": {
1593
  "php": "^5.3.2 || ^7.0 || ^8.0"
1594
  },
1595
  "require-dev": {
1596
+ "phpstan/phpstan": "^0.12.55",
1597
+ "symfony/phpunit-bridge": "^4.2 || ^5"
1598
  },
1599
  "type": "library",
1600
  "extra": {
1637
  "support": {
1638
  "irc": "irc://irc.freenode.org/composer",
1639
  "issues": "https://github.com/composer/spdx-licenses/issues",
1640
+ "source": "https://github.com/composer/spdx-licenses/tree/1.5.6"
1641
  },
1642
  "funding": [
1643
  {
1653
  "type": "tidelift"
1654
  }
1655
  ],
1656
+ "time": "2021-11-18T10:14:14+00:00"
1657
  },
1658
  {
1659
  "name": "composer/xdebug-handler",
1860
  },
1861
  {
1862
  "name": "justinrainbow/json-schema",
1863
+ "version": "5.2.11",
1864
  "source": {
1865
  "type": "git",
1866
  "url": "https://github.com/justinrainbow/json-schema.git",
1867
+ "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa"
1868
  },
1869
  "dist": {
1870
  "type": "zip",
1871
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa",
1872
+ "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa",
1873
  "shasum": ""
1874
  },
1875
  "require": {
1924
  ],
1925
  "support": {
1926
  "issues": "https://github.com/justinrainbow/json-schema/issues",
1927
+ "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11"
1928
  },
1929
+ "time": "2021-07-22T09:24:00+00:00"
1930
  },
1931
  {
1932
  "name": "league/flysystem",
1933
+ "version": "1.1.8",
1934
  "source": {
1935
  "type": "git",
1936
  "url": "https://github.com/thephpleague/flysystem.git",
1937
+ "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e"
1938
  },
1939
  "dist": {
1940
  "type": "zip",
1941
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c995bb0c23c58c9813d081f9523c9b7bb496698e",
1942
+ "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e",
1943
  "shasum": ""
1944
  },
1945
  "require": {
1955
  "phpunit/phpunit": "^8.5.8"
1956
  },
1957
  "suggest": {
 
1958
  "ext-ftp": "Allows you to use FTP server storage",
1959
  "ext-openssl": "Allows you to use FTPS server storage",
1960
  "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
2012
  ],
2013
  "support": {
2014
  "issues": "https://github.com/thephpleague/flysystem/issues",
2015
+ "source": "https://github.com/thephpleague/flysystem/tree/1.1.8"
2016
  },
2017
  "funding": [
2018
  {
2020
  "type": "other"
2021
  }
2022
  ],
2023
+ "time": "2021-11-28T21:50:23+00:00"
2024
  },
2025
  {
2026
  "name": "league/mime-type-detection",
2027
+ "version": "1.9.0",
2028
  "source": {
2029
  "type": "git",
2030
  "url": "https://github.com/thephpleague/mime-type-detection.git",
2031
+ "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69"
2032
  },
2033
  "dist": {
2034
  "type": "zip",
2035
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69",
2036
+ "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69",
2037
  "shasum": ""
2038
  },
2039
  "require": {
2041
  "php": "^7.2 || ^8.0"
2042
  },
2043
  "require-dev": {
2044
+ "friendsofphp/php-cs-fixer": "^3.2",
2045
  "phpstan/phpstan": "^0.12.68",
2046
  "phpunit/phpunit": "^8.5.8 || ^9.3"
2047
  },
2064
  "description": "Mime-type detection for Flysystem",
2065
  "support": {
2066
  "issues": "https://github.com/thephpleague/mime-type-detection/issues",
2067
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0"
2068
  },
2069
  "funding": [
2070
  {
2076
  "type": "tidelift"
2077
  }
2078
  ],
2079
+ "time": "2021-11-21T11:48:40+00:00"
2080
  },
2081
  {
2082
  "name": "myclabs/deep-copy",
2138
  },
2139
  {
2140
  "name": "phar-io/manifest",
2141
+ "version": "2.0.3",
2142
  "source": {
2143
  "type": "git",
2144
  "url": "https://github.com/phar-io/manifest.git",
2145
+ "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
2146
  },
2147
  "dist": {
2148
  "type": "zip",
2149
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
2150
+ "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
2151
  "shasum": ""
2152
  },
2153
  "require": {
2192
  "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
2193
  "support": {
2194
  "issues": "https://github.com/phar-io/manifest/issues",
2195
+ "source": "https://github.com/phar-io/manifest/tree/2.0.3"
2196
  },
2197
+ "time": "2021-07-20T11:28:43+00:00"
2198
  },
2199
  {
2200
  "name": "phar-io/version",
2364
  },
2365
  {
2366
  "name": "phpdocumentor/reflection-docblock",
2367
+ "version": "5.3.0",
2368
  "source": {
2369
  "type": "git",
2370
  "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
2371
+ "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
2372
  },
2373
  "dist": {
2374
  "type": "zip",
2375
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
2376
+ "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
2377
  "shasum": ""
2378
  },
2379
  "require": {
2384
  "webmozart/assert": "^1.9.1"
2385
  },
2386
  "require-dev": {
2387
+ "mockery/mockery": "~1.3.2",
2388
+ "psalm/phar": "^4.8"
2389
  },
2390
  "type": "library",
2391
  "extra": {
2415
  "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
2416
  "support": {
2417
  "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
2418
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
2419
  },
2420
+ "time": "2021-10-19T17:43:47+00:00"
2421
  },
2422
  {
2423
  "name": "phpdocumentor/type-resolver",
2424
+ "version": "1.5.1",
2425
  "source": {
2426
  "type": "git",
2427
  "url": "https://github.com/phpDocumentor/TypeResolver.git",
2428
+ "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
2429
  },
2430
  "dist": {
2431
  "type": "zip",
2432
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
2433
+ "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
2434
  "shasum": ""
2435
  },
2436
  "require": {
2438
  "phpdocumentor/reflection-common": "^2.0"
2439
  },
2440
  "require-dev": {
2441
+ "ext-tokenizer": "*",
2442
+ "psalm/phar": "^4.8"
2443
  },
2444
  "type": "library",
2445
  "extra": {
2465
  "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
2466
  "support": {
2467
  "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
2468
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
2469
  },
2470
+ "time": "2021-10-02T14:08:47+00:00"
2471
  },
2472
  {
2473
  "name": "phpspec/prophecy",
2474
+ "version": "1.14.0",
2475
  "source": {
2476
  "type": "git",
2477
  "url": "https://github.com/phpspec/prophecy.git",
2478
+ "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
2479
  },
2480
  "dist": {
2481
  "type": "zip",
2482
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
2483
+ "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
2484
  "shasum": ""
2485
  },
2486
  "require": {
2487
  "doctrine/instantiator": "^1.2",
2488
+ "php": "^7.2 || ~8.0, <8.2",
2489
  "phpdocumentor/reflection-docblock": "^5.2",
2490
  "sebastian/comparator": "^3.0 || ^4.0",
2491
  "sebastian/recursion-context": "^3.0 || ^4.0"
2492
  },
2493
  "require-dev": {
2494
+ "phpspec/phpspec": "^6.0 || ^7.0",
2495
  "phpunit/phpunit": "^8.0 || ^9.0"
2496
  },
2497
  "type": "library",
2498
  "extra": {
2499
  "branch-alias": {
2500
+ "dev-master": "1.x-dev"
2501
  }
2502
  },
2503
  "autoload": {
2532
  ],
2533
  "support": {
2534
  "issues": "https://github.com/phpspec/prophecy/issues",
2535
+ "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
2536
  },
2537
+ "time": "2021-09-10T09:02:12+00:00"
2538
  },
2539
  {
2540
  "name": "phpunit/php-code-coverage",
2541
+ "version": "7.0.15",
2542
  "source": {
2543
  "type": "git",
2544
  "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
2545
+ "reference": "819f92bba8b001d4363065928088de22f25a3a48"
2546
  },
2547
  "dist": {
2548
  "type": "zip",
2549
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
2550
+ "reference": "819f92bba8b001d4363065928088de22f25a3a48",
2551
  "shasum": ""
2552
  },
2553
  "require": {
2556
  "php": ">=7.2",
2557
  "phpunit/php-file-iterator": "^2.0.2",
2558
  "phpunit/php-text-template": "^1.2.1",
2559
+ "phpunit/php-token-stream": "^3.1.3 || ^4.0",
2560
  "sebastian/code-unit-reverse-lookup": "^1.0.1",
2561
  "sebastian/environment": "^4.2.2",
2562
  "sebastian/version": "^2.0.1",
2599
  ],
2600
  "support": {
2601
  "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
2602
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
2603
  },
2604
  "funding": [
2605
  {
2607
  "type": "github"
2608
  }
2609
  ],
2610
+ "time": "2021-07-26T12:20:09+00:00"
2611
  },
2612
  {
2613
  "name": "phpunit/php-file-iterator",
2614
+ "version": "2.0.4",
2615
  "source": {
2616
  "type": "git",
2617
  "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
2618
+ "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
2619
  },
2620
  "dist": {
2621
  "type": "zip",
2622
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
2623
+ "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
2624
  "shasum": ""
2625
  },
2626
  "require": {
2659
  ],
2660
  "support": {
2661
  "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
2662
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
2663
  },
2664
  "funding": [
2665
  {
2667
  "type": "github"
2668
  }
2669
  ],
2670
+ "time": "2021-07-19T06:46:01+00:00"
2671
  },
2672
  {
2673
  "name": "phpunit/php-text-template",
2835
  },
2836
  {
2837
  "name": "phpunit/phpunit",
2838
+ "version": "8.5.21",
2839
  "source": {
2840
  "type": "git",
2841
  "url": "https://github.com/sebastianbergmann/phpunit.git",
2842
+ "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984"
2843
  },
2844
  "dist": {
2845
  "type": "zip",
2846
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
2847
+ "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
2848
  "shasum": ""
2849
  },
2850
  "require": {
2856
  "ext-xml": "*",
2857
  "ext-xmlwriter": "*",
2858
  "myclabs/deep-copy": "^1.10.0",
2859
+ "phar-io/manifest": "^2.0.3",
2860
  "phar-io/version": "^3.0.2",
2861
  "php": ">=7.2",
2862
  "phpspec/prophecy": "^1.10.3",
2863
  "phpunit/php-code-coverage": "^7.0.12",
2864
+ "phpunit/php-file-iterator": "^2.0.4",
2865
  "phpunit/php-text-template": "^1.2.1",
2866
  "phpunit/php-timer": "^2.1.2",
2867
  "sebastian/comparator": "^3.0.2",
2916
  ],
2917
  "support": {
2918
  "issues": "https://github.com/sebastianbergmann/phpunit/issues",
2919
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.21"
2920
  },
2921
  "funding": [
2922
  {
2928
  "type": "github"
2929
  }
2930
  ],
2931
+ "time": "2021-09-25T07:37:20+00:00"
2932
  },
2933
  {
2934
  "name": "psr/container",
2935
+ "version": "2.0.2",
2936
  "source": {
2937
  "type": "git",
2938
  "url": "https://github.com/php-fig/container.git",
2939
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
2940
  },
2941
  "dist": {
2942
  "type": "zip",
2943
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
2944
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
2945
  "shasum": ""
2946
  },
2947
  "require": {
2948
+ "php": ">=7.4.0"
2949
  },
2950
  "type": "library",
2951
+ "extra": {
2952
+ "branch-alias": {
2953
+ "dev-master": "2.0.x-dev"
2954
+ }
2955
+ },
2956
  "autoload": {
2957
  "psr-4": {
2958
  "Psr\\Container\\": "src/"
2979
  ],
2980
  "support": {
2981
  "issues": "https://github.com/php-fig/container/issues",
2982
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
2983
  },
2984
+ "time": "2021-11-05T16:47:00+00:00"
2985
  },
2986
  {
2987
  "name": "psr/simple-cache",
3294
  },
3295
  {
3296
  "name": "sebastian/exporter",
3297
+ "version": "3.1.4",
3298
  "source": {
3299
  "type": "git",
3300
  "url": "https://github.com/sebastianbergmann/exporter.git",
3301
+ "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
3302
  },
3303
  "dist": {
3304
  "type": "zip",
3305
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
3306
+ "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
3307
  "shasum": ""
3308
  },
3309
  "require": {
3312
  },
3313
  "require-dev": {
3314
  "ext-mbstring": "*",
3315
+ "phpunit/phpunit": "^8.5"
3316
  },
3317
  "type": "library",
3318
  "extra": {
3359
  ],
3360
  "support": {
3361
  "issues": "https://github.com/sebastianbergmann/exporter/issues",
3362
+ "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
3363
  },
3364
  "funding": [
3365
  {
3367
  "type": "github"
3368
  }
3369
  ],
3370
+ "time": "2021-11-11T13:51:24+00:00"
3371
  },
3372
  {
3373
  "name": "sebastian/global-state",
3828
  },
3829
  {
3830
  "name": "seld/phar-utils",
3831
+ "version": "1.1.2",
3832
  "source": {
3833
  "type": "git",
3834
  "url": "https://github.com/Seldaek/phar-utils.git",
3835
+ "reference": "749042a2315705d2dfbbc59234dd9ceb22bf3ff0"
3836
  },
3837
  "dist": {
3838
  "type": "zip",
3839
+ "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/749042a2315705d2dfbbc59234dd9ceb22bf3ff0",
3840
+ "reference": "749042a2315705d2dfbbc59234dd9ceb22bf3ff0",
3841
  "shasum": ""
3842
  },
3843
  "require": {
3870
  ],
3871
  "support": {
3872
  "issues": "https://github.com/Seldaek/phar-utils/issues",
3873
+ "source": "https://github.com/Seldaek/phar-utils/tree/1.1.2"
3874
  },
3875
+ "time": "2021-08-19T21:01:38+00:00"
3876
  },
3877
  {
3878
  "name": "squizlabs/php_codesniffer",
3959
  },
3960
  {
3961
  "name": "symfony/console",
3962
+ "version": "v5.4.0",
3963
  "source": {
3964
  "type": "git",
3965
  "url": "https://github.com/symfony/console.git",
3966
+ "reference": "ec3661faca1d110d6c307e124b44f99ac54179e3"
3967
  },
3968
  "dist": {
3969
  "type": "zip",
3970
+ "url": "https://api.github.com/repos/symfony/console/zipball/ec3661faca1d110d6c307e124b44f99ac54179e3",
3971
+ "reference": "ec3661faca1d110d6c307e124b44f99ac54179e3",
3972
  "shasum": ""
3973
  },
3974
  "require": {
3975
  "php": ">=7.2.5",
3976
+ "symfony/deprecation-contracts": "^2.1|^3",
3977
  "symfony/polyfill-mbstring": "~1.0",
3978
  "symfony/polyfill-php73": "^1.8",
3979
+ "symfony/polyfill-php80": "^1.16",
3980
+ "symfony/service-contracts": "^1.1|^2|^3",
3981
+ "symfony/string": "^5.1|^6.0"
3982
  },
3983
  "conflict": {
3984
+ "psr/log": ">=3",
3985
  "symfony/dependency-injection": "<4.4",
3986
  "symfony/dotenv": "<5.1",
3987
  "symfony/event-dispatcher": "<4.4",
3989
  "symfony/process": "<4.4"
3990
  },
3991
  "provide": {
3992
+ "psr/log-implementation": "1.0|2.0"
3993
  },
3994
  "require-dev": {
3995
+ "psr/log": "^1|^2",
3996
+ "symfony/config": "^4.4|^5.0|^6.0",
3997
+ "symfony/dependency-injection": "^4.4|^5.0|^6.0",
3998
+ "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
3999
+ "symfony/lock": "^4.4|^5.0|^6.0",
4000
+ "symfony/process": "^4.4|^5.0|^6.0",
4001
+ "symfony/var-dumper": "^4.4|^5.0|^6.0"
4002
  },
4003
  "suggest": {
4004
  "psr/log": "For using the console logger",
4038
  "terminal"
4039
  ],
4040
  "support": {
4041
+ "source": "https://github.com/symfony/console/tree/v5.4.0"
4042
  },
4043
  "funding": [
4044
  {
4054
  "type": "tidelift"
4055
  }
4056
  ],
4057
+ "time": "2021-11-29T15:30:56+00:00"
4058
  },
4059
  {
4060
  "name": "symfony/css-selector",
4174
  },
4175
  {
4176
  "name": "symfony/filesystem",
4177
+ "version": "v5.4.0",
4178
  "source": {
4179
  "type": "git",
4180
  "url": "https://github.com/symfony/filesystem.git",
4181
+ "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
4182
  },
4183
  "dist": {
4184
  "type": "zip",
4185
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
4186
+ "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
4187
  "shasum": ""
4188
  },
4189
  "require": {
4190
  "php": ">=7.2.5",
4191
+ "symfony/polyfill-ctype": "~1.8",
4192
+ "symfony/polyfill-mbstring": "~1.8",
4193
+ "symfony/polyfill-php80": "^1.16"
4194
  },
4195
  "type": "library",
4196
  "autoload": {
4218
  "description": "Provides basic utilities for the filesystem",
4219
  "homepage": "https://symfony.com",
4220
  "support": {
4221
+ "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
4222
  },
4223
  "funding": [
4224
  {
4234
  "type": "tidelift"
4235
  }
4236
  ],
4237
+ "time": "2021-10-28T13:39:27+00:00"
4238
  },
4239
  {
4240
  "name": "symfony/finder",
4241
+ "version": "v5.4.0",
4242
  "source": {
4243
  "type": "git",
4244
  "url": "https://github.com/symfony/finder.git",
4245
+ "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590"
4246
  },
4247
  "dist": {
4248
  "type": "zip",
4249
+ "url": "https://api.github.com/repos/symfony/finder/zipball/d2f29dac98e96a98be467627bd49c2efb1bc2590",
4250
+ "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590",
4251
  "shasum": ""
4252
  },
4253
  "require": {
4254
+ "php": ">=7.2.5",
4255
+ "symfony/deprecation-contracts": "^2.1|^3",
4256
+ "symfony/polyfill-php80": "^1.16"
4257
  },
4258
  "type": "library",
4259
  "autoload": {
4281
  "description": "Finds files and directories via an intuitive fluent interface",
4282
  "homepage": "https://symfony.com",
4283
  "support": {
4284
+ "source": "https://github.com/symfony/finder/tree/v5.4.0"
4285
  },
4286
  "funding": [
4287
  {
4297
  "type": "tidelift"
4298
  }
4299
  ],
4300
+ "time": "2021-11-28T15:25:38+00:00"
4301
  },
4302
  {
4303
  "name": "symfony/polyfill-ctype",
4304
+ "version": "v1.23.0",
4305
  "source": {
4306
  "type": "git",
4307
  "url": "https://github.com/symfony/polyfill-ctype.git",
4308
+ "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
4309
  },
4310
  "dist": {
4311
  "type": "zip",
4312
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
4313
+ "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
4314
  "shasum": ""
4315
  },
4316
  "require": {
4322
  "type": "library",
4323
  "extra": {
4324
  "branch-alias": {
4325
+ "dev-main": "1.23-dev"
4326
  },
4327
  "thanks": {
4328
  "name": "symfony/polyfill",
4360
  "portable"
4361
  ],
4362
  "support": {
4363
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
4364
  },
4365
  "funding": [
4366
  {
4376
  "type": "tidelift"
4377
  }
4378
  ],
4379
+ "time": "2021-02-19T12:13:01+00:00"
4380
  },
4381
  {
4382
  "name": "symfony/polyfill-intl-grapheme",
4383
+ "version": "v1.23.1",
4384
  "source": {
4385
  "type": "git",
4386
  "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
4387
+ "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
4388
  },
4389
  "dist": {
4390
  "type": "zip",
4391
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
4392
+ "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
4393
  "shasum": ""
4394
  },
4395
  "require": {
4401
  "type": "library",
4402
  "extra": {
4403
  "branch-alias": {
4404
+ "dev-main": "1.23-dev"
4405
  },
4406
  "thanks": {
4407
  "name": "symfony/polyfill",
4441
  "shim"
4442
  ],
4443
  "support": {
4444
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
4445
  },
4446
  "funding": [
4447
  {
4457
  "type": "tidelift"
4458
  }
4459
  ],
4460
+ "time": "2021-05-27T12:26:48+00:00"
4461
  },
4462
  {
4463
  "name": "symfony/polyfill-intl-normalizer",
4464
+ "version": "v1.23.0",
4465
  "source": {
4466
  "type": "git",
4467
  "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
4468
+ "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
4469
  },
4470
  "dist": {
4471
  "type": "zip",
4472
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
4473
+ "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
4474
  "shasum": ""
4475
  },
4476
  "require": {
4482
  "type": "library",
4483
  "extra": {
4484
  "branch-alias": {
4485
+ "dev-main": "1.23-dev"
4486
  },
4487
  "thanks": {
4488
  "name": "symfony/polyfill",
4525
  "shim"
4526
  ],
4527
  "support": {
4528
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
4529
  },
4530
  "funding": [
4531
  {
4541
  "type": "tidelift"
4542
  }
4543
  ],
4544
+ "time": "2021-02-19T12:13:01+00:00"
4545
  },
4546
  {
4547
  "name": "symfony/polyfill-mbstring",
4548
+ "version": "v1.23.1",
4549
  "source": {
4550
  "type": "git",
4551
  "url": "https://github.com/symfony/polyfill-mbstring.git",
4552
+ "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
4553
  },
4554
  "dist": {
4555
  "type": "zip",
4556
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
4557
+ "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
4558
  "shasum": ""
4559
  },
4560
  "require": {
4566
  "type": "library",
4567
  "extra": {
4568
  "branch-alias": {
4569
+ "dev-main": "1.23-dev"
4570
  },
4571
  "thanks": {
4572
  "name": "symfony/polyfill",
4605
  "shim"
4606
  ],
4607
  "support": {
4608
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
4609
  },
4610
  "funding": [
4611
  {
4621
  "type": "tidelift"
4622
  }
4623
  ],
4624
+ "time": "2021-05-27T12:26:48+00:00"
4625
  },
4626
  {
4627
  "name": "symfony/polyfill-php73",
4628
+ "version": "v1.23.0",
4629
  "source": {
4630
  "type": "git",
4631
  "url": "https://github.com/symfony/polyfill-php73.git",
4632
+ "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
4633
  },
4634
  "dist": {
4635
  "type": "zip",
4636
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
4637
+ "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
4638
  "shasum": ""
4639
  },
4640
  "require": {
4643
  "type": "library",
4644
  "extra": {
4645
  "branch-alias": {
4646
+ "dev-main": "1.23-dev"
4647
  },
4648
  "thanks": {
4649
  "name": "symfony/polyfill",
4684
  "shim"
4685
  ],
4686
  "support": {
4687
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
4688
  },
4689
  "funding": [
4690
  {
4700
  "type": "tidelift"
4701
  }
4702
  ],
4703
+ "time": "2021-02-19T12:13:01+00:00"
4704
  },
4705
  {
4706
  "name": "symfony/polyfill-php80",
4707
+ "version": "v1.23.1",
4708
  "source": {
4709
  "type": "git",
4710
  "url": "https://github.com/symfony/polyfill-php80.git",
4711
+ "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
4712
  },
4713
  "dist": {
4714
  "type": "zip",
4715
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
4716
+ "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
4717
  "shasum": ""
4718
  },
4719
  "require": {
4722
  "type": "library",
4723
  "extra": {
4724
  "branch-alias": {
4725
+ "dev-main": "1.23-dev"
4726
  },
4727
  "thanks": {
4728
  "name": "symfony/polyfill",
4767
  "shim"
4768
  ],
4769
  "support": {
4770
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
4771
  },
4772
  "funding": [
4773
  {
4783
  "type": "tidelift"
4784
  }
4785
  ],
4786
+ "time": "2021-07-28T13:41:28+00:00"
4787
  },
4788
  {
4789
  "name": "symfony/process",
4790
+ "version": "v5.4.0",
4791
  "source": {
4792
  "type": "git",
4793
  "url": "https://github.com/symfony/process.git",
4794
+ "reference": "5be20b3830f726e019162b26223110c8f47cf274"
4795
  },
4796
  "dist": {
4797
  "type": "zip",
4798
+ "url": "https://api.github.com/repos/symfony/process/zipball/5be20b3830f726e019162b26223110c8f47cf274",
4799
+ "reference": "5be20b3830f726e019162b26223110c8f47cf274",
4800
  "shasum": ""
4801
  },
4802
  "require": {
4803
  "php": ">=7.2.5",
4804
+ "symfony/polyfill-php80": "^1.16"
4805
  },
4806
  "type": "library",
4807
  "autoload": {
4829
  "description": "Executes commands in sub-processes",
4830
  "homepage": "https://symfony.com",
4831
  "support": {
4832
+ "source": "https://github.com/symfony/process/tree/v5.4.0"
4833
  },
4834
  "funding": [
4835
  {
4845
  "type": "tidelift"
4846
  }
4847
  ],
4848
+ "time": "2021-11-28T15:25:38+00:00"
4849
  },
4850
  {
4851
  "name": "symfony/service-contracts",
4852
+ "version": "v3.0.0",
4853
  "source": {
4854
  "type": "git",
4855
  "url": "https://github.com/symfony/service-contracts.git",
4856
+ "reference": "36715ebf9fb9db73db0cb24263c79077c6fe8603"
4857
  },
4858
  "dist": {
4859
  "type": "zip",
4860
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/36715ebf9fb9db73db0cb24263c79077c6fe8603",
4861
+ "reference": "36715ebf9fb9db73db0cb24263c79077c6fe8603",
4862
  "shasum": ""
4863
  },
4864
  "require": {
4865
+ "php": ">=8.0.2",
4866
+ "psr/container": "^2.0"
4867
+ },
4868
+ "conflict": {
4869
+ "ext-psr": "<1.1|>=2"
4870
  },
4871
  "suggest": {
4872
  "symfony/service-implementation": ""
4874
  "type": "library",
4875
  "extra": {
4876
  "branch-alias": {
4877
+ "dev-main": "3.0-dev"
4878
  },
4879
  "thanks": {
4880
  "name": "symfony/contracts",
4911
  "standards"
4912
  ],
4913
  "support": {
4914
+ "source": "https://github.com/symfony/service-contracts/tree/v3.0.0"
4915
  },
4916
  "funding": [
4917
  {
4927
  "type": "tidelift"
4928
  }
4929
  ],
4930
+ "time": "2021-11-04T17:53:12+00:00"
4931
  },
4932
  {
4933
  "name": "symfony/string",
4934
+ "version": "v6.0.0",
4935
  "source": {
4936
  "type": "git",
4937
  "url": "https://github.com/symfony/string.git",
4938
+ "reference": "ba727797426af0f587f4800566300bdc0cda0777"
4939
  },
4940
  "dist": {
4941
  "type": "zip",
4942
+ "url": "https://api.github.com/repos/symfony/string/zipball/ba727797426af0f587f4800566300bdc0cda0777",
4943
+ "reference": "ba727797426af0f587f4800566300bdc0cda0777",
4944
  "shasum": ""
4945
  },
4946
  "require": {
4947
+ "php": ">=8.0.2",
4948
  "symfony/polyfill-ctype": "~1.8",
4949
  "symfony/polyfill-intl-grapheme": "~1.0",
4950
  "symfony/polyfill-intl-normalizer": "~1.0",
4951
+ "symfony/polyfill-mbstring": "~1.0"
4952
+ },
4953
+ "conflict": {
4954
+ "symfony/translation-contracts": "<2.0"
4955
  },
4956
  "require-dev": {
4957
+ "symfony/error-handler": "^5.4|^6.0",
4958
+ "symfony/http-client": "^5.4|^6.0",
4959
+ "symfony/translation-contracts": "^2.0|^3.0",
4960
+ "symfony/var-exporter": "^5.4|^6.0"
4961
  },
4962
  "type": "library",
4963
  "autoload": {
4996
  "utf8"
4997
  ],
4998
  "support": {
4999
+ "source": "https://github.com/symfony/string/tree/v6.0.0"
5000
  },
5001
  "funding": [
5002
  {
5012
  "type": "tidelift"
5013
  }
5014
  ],
5015
+ "time": "2021-10-29T07:35:21+00:00"
5016
  },
5017
  {
5018
  "name": "theseer/tokenizer",
5019
+ "version": "1.2.1",
5020
  "source": {
5021
  "type": "git",
5022
  "url": "https://github.com/theseer/tokenizer.git",
5023
+ "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
5024
  },
5025
  "dist": {
5026
  "type": "zip",
5027
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
5028
+ "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
5029
  "shasum": ""
5030
  },
5031
  "require": {
5054
  "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
5055
  "support": {
5056
  "issues": "https://github.com/theseer/tokenizer/issues",
5057
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
5058
  },
5059
  "funding": [
5060
  {
5062
  "type": "github"
5063
  }
5064
  ],
5065
+ "time": "2021-07-28T10:34:58+00:00"
5066
  },
5067
  {
5068
  "name": "webmozart/assert",
5132
  "php": "^5.6|^7.0|^8.0"
5133
  },
5134
  "platform-dev": [],
5135
+ "plugin-api-version": "2.1.0"
5136
  }
inc/lib/google-api/src/Client.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- * Copyright 2010 Google Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
@@ -539,7 +539,7 @@ class Client
539
  // check the ID token for "iat"
540
  // signature verification is not required here, as we are just
541
  // using this for convenience to save a round trip request
542
- // to the Google API server
543
  $idToken = $this->token['id_token'];
544
  if (substr_count($idToken, '.') == 2) {
545
  $parts = explode('.', $idToken);
1
  <?php
2
  /*
3
+ * Copyright 2010 WPMSGoogle Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
539
  // check the ID token for "iat"
540
  // signature verification is not required here, as we are just
541
  // using this for convenience to save a round trip request
542
+ // to the WPMSGoogle API server
543
  $idToken = $this->token['id_token'];
544
  if (substr_count($idToken, '.') == 2) {
545
  $parts = explode('.', $idToken);
inc/lib/google-api/src/Task/Composer.php CHANGED
@@ -38,7 +38,7 @@ class Composer
38
  $extra['google/apiclient-services'] : [];
39
  if ($servicesToKeep) {
40
  $serviceDir = sprintf(
41
- '%s/google/apiclient-services/src/Google/Service',
42
  $composer->getConfig()->get('vendor-dir')
43
  );
44
  self::verifyServicesToKeep($serviceDir, $servicesToKeep);
38
  $extra['google/apiclient-services'] : [];
39
  if ($servicesToKeep) {
40
  $serviceDir = sprintf(
41
+ '%s/google/apiclient-services/src/WPMSGoogle/Service',
42
  $composer->getConfig()->get('vendor-dir')
43
  );
44
  self::verifyServicesToKeep($serviceDir, $servicesToKeep);
inc/lib/google-api/src/Task/Exception.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- * Copyright 2014 Google Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
1
  <?php
2
  /*
3
+ * Copyright 2014 WPMSGoogle Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
inc/lib/google-api/src/Task/Retryable.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- * Copyright 2014 Google Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
1
  <?php
2
  /*
3
+ * Copyright 2014 WPMSGoogle Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
inc/lib/google-api/src/Task/Runner.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- * Copyright 2014 Google Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
1
  <?php
2
  /*
3
+ * Copyright 2014 WPMSGoogle Inc.
4
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
inc/lib/google-api/src/aliases.php CHANGED
@@ -1,32 +1,32 @@
1
  <?php
2
 
3
- if (class_exists('Google_Client', false)) {
4
  // Prevent error with preloading in PHP 7.4
5
  // @see https://github.com/googleapis/google-api-php-client/issues/1976
6
  return;
7
  }
8
 
9
  $classMap = [
10
- 'WPMSGoogle\\Client' => 'Google_Client',
11
- 'WPMSGoogle\\Service' => 'Google_Service',
12
- 'WPMSGoogle\\AccessToken\\Revoke' => 'Google_AccessToken_Revoke',
13
- 'WPMSGoogle\\AccessToken\\Verify' => 'Google_AccessToken_Verify',
14
- 'WPMSGoogle\\Model' => 'Google_Model',
15
- 'WPMSGoogle\\Utils\\UriTemplate' => 'Google_Utils_UriTemplate',
16
- 'WPMSGoogle\\AuthHandler\\Guzzle6AuthHandler' => 'Google_AuthHandler_Guzzle6AuthHandler',
17
- 'WPMSGoogle\\AuthHandler\\Guzzle7AuthHandler' => 'Google_AuthHandler_Guzzle7AuthHandler',
18
- 'WPMSGoogle\\AuthHandler\\Guzzle5AuthHandler' => 'Google_AuthHandler_Guzzle5AuthHandler',
19
- 'WPMSGoogle\\AuthHandler\\AuthHandlerFactory' => 'Google_AuthHandler_AuthHandlerFactory',
20
- 'WPMSGoogle\\Http\\Batch' => 'Google_Http_Batch',
21
- 'WPMSGoogle\\Http\\MediaFileUpload' => 'Google_Http_MediaFileUpload',
22
- 'WPMSGoogle\\Http\\REST' => 'Google_Http_REST',
23
- 'WPMSGoogle\\Task\\Retryable' => 'Google_Task_Retryable',
24
- 'WPMSGoogle\\Task\\Exception' => 'Google_Task_Exception',
25
- 'WPMSGoogle\\Task\\Runner' => 'Google_Task_Runner',
26
- 'WPMSGoogle\\Collection' => 'Google_Collection',
27
- 'WPMSGoogle\\Service\\Exception' => 'Google_Service_Exception',
28
- 'WPMSGoogle\\Service\\Resource' => 'Google_Service_Resource',
29
- 'WPMSGoogle\\Exception' => 'Google_Exception',
30
  ];
31
 
32
  foreach ($classMap as $class => $alias) {
@@ -37,29 +37,29 @@ foreach ($classMap as $class => $alias) {
37
  * This class needs to be defined explicitly as scripts must be recognized by
38
  * the autoloader.
39
  */
40
- class Google_Task_Composer extends \WPMSGoogle\Task\Composer
41
  {
42
  }
43
 
44
  if (\false) {
45
- class Google_AccessToken_Revoke extends \WPMSGoogle\AccessToken\Revoke {}
46
- class Google_AccessToken_Verify extends \WPMSGoogle\AccessToken\Verify {}
47
- class Google_AuthHandler_AuthHandlerFactory extends \WPMSGoogle\AuthHandler\AuthHandlerFactory {}
48
- class Google_AuthHandler_Guzzle5AuthHandler extends \WPMSGoogle\AuthHandler\Guzzle5AuthHandler {}
49
- class Google_AuthHandler_Guzzle6AuthHandler extends \WPMSGoogle\AuthHandler\Guzzle6AuthHandler {}
50
- class Google_AuthHandler_Guzzle7AuthHandler extends \WPMSGoogle\AuthHandler\Guzzle7AuthHandler {}
51
- class Google_Client extends \WPMSGoogle\Client {}
52
- class Google_Collection extends \WPMSGoogle\Collection {}
53
- class Google_Exception extends \WPMSGoogle\Exception {}
54
- class Google_Http_Batch extends \WPMSGoogle\Http\Batch {}
55
- class Google_Http_MediaFileUpload extends \WPMSGoogle\Http\MediaFileUpload {}
56
- class Google_Http_REST extends \WPMSGoogle\Http\REST {}
57
- class Google_Model extends \WPMSGoogle\Model {}
58
- class Google_Service extends \WPMSGoogle\Service {}
59
- class Google_Service_Exception extends \WPMSGoogle\Service\Exception {}
60
- class Google_Service_Resource extends \WPMSGoogle\Service\Resource {}
61
- class Google_Task_Exception extends \WPMSGoogle\Task\Exception {}
62
- class Google_Task_Retryable extends \WPMSGoogle\Task\Retryable {}
63
- class Google_Task_Runner extends \WPMSGoogle\Task\Runner {}
64
- class Google_Utils_UriTemplate extends \WPMSGoogle\Utils\UriTemplate {}
65
  }
1
  <?php
2
 
3
+ if (class_exists('WPMSGoogle_Client', false)) {
4
  // Prevent error with preloading in PHP 7.4
5
  // @see https://github.com/googleapis/google-api-php-client/issues/1976
6
  return;
7
  }
8
 
9
  $classMap = [
10
+ 'WPMSGoogle\\Client' => 'WPMSGoogle_Client',
11
+ 'WPMSGoogle\\Service' => 'WPMSGoogle_Service',
12
+ 'WPMSGoogle\\AccessToken\\Revoke' => 'WPMSGoogle_AccessToken_Revoke',
13
+ 'WPMSGoogle\\AccessToken\\Verify' => 'WPMSGoogle_AccessToken_Verify',
14
+ 'WPMSGoogle\\Model' => 'WPMSGoogle_Model',
15
+ 'WPMSGoogle\\Utils\\UriTemplate' => 'WPMSGoogle_Utils_UriTemplate',
16
+ 'WPMSGoogle\\AuthHandler\\Guzzle6AuthHandler' => 'WPMSGoogle_AuthHandler_Guzzle6AuthHandler',
17
+ 'WPMSGoogle\\AuthHandler\\Guzzle7AuthHandler' => 'WPMSGoogle_AuthHandler_Guzzle7AuthHandler',
18
+ 'WPMSGoogle\\AuthHandler\\Guzzle5AuthHandler' => 'WPMSGoogle_AuthHandler_Guzzle5AuthHandler',
19
+ 'WPMSGoogle\\AuthHandler\\AuthHandlerFactory' => 'WPMSGoogle_AuthHandler_AuthHandlerFactory',
20
+ 'WPMSGoogle\\Http\\Batch' => 'WPMSGoogle_Http_Batch',
21
+ 'WPMSGoogle\\Http\\MediaFileUpload' => 'WPMSGoogle_Http_MediaFileUpload',
22
+ 'WPMSGoogle\\Http\\REST' => 'WPMSGoogle_Http_REST',
23
+ 'WPMSGoogle\\Task\\Retryable' => 'WPMSGoogle_Task_Retryable',
24
+ 'WPMSGoogle\\Task\\Exception' => 'WPMSGoogle_Task_Exception',
25
+ 'WPMSGoogle\\Task\\Runner' => 'WPMSGoogle_Task_Runner',
26
+ 'WPMSGoogle\\Collection' => 'WPMSGoogle_Collection',
27
+ 'WPMSGoogle\\Service\\Exception' => 'WPMSGoogle_Service_Exception',
28
+ 'WPMSGoogle\\Service\\Resource' => 'WPMSGoogle_Service_Resource',
29
+ 'WPMSGoogle\\Exception' => 'WPMSGoogle_Exception',
30
  ];
31
 
32
  foreach ($classMap as $class => $alias) {
37
  * This class needs to be defined explicitly as scripts must be recognized by
38
  * the autoloader.
39
  */
40
+ class WPMSGoogle_Task_Composer extends \WPMSGoogle\Task\Composer
41
  {
42
  }
43
 
44
  if (\false) {
45
+ class WPMSGoogle_AccessToken_Revoke extends \WPMSGoogle\AccessToken\Revoke {}
46
+ class WPMSGoogle_AccessToken_Verify extends \WPMSGoogle\AccessToken\Verify {}
47
+ class WPMSGoogle_AuthHandler_AuthHandlerFactory extends \WPMSGoogle\AuthHandler\AuthHandlerFactory {}
48
+ class WPMSGoogle_AuthHandler_Guzzle5AuthHandler extends \WPMSGoogle\AuthHandler\Guzzle5AuthHandler {}
49
+ class WPMSGoogle_AuthHandler_Guzzle6AuthHandler extends \WPMSGoogle\AuthHandler\Guzzle6AuthHandler {}
50
+ class WPMSGoogle_AuthHandler_Guzzle7AuthHandler extends \WPMSGoogle\AuthHandler\Guzzle7AuthHandler {}
51
+ class WPMSGoogle_Client extends \WPMSGoogle\Client {}
52
+ class WPMSGoogle_Collection extends \WPMSGoogle\Collection {}
53
+ class WPMSGoogle_Exception extends \WPMSGoogle\Exception {}
54
+ class WPMSGoogle_Http_Batch extends \WPMSGoogle\Http\Batch {}
55
+ class WPMSGoogle_Http_MediaFileUpload extends \WPMSGoogle\Http\MediaFileUpload {}
56
+ class WPMSGoogle_Http_REST extends \WPMSGoogle\Http\REST {}
57
+ class WPMSGoogle_Model extends \WPMSGoogle\Model {}
58
+ class WPMSGoogle_Service extends \WPMSGoogle\Service {}
59
+ class WPMSGoogle_Service_Exception extends \WPMSGoogle\Service\Exception {}
60
+ class WPMSGoogle_Service_Resource extends \WPMSGoogle\Service\Resource {}
61
+ class WPMSGoogle_Task_Exception extends \WPMSGoogle\Task\Exception {}
62
+ class WPMSGoogle_Task_Retryable implements \WPMSGoogle\Task\Retryable {}
63
+ class WPMSGoogle_Task_Runner extends \WPMSGoogle\Task\Runner {}
64
+ class WPMSGoogle_Utils_UriTemplate extends \WPMSGoogle\Utils\UriTemplate {}
65
  }
inc/lib/google-api/vendor/composer/ClassLoader.php CHANGED
@@ -13,7 +13,7 @@
13
  namespace Composer\Autoload;
14
 
15
  /**
16
- * WpmsClassLoader implements a PSR-0, PSR-4 and classmap class loader.
17
  *
18
  * $loader = new \Composer\Autoload\ClassLoader();
19
  *
@@ -40,32 +40,77 @@ namespace Composer\Autoload;
40
  * @see https://www.php-fig.org/psr/psr-0/
41
  * @see https://www.php-fig.org/psr/psr-4/
42
  */
43
- class WpmsClassLoader
44
  {
 
45
  private $vendorDir;
46
 
47
  // PSR-4
 
 
 
 
48
  private $prefixLengthsPsr4 = array();
 
 
 
 
49
  private $prefixDirsPsr4 = array();
 
 
 
 
50
  private $fallbackDirsPsr4 = array();
51
 
52
  // PSR-0
 
 
 
 
53
  private $prefixesPsr0 = array();
 
 
 
 
54
  private $fallbackDirsPsr0 = array();
55
 
 
56
  private $useIncludePath = false;
 
 
 
 
 
57
  private $classMap = array();
 
 
58
  private $classMapAuthoritative = false;
 
 
 
 
 
59
  private $missingClasses = array();
 
 
60
  private $apcuPrefix;
61
 
 
 
 
62
  private static $registeredLoaders = array();
63
 
 
 
 
64
  public function __construct($vendorDir = null)
65
  {
66
  $this->vendorDir = $vendorDir;
67
  }
68
 
 
 
 
69
  public function getPrefixes()
70
  {
71
  if (!empty($this->prefixesPsr0)) {
@@ -75,28 +120,47 @@ class WpmsClassLoader
75
  return array();
76
  }
77
 
 
 
 
 
78
  public function getPrefixesPsr4()
79
  {
80
  return $this->prefixDirsPsr4;
81
  }
82
 
 
 
 
 
83
  public function getFallbackDirs()
84
  {
85
  return $this->fallbackDirsPsr0;
86
  }
87
 
 
 
 
 
88
  public function getFallbackDirsPsr4()
89
  {
90
  return $this->fallbackDirsPsr4;
91
  }
92
 
 
 
 
 
93
  public function getClassMap()
94
  {
95
  return $this->classMap;
96
  }
97
 
98
  /**
99
- * @param array $classMap Class to filename map
 
 
 
100
  */
101
  public function addClassMap(array $classMap)
102
  {
@@ -111,9 +175,11 @@ class WpmsClassLoader
111
  * Registers a set of PSR-0 directories for a given prefix, either
112
  * appending or prepending to the ones previously set for this prefix.
113
  *
114
- * @param string $prefix The prefix
115
- * @param array|string $paths The PSR-0 root directories
116
- * @param bool $prepend Whether to prepend the directories
 
 
117
  */
118
  public function add($prefix, $paths, $prepend = false)
119
  {
@@ -156,11 +222,13 @@ class WpmsClassLoader
156
  * Registers a set of PSR-4 directories for a given namespace, either
157
  * appending or prepending to the ones previously set for this namespace.
158
  *
159
- * @param string $prefix The prefix/namespace, with trailing '\\'
160
- * @param array|string $paths The PSR-4 base directories
161
- * @param bool $prepend Whether to prepend the directories
162
  *
163
  * @throws \InvalidArgumentException
 
 
164
  */
165
  public function addPsr4($prefix, $paths, $prepend = false)
166
  {
@@ -204,8 +272,10 @@ class WpmsClassLoader
204
  * Registers a set of PSR-0 directories for a given prefix,
205
  * replacing any others previously set for this prefix.
206
  *
207
- * @param string $prefix The prefix
208
- * @param array|string $paths The PSR-0 base directories
 
 
209
  */
210
  public function set($prefix, $paths)
211
  {
@@ -220,10 +290,12 @@ class WpmsClassLoader
220
  * Registers a set of PSR-4 directories for a given namespace,
221
  * replacing any others previously set for this namespace.
222
  *
223
- * @param string $prefix The prefix/namespace, with trailing '\\'
224
- * @param array|string $paths The PSR-4 base directories
225
  *
226
  * @throws \InvalidArgumentException
 
 
227
  */
228
  public function setPsr4($prefix, $paths)
229
  {
@@ -243,6 +315,8 @@ class WpmsClassLoader
243
  * Turns on searching the include path for class files.
244
  *
245
  * @param bool $useIncludePath
 
 
246
  */
247
  public function setUseIncludePath($useIncludePath)
248
  {
@@ -265,6 +339,8 @@ class WpmsClassLoader
265
  * that have not been registered with the class map.
266
  *
267
  * @param bool $classMapAuthoritative
 
 
268
  */
269
  public function setClassMapAuthoritative($classMapAuthoritative)
270
  {
@@ -285,6 +361,8 @@ class WpmsClassLoader
285
  * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
286
  *
287
  * @param string|null $apcuPrefix
 
 
288
  */
289
  public function setApcuPrefix($apcuPrefix)
290
  {
@@ -305,6 +383,8 @@ class WpmsClassLoader
305
  * Registers this instance as an autoloader.
306
  *
307
  * @param bool $prepend Whether to prepend the autoloader or not
 
 
308
  */
309
  public function register($prepend = false)
310
  {
@@ -324,6 +404,8 @@ class WpmsClassLoader
324
 
325
  /**
326
  * Unregisters this instance as an autoloader.
 
 
327
  */
328
  public function unregister()
329
  {
@@ -338,15 +420,17 @@ class WpmsClassLoader
338
  * Loads the given class or interface.
339
  *
340
  * @param string $class The name of the class
341
- * @return bool|null True if loaded, null otherwise
342
  */
343
  public function loadClass($class)
344
  {
345
  if ($file = $this->findFile($class)) {
346
- wpmsIncludeFile($file);
347
 
348
  return true;
349
  }
 
 
350
  }
351
 
352
  /**
@@ -401,6 +485,11 @@ class WpmsClassLoader
401
  return self::$registeredLoaders;
402
  }
403
 
 
 
 
 
 
404
  private function findFileWithExtension($class, $ext)
405
  {
406
  // PSR-4 lookup
@@ -468,14 +557,16 @@ class WpmsClassLoader
468
  }
469
  }
470
 
471
- if (!function_exists('wpmsIncludeFile') ) {
472
- /**
473
- * Scope isolated include.
474
- *
475
- * Prevents access to $this/self from included files.
476
- */
477
- function wpmsIncludeFile($file)
478
- {
479
- include $file;
480
- }
 
 
481
  }
13
  namespace Composer\Autoload;
14
 
15
  /**
16
+ * ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
17
  *
18
  * $loader = new \Composer\Autoload\ClassLoader();
19
  *
40
  * @see https://www.php-fig.org/psr/psr-0/
41
  * @see https://www.php-fig.org/psr/psr-4/
42
  */
43
+ class ClassLoader
44
  {
45
+ /** @var ?string */
46
  private $vendorDir;
47
 
48
  // PSR-4
49
+ /**
50
+ * @var array[]
51
+ * @psalm-var array<string, array<string, int>>
52
+ */
53
  private $prefixLengthsPsr4 = array();
54
+ /**
55
+ * @var array[]
56
+ * @psalm-var array<string, array<int, string>>
57
+ */
58
  private $prefixDirsPsr4 = array();
59
+ /**
60
+ * @var array[]
61
+ * @psalm-var array<string, string>
62
+ */
63
  private $fallbackDirsPsr4 = array();
64
 
65
  // PSR-0
66
+ /**
67
+ * @var array[]
68
+ * @psalm-var array<string, array<string, string[]>>
69
+ */
70
  private $prefixesPsr0 = array();
71
+ /**
72
+ * @var array[]
73
+ * @psalm-var array<string, string>
74
+ */
75
  private $fallbackDirsPsr0 = array();
76
 
77
+ /** @var bool */
78
  private $useIncludePath = false;
79
+
80
+ /**
81
+ * @var string[]
82
+ * @psalm-var array<string, string>
83
+ */
84
  private $classMap = array();
85
+
86
+ /** @var bool */
87
  private $classMapAuthoritative = false;
88
+
89
+ /**
90
+ * @var bool[]
91
+ * @psalm-var array<string, bool>
92
+ */
93
  private $missingClasses = array();
94
+
95
+ /** @var ?string */
96
  private $apcuPrefix;
97
 
98
+ /**
99
+ * @var self[]
100
+ */
101
  private static $registeredLoaders = array();
102
 
103
+ /**
104
+ * @param ?string $vendorDir
105
+ */
106
  public function __construct($vendorDir = null)
107
  {
108
  $this->vendorDir = $vendorDir;
109
  }
110
 
111
+ /**
112
+ * @return string[]
113
+ */
114
  public function getPrefixes()
115
  {
116
  if (!empty($this->prefixesPsr0)) {
120
  return array();
121
  }
122
 
123
+ /**
124
+ * @return array[]
125
+ * @psalm-return array<string, array<int, string>>
126
+ */
127
  public function getPrefixesPsr4()
128
  {
129
  return $this->prefixDirsPsr4;
130
  }
131
 
132
+ /**
133
+ * @return array[]
134
+ * @psalm-return array<string, string>
135
+ */
136
  public function getFallbackDirs()
137
  {
138
  return $this->fallbackDirsPsr0;
139
  }
140
 
141
+ /**
142
+ * @return array[]
143
+ * @psalm-return array<string, string>
144
+ */
145
  public function getFallbackDirsPsr4()
146
  {
147
  return $this->fallbackDirsPsr4;
148
  }
149
 
150
+ /**
151
+ * @return string[] Array of classname => path
152
+ * @psalm-var array<string, string>
153
+ */
154
  public function getClassMap()
155
  {
156
  return $this->classMap;
157
  }
158
 
159
  /**
160
+ * @param string[] $classMap Class to filename map
161
+ * @psalm-param array<string, string> $classMap
162
+ *
163
+ * @return void
164
  */
165
  public function addClassMap(array $classMap)
166
  {
175
  * Registers a set of PSR-0 directories for a given prefix, either
176
  * appending or prepending to the ones previously set for this prefix.
177
  *
178
+ * @param string $prefix The prefix
179
+ * @param string[]|string $paths The PSR-0 root directories
180
+ * @param bool $prepend Whether to prepend the directories
181
+ *
182
+ * @return void
183
  */
184
  public function add($prefix, $paths, $prepend = false)
185
  {
222
  * Registers a set of PSR-4 directories for a given namespace, either
223
  * appending or prepending to the ones previously set for this namespace.
224
  *
225
+ * @param string $prefix The prefix/namespace, with trailing '\\'
226
+ * @param string[]|string $paths The PSR-4 base directories
227
+ * @param bool $prepend Whether to prepend the directories
228
  *
229
  * @throws \InvalidArgumentException
230
+ *
231
+ * @return void
232
  */
233
  public function addPsr4($prefix, $paths, $prepend = false)
234
  {
272
  * Registers a set of PSR-0 directories for a given prefix,
273
  * replacing any others previously set for this prefix.
274
  *
275
+ * @param string $prefix The prefix
276
+ * @param string[]|string $paths The PSR-0 base directories
277
+ *
278
+ * @return void
279
  */
280
  public function set($prefix, $paths)
281
  {
290
  * Registers a set of PSR-4 directories for a given namespace,
291
  * replacing any others previously set for this namespace.
292
  *
293
+ * @param string $prefix The prefix/namespace, with trailing '\\'
294
+ * @param string[]|string $paths The PSR-4 base directories
295
  *
296
  * @throws \InvalidArgumentException
297
+ *
298
+ * @return void
299
  */
300
  public function setPsr4($prefix, $paths)
301
  {
315
  * Turns on searching the include path for class files.
316
  *
317
  * @param bool $useIncludePath
318
+ *
319
+ * @return void
320
  */
321
  public function setUseIncludePath($useIncludePath)
322
  {
339
  * that have not been registered with the class map.
340
  *
341
  * @param bool $classMapAuthoritative
342
+ *
343
+ * @return void
344
  */
345
  public function setClassMapAuthoritative($classMapAuthoritative)
346
  {
361
  * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
362
  *
363
  * @param string|null $apcuPrefix
364
+ *
365
+ * @return void
366
  */
367
  public function setApcuPrefix($apcuPrefix)
368
  {
383
  * Registers this instance as an autoloader.
384
  *
385
  * @param bool $prepend Whether to prepend the autoloader or not
386
+ *
387
+ * @return void
388
  */
389
  public function register($prepend = false)
390
  {
404
 
405
  /**
406
  * Unregisters this instance as an autoloader.
407
+ *
408
+ * @return void
409
  */
410
  public function unregister()
411
  {
420
  * Loads the given class or interface.
421
  *
422
  * @param string $class The name of the class
423
+ * @return true|null True if loaded, null otherwise
424
  */
425
  public function loadClass($class)
426
  {
427
  if ($file = $this->findFile($class)) {
428
+ includeFile($file);
429
 
430
  return true;
431
  }
432
+
433
+ return null;
434
  }
435
 
436
  /**
485
  return self::$registeredLoaders;
486
  }
487
 
488
+ /**
489
+ * @param string $class
490
+ * @param string $ext
491
+ * @return string|false
492
+ */
493
  private function findFileWithExtension($class, $ext)
494
  {
495
  // PSR-4 lookup
557
  }
558
  }
559
 
560
+ /**
561
+ * Scope isolated include.
562
+ *
563
+ * Prevents access to $this/self from included files.
564
+ *
565
+ * @param string $file
566
+ * @return void
567
+ * @private
568
+ */
569
+ function includeFile($file)
570
+ {
571
+ include $file;
572
  }
inc/lib/google-api/vendor/composer/InstalledVersions.php CHANGED
@@ -1,899 +1,350 @@
1
  <?php
2
 
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
 
13
  namespace Composer;
14
 
15
  use Composer\Autoload\ClassLoader;
16
  use Composer\Semver\VersionParser;
17
 
18
-
19
-
20
-
21
-
22
-
 
 
23
  class InstalledVersions
24
  {
25
- private static $installed = array (
26
- 'root' =>
27
- array (
28
- 'pretty_version' => '1.0.0+no-version-set',
29
- 'version' => '1.0.0.0',
30
- 'aliases' =>
31
- array (
32
- ),
33
- 'reference' => NULL,
34
- 'name' => 'google/apiclient',
35
- ),
36
- 'versions' =>
37
- array (
38
- 'cache/adapter-common' =>
39
- array (
40
- 'pretty_version' => '0.3.3',
41
- 'version' => '0.3.3.0',
42
- 'aliases' =>
43
- array (
44
- ),
45
- 'reference' => '874256105aefaa52b60599ab02858a4575e61095',
46
- ),
47
- 'cache/filesystem-adapter' =>
48
- array (
49
- 'pretty_version' => '0.3.3',
50
- 'version' => '0.3.3.0',
51
- 'aliases' =>
52
- array (
53
- ),
54
- 'reference' => 'b05c31ea76dbe2650817e92265952a5d8b7fb070',
55
- ),
56
- 'cache/taggable-cache' =>
57
- array (
58
- 'pretty_version' => '0.4.3',
59
- 'version' => '0.4.3.0',
60
- 'aliases' =>
61
- array (
62
- ),
63
- 'reference' => '8ae3042edd1ac9546c9eae1020dc2b438ef10742',
64
- ),
65
- 'composer/ca-bundle' =>
66
- array (
67
- 'pretty_version' => '1.2.9',
68
- 'version' => '1.2.9.0',
69
- 'aliases' =>
70
- array (
71
- ),
72
- 'reference' => '78a0e288fdcebf92aa2318a8d3656168da6ac1a5',
73
- ),
74
- 'composer/composer' =>
75
- array (
76
- 'pretty_version' => '1.10.22',
77
- 'version' => '1.10.22.0',
78
- 'aliases' =>
79
- array (
80
- ),
81
- 'reference' => '28c9dfbe2351635961f670773e8d7b17bc5eda25',
82
- ),
83
- 'composer/semver' =>
84
- array (
85
- 'pretty_version' => '1.7.2',
86
- 'version' => '1.7.2.0',
87
- 'aliases' =>
88
- array (
89
- ),
90
- 'reference' => '647490bbcaf7fc4891c58f47b825eb99d19c377a',
91
- ),
92
- 'composer/spdx-licenses' =>
93
- array (
94
- 'pretty_version' => '1.5.5',
95
- 'version' => '1.5.5.0',
96
- 'aliases' =>
97
- array (
98
- ),
99
- 'reference' => 'de30328a7af8680efdc03e396aad24befd513200',
100
- ),
101
- 'composer/xdebug-handler' =>
102
- array (
103
- 'pretty_version' => '1.4.6',
104
- 'version' => '1.4.6.0',
105
- 'aliases' =>
106
- array (
107
- ),
108
- 'reference' => 'f27e06cd9675801df441b3656569b328e04aa37c',
109
- ),
110
- 'dealerdirect/phpcodesniffer-composer-installer' =>
111
- array (
112
- 'pretty_version' => 'v0.7.1',
113
- 'version' => '0.7.1.0',
114
- 'aliases' =>
115
- array (
116
- ),
117
- 'reference' => 'fe390591e0241955f22eb9ba327d137e501c771c',
118
- ),
119
- 'doctrine/instantiator' =>
120
- array (
121
- 'pretty_version' => '1.0.5',
122
- 'version' => '1.0.5.0',
123
- 'aliases' =>
124
- array (
125
- ),
126
- 'reference' => '8e884e78f9f0eb1329e445619e04456e64d8051d',
127
- ),
128
- 'firebase/php-jwt' =>
129
- array (
130
- 'pretty_version' => 'v5.2.1',
131
- 'version' => '5.2.1.0',
132
- 'aliases' =>
133
- array (
134
- ),
135
- 'reference' => 'f42c9110abe98dd6cfe9053c49bc86acc70b2d23',
136
- ),
137
- 'google/apiclient' =>
138
- array (
139
- 'pretty_version' => '1.0.0+no-version-set',
140
- 'version' => '1.0.0.0',
141
- 'aliases' =>
142
- array (
143
- ),
144
- 'reference' => NULL,
145
- ),
146
- 'google/apiclient-services' =>
147
- array (
148
- 'pretty_version' => 'v0.172.0',
149
- 'version' => '0.172.0.0',
150
- 'aliases' =>
151
- array (
152
- ),
153
- 'reference' => '85e8a9f0062a9e1aba3cdc0f499968bc8de78b7d',
154
- ),
155
- 'google/auth' =>
156
- array (
157
- 'pretty_version' => 'v1.15.1',
158
- 'version' => '1.15.1.0',
159
- 'aliases' =>
160
- array (
161
- ),
162
- 'reference' => '4e0c9367719df9703e96f5ad613041b87742471c',
163
- ),
164
- 'guzzlehttp/guzzle' =>
165
- array (
166
- 'pretty_version' => '6.5.5',
167
- 'version' => '6.5.5.0',
168
- 'aliases' =>
169
- array (
170
- ),
171
- 'reference' => '9d4290de1cfd701f38099ef7e183b64b4b7b0c5e',
172
- ),
173
- 'guzzlehttp/promises' =>
174
- array (
175
- 'pretty_version' => '1.4.1',
176
- 'version' => '1.4.1.0',
177
- 'aliases' =>
178
- array (
179
- ),
180
- 'reference' => '8e7d04f1f6450fef59366c399cfad4b9383aa30d',
181
- ),
182
- 'guzzlehttp/psr7' =>
183
- array (
184
- 'pretty_version' => '1.8.2',
185
- 'version' => '1.8.2.0',
186
- 'aliases' =>
187
- array (
188
- ),
189
- 'reference' => 'dc960a912984efb74d0a90222870c72c87f10c91',
190
- ),
191
- 'justinrainbow/json-schema' =>
192
- array (
193
- 'pretty_version' => '5.2.10',
194
- 'version' => '5.2.10.0',
195
- 'aliases' =>
196
- array (
197
- ),
198
- 'reference' => '2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b',
199
- ),
200
- 'league/flysystem' =>
201
- array (
202
- 'pretty_version' => '1.0.70',
203
- 'version' => '1.0.70.0',
204
- 'aliases' =>
205
- array (
206
- ),
207
- 'reference' => '585824702f534f8d3cf7fab7225e8466cc4b7493',
208
- ),
209
- 'monolog/monolog' =>
210
- array (
211
- 'pretty_version' => '1.26.0',
212
- 'version' => '1.26.0.0',
213
- 'aliases' =>
214
- array (
215
- ),
216
- 'reference' => '2209ddd84e7ef1256b7af205d0717fb62cfc9c33',
217
- ),
218
- 'myclabs/deep-copy' =>
219
- array (
220
- 'pretty_version' => '1.7.0',
221
- 'version' => '1.7.0.0',
222
- 'aliases' =>
223
- array (
224
- ),
225
- 'reference' => '3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e',
226
- ),
227
- 'paragonie/random_compat' =>
228
- array (
229
- 'pretty_version' => 'v2.0.20',
230
- 'version' => '2.0.20.0',
231
- 'aliases' =>
232
- array (
233
- ),
234
- 'reference' => '0f1f60250fccffeaf5dda91eea1c018aed1adc2a',
235
- ),
236
- 'phpcompatibility/php-compatibility' =>
237
- array (
238
- 'pretty_version' => '9.3.5',
239
- 'version' => '9.3.5.0',
240
- 'aliases' =>
241
- array (
242
- ),
243
- 'reference' => '9fb324479acf6f39452e0655d2429cc0d3914243',
244
- ),
245
- 'phpdocumentor/reflection-common' =>
246
- array (
247
- 'pretty_version' => '1.0.1',
248
- 'version' => '1.0.1.0',
249
- 'aliases' =>
250
- array (
251
- ),
252
- 'reference' => '21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6',
253
- ),
254
- 'phpdocumentor/reflection-docblock' =>
255
- array (
256
- 'pretty_version' => '3.3.2',
257
- 'version' => '3.3.2.0',
258
- 'aliases' =>
259
- array (
260
- ),
261
- 'reference' => 'bf329f6c1aadea3299f08ee804682b7c45b326a2',
262
- ),
263
- 'phpdocumentor/type-resolver' =>
264
- array (
265
- 'pretty_version' => '0.4.0',
266
- 'version' => '0.4.0.0',
267
- 'aliases' =>
268
- array (
269
- ),
270
- 'reference' => '9c977708995954784726e25d0cd1dddf4e65b0f7',
271
- ),
272
- 'phpseclib/phpseclib' =>
273
- array (
274
- 'pretty_version' => '2.0.31',
275
- 'version' => '2.0.31.0',
276
- 'aliases' =>
277
- array (
278
- ),
279
- 'reference' => '233a920cb38636a43b18d428f9a8db1f0a1a08f4',
280
- ),
281
- 'phpspec/prophecy' =>
282
- array (
283
- 'pretty_version' => 'v1.10.3',
284
- 'version' => '1.10.3.0',
285
- 'aliases' =>
286
- array (
287
- ),
288
- 'reference' => '451c3cd1418cf640de218914901e51b064abb093',
289
- ),
290
- 'phpunit/php-code-coverage' =>
291
- array (
292
- 'pretty_version' => '4.0.8',
293
- 'version' => '4.0.8.0',
294
- 'aliases' =>
295
- array (
296
- ),
297
- 'reference' => 'ef7b2f56815df854e66ceaee8ebe9393ae36a40d',
298
- ),
299
- 'phpunit/php-file-iterator' =>
300
- array (
301
- 'pretty_version' => '1.4.5',
302
- 'version' => '1.4.5.0',
303
- 'aliases' =>
304
- array (
305
- ),
306
- 'reference' => '730b01bc3e867237eaac355e06a36b85dd93a8b4',
307
- ),
308
- 'phpunit/php-text-template' =>
309
- array (
310
- 'pretty_version' => '1.2.1',
311
- 'version' => '1.2.1.0',
312
- 'aliases' =>
313
- array (
314
- ),
315
- 'reference' => '31f8b717e51d9a2afca6c9f046f5d69fc27c8686',
316
- ),
317
- 'phpunit/php-timer' =>
318
- array (
319
- 'pretty_version' => '1.0.9',
320
- 'version' => '1.0.9.0',
321
- 'aliases' =>
322
- array (
323
- ),
324
- 'reference' => '3dcf38ca72b158baf0bc245e9184d3fdffa9c46f',
325
- ),
326
- 'phpunit/php-token-stream' =>
327
- array (
328
- 'pretty_version' => '1.4.12',
329
- 'version' => '1.4.12.0',
330
- 'aliases' =>
331
- array (
332
- ),
333
- 'reference' => '1ce90ba27c42e4e44e6d8458241466380b51fa16',
334
- ),
335
- 'phpunit/phpunit' =>
336
- array (
337
- 'pretty_version' => '5.7.27',
338
- 'version' => '5.7.27.0',
339
- 'aliases' =>
340
- array (
341
- ),
342
- 'reference' => 'b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c',
343
- ),
344
- 'phpunit/phpunit-mock-objects' =>
345
- array (
346
- 'pretty_version' => '3.4.4',
347
- 'version' => '3.4.4.0',
348
- 'aliases' =>
349
- array (
350
- ),
351
- 'reference' => 'a23b761686d50a560cc56233b9ecf49597cc9118',
352
- ),
353
- 'psr/cache' =>
354
- array (
355
- 'pretty_version' => '1.0.1',
356
- 'version' => '1.0.1.0',
357
- 'aliases' =>
358
- array (
359
- ),
360
- 'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
361
- ),
362
- 'psr/cache-implementation' =>
363
- array (
364
- 'provided' =>
365
- array (
366
- 0 => '^1.0',
367
- ),
368
- ),
369
- 'psr/http-message' =>
370
- array (
371
- 'pretty_version' => '1.0.1',
372
- 'version' => '1.0.1.0',
373
- 'aliases' =>
374
- array (
375
- ),
376
- 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
377
- ),
378
- 'psr/http-message-implementation' =>
379
- array (
380
- 'provided' =>
381
- array (
382
- 0 => '1.0',
383
- ),
384
- ),
385
- 'psr/log' =>
386
- array (
387
- 'pretty_version' => '1.1.3',
388
- 'version' => '1.1.3.0',
389
- 'aliases' =>
390
- array (
391
- ),
392
- 'reference' => '0f73288fd15629204f9d42b7055f72dacbe811fc',
393
- ),
394
- 'psr/log-implementation' =>
395
- array (
396
- 'provided' =>
397
- array (
398
- 0 => '1.0',
399
- 1 => '1.0.0',
400
- ),
401
- ),
402
- 'ralouphie/getallheaders' =>
403
- array (
404
- 'pretty_version' => '3.0.3',
405
- 'version' => '3.0.3.0',
406
- 'aliases' =>
407
- array (
408
- ),
409
- 'reference' => '120b605dfeb996808c31b6477290a714d356e822',
410
- ),
411
- 'sebastian/code-unit-reverse-lookup' =>
412
- array (
413
- 'pretty_version' => '1.0.2',
414
- 'version' => '1.0.2.0',
415
- 'aliases' =>
416
- array (
417
- ),
418
- 'reference' => '1de8cd5c010cb153fcd68b8d0f64606f523f7619',
419
- ),
420
- 'sebastian/comparator' =>
421
- array (
422
- 'pretty_version' => '1.2.4',
423
- 'version' => '1.2.4.0',
424
- 'aliases' =>
425
- array (
426
- ),
427
- 'reference' => '2b7424b55f5047b47ac6e5ccb20b2aea4011d9be',
428
- ),
429
- 'sebastian/diff' =>
430
- array (
431
- 'pretty_version' => '1.4.3',
432
- 'version' => '1.4.3.0',
433
- 'aliases' =>
434
- array (
435
- ),
436
- 'reference' => '7f066a26a962dbe58ddea9f72a4e82874a3975a4',
437
- ),
438
- 'sebastian/environment' =>
439
- array (
440
- 'pretty_version' => '2.0.0',
441
- 'version' => '2.0.0.0',
442
- 'aliases' =>
443
- array (
444
- ),
445
- 'reference' => '5795ffe5dc5b02460c3e34222fee8cbe245d8fac',
446
- ),
447
- 'sebastian/exporter' =>
448
- array (
449
- 'pretty_version' => '2.0.0',
450
- 'version' => '2.0.0.0',
451
- 'aliases' =>
452
- array (
453
- ),
454
- 'reference' => 'ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4',
455
- ),
456
- 'sebastian/global-state' =>
457
- array (
458
- 'pretty_version' => '1.1.1',
459
- 'version' => '1.1.1.0',
460
- 'aliases' =>
461
- array (
462
- ),
463
- 'reference' => 'bc37d50fea7d017d3d340f230811c9f1d7280af4',
464
- ),
465
- 'sebastian/object-enumerator' =>
466
- array (
467
- 'pretty_version' => '2.0.1',
468
- 'version' => '2.0.1.0',
469
- 'aliases' =>
470
- array (
471
- ),
472
- 'reference' => '1311872ac850040a79c3c058bea3e22d0f09cbb7',
473
- ),
474
- 'sebastian/recursion-context' =>
475
- array (
476
- 'pretty_version' => '2.0.0',
477
- 'version' => '2.0.0.0',
478
- 'aliases' =>
479
- array (
480
- ),
481
- 'reference' => '2c3ba150cbec723aa057506e73a8d33bdb286c9a',
482
- ),
483
- 'sebastian/resource-operations' =>
484
- array (
485
- 'pretty_version' => '1.0.0',
486
- 'version' => '1.0.0.0',
487
- 'aliases' =>
488
- array (
489
- ),
490
- 'reference' => 'ce990bb21759f94aeafd30209e8cfcdfa8bc3f52',
491
- ),
492
- 'sebastian/version' =>
493
- array (
494
- 'pretty_version' => '2.0.1',
495
- 'version' => '2.0.1.0',
496
- 'aliases' =>
497
- array (
498
- ),
499
- 'reference' => '99732be0ddb3361e16ad77b68ba41efc8e979019',
500
- ),
501
- 'seld/jsonlint' =>
502
- array (
503
- 'pretty_version' => '1.8.3',
504
- 'version' => '1.8.3.0',
505
- 'aliases' =>
506
- array (
507
- ),
508
- 'reference' => '9ad6ce79c342fbd44df10ea95511a1b24dee5b57',
509
- ),
510
- 'seld/phar-utils' =>
511
- array (
512
- 'pretty_version' => '1.1.1',
513
- 'version' => '1.1.1.0',
514
- 'aliases' =>
515
- array (
516
- ),
517
- 'reference' => '8674b1d84ffb47cc59a101f5d5a3b61e87d23796',
518
- ),
519
- 'squizlabs/php_codesniffer' =>
520
- array (
521
- 'pretty_version' => '2.9.2',
522
- 'version' => '2.9.2.0',
523
- 'aliases' =>
524
- array (
525
- ),
526
- 'reference' => '2acf168de78487db620ab4bc524135a13cfe6745',
527
- ),
528
- 'symfony/console' =>
529
- array (
530
- 'pretty_version' => 'v3.4.47',
531
- 'version' => '3.4.47.0',
532
- 'aliases' =>
533
- array (
534
- ),
535
- 'reference' => 'a10b1da6fc93080c180bba7219b5ff5b7518fe81',
536
- ),
537
- 'symfony/css-selector' =>
538
- array (
539
- 'pretty_version' => 'v2.8.52',
540
- 'version' => '2.8.52.0',
541
- 'aliases' =>
542
- array (
543
- ),
544
- 'reference' => '7b1692e418d7ccac24c373528453bc90e42797de',
545
- ),
546
- 'symfony/debug' =>
547
- array (
548
- 'pretty_version' => 'v3.4.47',
549
- 'version' => '3.4.47.0',
550
- 'aliases' =>
551
- array (
552
- ),
553
- 'reference' => 'ab42889de57fdfcfcc0759ab102e2fd4ea72dcae',
554
- ),
555
- 'symfony/dom-crawler' =>
556
- array (
557
- 'pretty_version' => 'v2.8.52',
558
- 'version' => '2.8.52.0',
559
- 'aliases' =>
560
- array (
561
- ),
562
- 'reference' => '2cdc7d3909eea6f982a6298d2e9ab7db01b6403c',
563
- ),
564
- 'symfony/filesystem' =>
565
- array (
566
- 'pretty_version' => 'v3.4.47',
567
- 'version' => '3.4.47.0',
568
- 'aliases' =>
569
- array (
570
- ),
571
- 'reference' => 'e58d7841cddfed6e846829040dca2cca0ebbbbb3',
572
- ),
573
- 'symfony/finder' =>
574
- array (
575
- 'pretty_version' => 'v3.4.47',
576
- 'version' => '3.4.47.0',
577
- 'aliases' =>
578
- array (
579
- ),
580
- 'reference' => 'b6b6ad3db3edb1b4b1c1896b1975fb684994de6e',
581
- ),
582
- 'symfony/polyfill-ctype' =>
583
- array (
584
- 'pretty_version' => 'v1.19.0',
585
- 'version' => '1.19.0.0',
586
- 'aliases' =>
587
- array (
588
- ),
589
- 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b',
590
- ),
591
- 'symfony/polyfill-intl-idn' =>
592
- array (
593
- 'pretty_version' => 'v1.19.0',
594
- 'version' => '1.19.0.0',
595
- 'aliases' =>
596
- array (
597
- ),
598
- 'reference' => '4ad5115c0f5d5172a9fe8147675ec6de266d8826',
599
- ),
600
- 'symfony/polyfill-intl-normalizer' =>
601
- array (
602
- 'pretty_version' => 'v1.19.0',
603
- 'version' => '1.19.0.0',
604
- 'aliases' =>
605
- array (
606
- ),
607
- 'reference' => '8db0ae7936b42feb370840cf24de1a144fb0ef27',
608
- ),
609
- 'symfony/polyfill-mbstring' =>
610
- array (
611
- 'pretty_version' => 'v1.19.0',
612
- 'version' => '1.19.0.0',
613
- 'aliases' =>
614
- array (
615
- ),
616
- 'reference' => 'b5f7b932ee6fa802fc792eabd77c4c88084517ce',
617
- ),
618
- 'symfony/polyfill-php70' =>
619
- array (
620
- 'pretty_version' => 'v1.19.0',
621
- 'version' => '1.19.0.0',
622
- 'aliases' =>
623
- array (
624
- ),
625
- 'reference' => '3fe414077251a81a1b15b1c709faf5c2fbae3d4e',
626
- ),
627
- 'symfony/polyfill-php72' =>
628
- array (
629
- 'pretty_version' => 'v1.19.0',
630
- 'version' => '1.19.0.0',
631
- 'aliases' =>
632
- array (
633
- ),
634
- 'reference' => 'beecef6b463b06954638f02378f52496cb84bacc',
635
- ),
636
- 'symfony/process' =>
637
- array (
638
- 'pretty_version' => 'v3.4.47',
639
- 'version' => '3.4.47.0',
640
- 'aliases' =>
641
- array (
642
- ),
643
- 'reference' => 'b8648cf1d5af12a44a51d07ef9bf980921f15fca',
644
- ),
645
- 'symfony/yaml' =>
646
- array (
647
- 'pretty_version' => 'v3.4.47',
648
- 'version' => '3.4.47.0',
649
- 'aliases' =>
650
- array (
651
- ),
652
- 'reference' => '88289caa3c166321883f67fe5130188ebbb47094',
653
- ),
654
- 'webmozart/assert' =>
655
- array (
656
- 'pretty_version' => '1.9.1',
657
- 'version' => '1.9.1.0',
658
- 'aliases' =>
659
- array (
660
- ),
661
- 'reference' => 'bafc69caeb4d49c39fd0779086c03a3738cbb389',
662
- ),
663
- ),
664
- );
665
- private static $canGetVendors;
666
- private static $installedByVendor = array();
667
-
668
-
669
-
670
-
671
-
672
-
673
-
674
- public static function getInstalledPackages()
675
- {
676
- $packages = array();
677
- foreach (self::getInstalled() as $installed) {
678
- $packages[] = array_keys($installed['versions']);
679
- }
680
-
681
-
682
- if (1 === \count($packages)) {
683
- return $packages[0];
684
- }
685
-
686
- return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
687
- }
688
-
689
-
690
-
691
-
692
-
693
-
694
-
695
-
696
-
697
- public static function isInstalled($packageName)
698
- {
699
- foreach (self::getInstalled() as $installed) {
700
- if (isset($installed['versions'][$packageName])) {
701
- return true;
702
- }
703
- }
704
-
705
- return false;
706
- }
707
-
708
-
709
-
710
-
711
-
712
-
713
-
714
-
715
-
716
-
717
-
718
-
719
-
720
-
721
- public static function satisfies(VersionParser $parser, $packageName, $constraint)
722
- {
723
- $constraint = $parser->parseConstraints($constraint);
724
- $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
725
-
726
- return $provided->matches($constraint);
727
- }
728
-
729
-
730
-
731
-
732
-
733
-
734
-
735
-
736
-
737
-
738
- public static function getVersionRanges($packageName)
739
- {
740
- foreach (self::getInstalled() as $installed) {
741
- if (!isset($installed['versions'][$packageName])) {
742
- continue;
743
- }
744
-
745
- $ranges = array();
746
- if (isset($installed['versions'][$packageName]['pretty_version'])) {
747
- $ranges[] = $installed['versions'][$packageName]['pretty_version'];
748
- }
749
- if (array_key_exists('aliases', $installed['versions'][$packageName])) {
750
- $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
751
- }
752
- if (array_key_exists('replaced', $installed['versions'][$packageName])) {
753
- $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
754
- }
755
- if (array_key_exists('provided', $installed['versions'][$packageName])) {
756
- $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
757
- }
758
-
759
- return implode(' || ', $ranges);
760
- }
761
-
762
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
763
- }
764
-
765
-
766
-
767
-
768
-
769
- public static function getVersion($packageName)
770
- {
771
- foreach (self::getInstalled() as $installed) {
772
- if (!isset($installed['versions'][$packageName])) {
773
- continue;
774
- }
775
-
776
- if (!isset($installed['versions'][$packageName]['version'])) {
777
- return null;
778
- }
779
-
780
- return $installed['versions'][$packageName]['version'];
781
- }
782
-
783
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
784
- }
785
-
786
-
787
-
788
-
789
-
790
- public static function getPrettyVersion($packageName)
791
- {
792
- foreach (self::getInstalled() as $installed) {
793
- if (!isset($installed['versions'][$packageName])) {
794
- continue;
795
- }
796
-
797
- if (!isset($installed['versions'][$packageName]['pretty_version'])) {
798
- return null;
799
- }
800
-
801
- return $installed['versions'][$packageName]['pretty_version'];
802
- }
803
-
804
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
805
- }
806
-
807
-
808
-
809
-
810
-
811
- public static function getReference($packageName)
812
- {
813
- foreach (self::getInstalled() as $installed) {
814
- if (!isset($installed['versions'][$packageName])) {
815
- continue;
816
- }
817
-
818
- if (!isset($installed['versions'][$packageName]['reference'])) {
819
- return null;
820
- }
821
-
822
- return $installed['versions'][$packageName]['reference'];
823
- }
824
-
825
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
826
- }
827
-
828
-
829
-
830
-
831
-
832
- public static function getRootPackage()
833
- {
834
- $installed = self::getInstalled();
835
-
836
- return $installed[0]['root'];
837
- }
838
-
839
-
840
-
841
-
842
-
843
-
844
-
845
- public static function getRawData()
846
- {
847
- return self::$installed;
848
- }
849
-
850
-
851
-
852
-
853
-
854
-
855
-
856
-
857
-
858
-
859
-
860
-
861
-
862
-
863
-
864
-
865
-
866
-
867
-
868
- public static function reload($data)
869
- {
870
- self::$installed = $data;
871
- self::$installedByVendor = array();
872
- }
873
-
874
-
875
-
876
-
877
- private static function getInstalled()
878
- {
879
- if (null === self::$canGetVendors) {
880
- self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
881
- }
882
-
883
- $installed = array();
884
-
885
- if (self::$canGetVendors) {
886
- foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
887
- if (isset(self::$installedByVendor[$vendorDir])) {
888
- $installed[] = self::$installedByVendor[$vendorDir];
889
- } elseif (is_file($vendorDir.'/composer/installed.php')) {
890
- $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
891
- }
892
- }
893
- }
894
-
895
- $installed[] = self::$installed;
896
-
897
- return $installed;
898
- }
899
  }
1
  <?php
2
 
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
 
13
  namespace Composer;
14
 
15
  use Composer\Autoload\ClassLoader;
16
  use Composer\Semver\VersionParser;
17
 
18
+ /**
19
+ * This class is copied in every Composer installed project and available to all
20
+ *
21
+ * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
22
+ *
23
+ * To require its presence, you can require `composer-runtime-api ^2.0`
24
+ */
25
  class InstalledVersions
26
  {
27
+ /**
28
+ * @var mixed[]|null
29
+ * @psalm-var array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}|array{}|null
30
+ */
31
+ private static $installed;
32
+
33
+ /**
34
+ * @var bool|null
35
+ */
36
+ private static $canGetVendors;
37
+
38
+ /**
39
+ * @var array[]
40
+ * @psalm-var array<string, array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
41
+ */
42
+ private static $installedByVendor = array();
43
+
44
+ /**
45
+ * Returns a list of all package names which are present, either by being installed, replaced or provided
46
+ *
47
+ * @return string[]
48
+ * @psalm-return list<string>
49
+ */
50
+ public static function getInstalledPackages()
51
+ {
52
+ $packages = array();
53
+ foreach (self::getInstalled() as $installed) {
54
+ $packages[] = array_keys($installed['versions']);
55
+ }
56
+
57
+ if (1 === \count($packages)) {
58
+ return $packages[0];
59
+ }
60
+
61
+ return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
62
+ }
63
+
64
+ /**
65
+ * Returns a list of all package names with a specific type e.g. 'library'
66
+ *
67
+ * @param string $type
68
+ * @return string[]
69
+ * @psalm-return list<string>
70
+ */
71
+ public static function getInstalledPackagesByType($type)
72
+ {
73
+ $packagesByType = array();
74
+
75
+ foreach (self::getInstalled() as $installed) {
76
+ foreach ($installed['versions'] as $name => $package) {
77
+ if (isset($package['type']) && $package['type'] === $type) {
78
+ $packagesByType[] = $name;
79
+ }
80
+ }
81
+ }
82
+
83
+ return $packagesByType;
84
+ }
85
+
86
+ /**
87
+ * Checks whether the given package is installed
88
+ *
89
+ * This also returns true if the package name is provided or replaced by another package
90
+ *
91
+ * @param string $packageName
92
+ * @param bool $includeDevRequirements
93
+ * @return bool
94
+ */
95
+ public static function isInstalled($packageName, $includeDevRequirements = true)
96
+ {
97
+ foreach (self::getInstalled() as $installed) {
98
+ if (isset($installed['versions'][$packageName])) {
99
+ return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
100
+ }
101
+ }
102
+
103
+ return false;
104
+ }
105
+
106
+ /**
107
+ * Checks whether the given package satisfies a version constraint
108
+ *
109
+ * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
110
+ *
111
+ * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
112
+ *
113
+ * @param VersionParser $parser Install composer/semver to have access to this class and functionality
114
+ * @param string $packageName
115
+ * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
116
+ * @return bool
117
+ */
118
+ public static function satisfies(VersionParser $parser, $packageName, $constraint)
119
+ {
120
+ $constraint = $parser->parseConstraints($constraint);
121
+ $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
122
+
123
+ return $provided->matches($constraint);
124
+ }
125
+
126
+ /**
127
+ * Returns a version constraint representing all the range(s) which are installed for a given package
128
+ *
129
+ * It is easier to use this via isInstalled() with the $constraint argument if you need to check
130
+ * whether a given version of a package is installed, and not just whether it exists
131
+ *
132
+ * @param string $packageName
133
+ * @return string Version constraint usable with composer/semver
134
+ */
135
+ public static function getVersionRanges($packageName)
136
+ {
137
+ foreach (self::getInstalled() as $installed) {
138
+ if (!isset($installed['versions'][$packageName])) {
139
+ continue;
140
+ }
141
+
142
+ $ranges = array();
143
+ if (isset($installed['versions'][$packageName]['pretty_version'])) {
144
+ $ranges[] = $installed['versions'][$packageName]['pretty_version'];
145
+ }
146
+ if (array_key_exists('aliases', $installed['versions'][$packageName])) {
147
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
148
+ }
149
+ if (array_key_exists('replaced', $installed['versions'][$packageName])) {
150
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
151
+ }
152
+ if (array_key_exists('provided', $installed['versions'][$packageName])) {
153
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
154
+ }
155
+
156
+ return implode(' || ', $ranges);
157
+ }
158
+
159
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
160
+ }
161
+
162
+ /**
163
+ * @param string $packageName
164
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
165
+ */
166
+ public static function getVersion($packageName)
167
+ {
168
+ foreach (self::getInstalled() as $installed) {
169
+ if (!isset($installed['versions'][$packageName])) {
170
+ continue;
171
+ }
172
+
173
+ if (!isset($installed['versions'][$packageName]['version'])) {
174
+ return null;
175
+ }
176
+
177
+ return $installed['versions'][$packageName]['version'];
178
+ }
179
+
180
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
181
+ }
182
+
183
+ /**
184
+ * @param string $packageName
185
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
186
+ */
187
+ public static function getPrettyVersion($packageName)
188
+ {
189
+ foreach (self::getInstalled() as $installed) {
190
+ if (!isset($installed['versions'][$packageName])) {
191
+ continue;
192
+ }
193
+
194
+ if (!isset($installed['versions'][$packageName]['pretty_version'])) {
195
+ return null;
196
+ }
197
+
198
+ return $installed['versions'][$packageName]['pretty_version'];
199
+ }
200
+
201
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
202
+ }
203
+
204
+ /**
205
+ * @param string $packageName
206
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
207
+ */
208
+ public static function getReference($packageName)
209
+ {
210
+ foreach (self::getInstalled() as $installed) {
211
+ if (!isset($installed['versions'][$packageName])) {
212
+ continue;
213
+ }
214
+
215
+ if (!isset($installed['versions'][$packageName]['reference'])) {
216
+ return null;
217
+ }
218
+
219
+ return $installed['versions'][$packageName]['reference'];
220
+ }
221
+
222
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
223
+ }
224
+
225
+ /**
226
+ * @param string $packageName
227
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
228
+ */
229
+ public static function getInstallPath($packageName)
230
+ {
231
+ foreach (self::getInstalled() as $installed) {
232
+ if (!isset($installed['versions'][$packageName])) {
233
+ continue;
234
+ }
235
+
236
+ return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
237
+ }
238
+
239
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
240
+ }
241
+
242
+ /**
243
+ * @return array
244
+ * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
245
+ */
246
+ public static function getRootPackage()
247
+ {
248
+ $installed = self::getInstalled();
249
+
250
+ return $installed[0]['root'];
251
+ }
252
+
253
+ /**
254
+ * Returns the raw installed.php data for custom implementations
255
+ *
256
+ * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
257
+ * @return array[]
258
+ * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
259
+ */
260
+ public static function getRawData()
261
+ {
262
+ @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
263
+
264
+ if (null === self::$installed) {
265
+ // only require the installed.php file if this file is loaded from its dumped location,
266
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
267
+ if (substr(__DIR__, -8, 1) !== 'C') {
268
+ self::$installed = include __DIR__ . '/installed.php';
269
+ } else {
270
+ self::$installed = array();
271
+ }
272
+ }
273
+
274
+ return self::$installed;
275
+ }
276
+
277
+ /**
278
+ * Returns the raw data of all installed.php which are currently loaded for custom implementations
279
+ *
280
+ * @return array[]
281
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
282
+ */
283
+ public static function getAllRawData()
284
+ {
285
+ return self::getInstalled();
286
+ }
287
+
288
+ /**
289
+ * Lets you reload the static array from another file
290
+ *
291
+ * This is only useful for complex integrations in which a project needs to use
292
+ * this class but then also needs to execute another project's autoloader in process,
293
+ * and wants to ensure both projects have access to their version of installed.php.
294
+ *
295
+ * A typical case would be PHPUnit, where it would need to make sure it reads all
296
+ * the data it needs from this class, then call reload() with
297
+ * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
298
+ * the project in which it runs can then also use this class safely, without
299
+ * interference between PHPUnit's dependencies and the project's dependencies.
300
+ *
301
+ * @param array[] $data A vendor/composer/installed.php data set
302
+ * @return void
303
+ *
304
+ * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
305
+ */
306
+ public static function reload($data)
307
+ {
308
+ self::$installed = $data;
309
+ self::$installedByVendor = array();
310
+ }
311
+
312
+ /**
313
+ * @return array[]
314
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
315
+ */
316
+ private static function getInstalled()
317
+ {
318
+ if (null === self::$canGetVendors) {
319
+ self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
320
+ }
321
+
322
+ $installed = array();
323
+
324
+ if (self::$canGetVendors) {
325
+ foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
326
+ if (isset(self::$installedByVendor[$vendorDir])) {
327
+ $installed[] = self::$installedByVendor[$vendorDir];
328
+ } elseif (is_file($vendorDir.'/composer/installed.php')) {
329
+ $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
330
+ if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
331
+ self::$installed = $installed[count($installed) - 1];
332
+ }
333
+ }
334
+ }
335
+ }
336
+
337
+ if (null === self::$installed) {
338
+ // only require the installed.php file if this file is loaded from its dumped location,
339
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
340
+ if (substr(__DIR__, -8, 1) !== 'C') {
341
+ self::$installed = require __DIR__ . '/installed.php';
342
+ } else {
343
+ self::$installed = array();
344
+ }
345
+ }
346
+ $installed[] = self::$installed;
347
+
348
+ return $installed;
349
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  }
inc/lib/google-api/vendor/composer/autoload_classmap.php CHANGED
@@ -6,751 +6,26 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'ArithmeticError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',
10
- 'AssertionError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/AssertionError.php',
11
  'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
12
- 'DivisionByZeroError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',
13
- 'Error' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/Error.php',
14
- 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php',
15
- 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php',
16
- 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php',
17
- 'Generic_Sniffs_Arrays_DisallowLongArraySyntaxSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php',
18
- 'Generic_Sniffs_Arrays_DisallowShortArraySyntaxSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php',
19
- 'Generic_Sniffs_Classes_DuplicateClassNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php',
20
- 'Generic_Sniffs_Classes_OpeningBraceSameLineSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php',
21
- 'Generic_Sniffs_CodeAnalysis_EmptyStatementSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php',
22
- 'Generic_Sniffs_CodeAnalysis_ForLoopShouldBeWhileLoopSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php',
23
- 'Generic_Sniffs_CodeAnalysis_ForLoopWithTestFunctionCallSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php',
24
- 'Generic_Sniffs_CodeAnalysis_JumbledIncrementerSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php',
25
- 'Generic_Sniffs_CodeAnalysis_UnconditionalIfStatementSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php',
26
- 'Generic_Sniffs_CodeAnalysis_UnnecessaryFinalModifierSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php',
27
- 'Generic_Sniffs_CodeAnalysis_UnusedFunctionParameterSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php',
28
- 'Generic_Sniffs_CodeAnalysis_UselessOverridingMethodSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php',
29
- 'Generic_Sniffs_Commenting_DocCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php',
30
- 'Generic_Sniffs_Commenting_FixmeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/FixmeSniff.php',
31
- 'Generic_Sniffs_Commenting_TodoSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/TodoSniff.php',
32
- 'Generic_Sniffs_ControlStructures_InlineControlStructureSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php',
33
- 'Generic_Sniffs_Debug_CSSLintSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/CSSLintSniff.php',
34
- 'Generic_Sniffs_Debug_ClosureLinterSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php',
35
- 'Generic_Sniffs_Debug_ESLintSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ESLintSniff.php',
36
- 'Generic_Sniffs_Debug_JSHintSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/JSHintSniff.php',
37
- 'Generic_Sniffs_Files_ByteOrderMarkSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php',
38
- 'Generic_Sniffs_Files_EndFileNewlineSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php',
39
- 'Generic_Sniffs_Files_EndFileNoNewlineSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php',
40
- 'Generic_Sniffs_Files_InlineHTMLSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php',
41
- 'Generic_Sniffs_Files_LineEndingsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LineEndingsSniff.php',
42
- 'Generic_Sniffs_Files_LineLengthSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LineLengthSniff.php',
43
- 'Generic_Sniffs_Files_LowercasedFilenameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php',
44
- 'Generic_Sniffs_Files_OneClassPerFileSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php',
45
- 'Generic_Sniffs_Files_OneInterfacePerFileSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php',
46
- 'Generic_Sniffs_Files_OneTraitPerFileSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php',
47
- 'Generic_Sniffs_Formatting_DisallowMultipleStatementsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php',
48
- 'Generic_Sniffs_Formatting_MultipleStatementAlignmentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php',
49
- 'Generic_Sniffs_Formatting_NoSpaceAfterCastSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php',
50
- 'Generic_Sniffs_Formatting_SpaceAfterCastSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php',
51
- 'Generic_Sniffs_Formatting_SpaceAfterNotSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php',
52
- 'Generic_Sniffs_Functions_CallTimePassByReferenceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php',
53
- 'Generic_Sniffs_Functions_FunctionCallArgumentSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php',
54
- 'Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php',
55
- 'Generic_Sniffs_Functions_OpeningFunctionBraceKernighanRitchieSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php',
56
- 'Generic_Sniffs_Metrics_CyclomaticComplexitySniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php',
57
- 'Generic_Sniffs_Metrics_NestingLevelSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php',
58
- 'Generic_Sniffs_NamingConventions_CamelCapsFunctionNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php',
59
- 'Generic_Sniffs_NamingConventions_ConstructorNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php',
60
- 'Generic_Sniffs_NamingConventions_UpperCaseConstantNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php',
61
- 'Generic_Sniffs_PHP_BacktickOperatorSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php',
62
- 'Generic_Sniffs_PHP_CharacterBeforePHPOpeningTagSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php',
63
- 'Generic_Sniffs_PHP_ClosingPHPTagSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php',
64
- 'Generic_Sniffs_PHP_DeprecatedFunctionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php',
65
- 'Generic_Sniffs_PHP_DisallowAlternativePHPTagsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php',
66
- 'Generic_Sniffs_PHP_DisallowShortOpenTagSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php',
67
- 'Generic_Sniffs_PHP_ForbiddenFunctionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php',
68
- 'Generic_Sniffs_PHP_LowerCaseConstantSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php',
69
- 'Generic_Sniffs_PHP_LowerCaseKeywordSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php',
70
- 'Generic_Sniffs_PHP_NoSilencedErrorsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php',
71
- 'Generic_Sniffs_PHP_SAPIUsageSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php',
72
- 'Generic_Sniffs_PHP_SyntaxSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/SyntaxSniff.php',
73
- 'Generic_Sniffs_PHP_UpperCaseConstantSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php',
74
- 'Generic_Sniffs_Strings_UnnecessaryStringConcatSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php',
75
- 'Generic_Sniffs_VersionControl_SubversionPropertiesSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php',
76
- 'Generic_Sniffs_WhiteSpace_DisallowSpaceIndentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php',
77
- 'Generic_Sniffs_WhiteSpace_DisallowTabIndentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php',
78
- 'Generic_Sniffs_WhiteSpace_ScopeIndentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php',
79
- 'Google_AccessToken_Revoke' => $baseDir . '/src/aliases.php',
80
- 'Google_AccessToken_Verify' => $baseDir . '/src/aliases.php',
81
- 'Google_AuthHandler_AuthHandlerFactory' => $baseDir . '/src/aliases.php',
82
- 'Google_AuthHandler_Guzzle5AuthHandler' => $baseDir . '/src/aliases.php',
83
- 'Google_AuthHandler_Guzzle6AuthHandler' => $baseDir . '/src/aliases.php',
84
- 'Google_AuthHandler_Guzzle7AuthHandler' => $baseDir . '/src/aliases.php',
85
- 'Google_Client' => $baseDir . '/src/aliases.php',
86
- 'Google_Collection' => $baseDir . '/src/aliases.php',
87
- 'Google_Exception' => $baseDir . '/src/aliases.php',
88
- 'Google_Http_Batch' => $baseDir . '/src/aliases.php',
89
- 'Google_Http_MediaFileUpload' => $baseDir . '/src/aliases.php',
90
- 'Google_Http_REST' => $baseDir . '/src/aliases.php',
91
- 'Google_Model' => $baseDir . '/src/aliases.php',
92
- 'Google_Service' => $baseDir . '/src/aliases.php',
93
- 'Google_Service_Exception' => $baseDir . '/src/aliases.php',
94
- 'Google_Service_Resource' => $baseDir . '/src/aliases.php',
95
- 'Google_Task_Composer' => $baseDir . '/src/aliases.php',
96
- 'Google_Task_Exception' => $baseDir . '/src/aliases.php',
97
- 'Google_Task_Retryable' => $baseDir . '/src/aliases.php',
98
- 'Google_Task_Runner' => $baseDir . '/src/aliases.php',
99
- 'Google_Utils_UriTemplate' => $baseDir . '/src/aliases.php',
100
- 'MySource_Sniffs_CSS_BrowserSpecificStylesSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php',
101
- 'MySource_Sniffs_Channels_DisallowSelfActionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/DisallowSelfActionsSniff.php',
102
- 'MySource_Sniffs_Channels_IncludeOwnSystemSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/IncludeOwnSystemSniff.php',
103
- 'MySource_Sniffs_Channels_IncludeSystemSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php',
104
- 'MySource_Sniffs_Channels_UnusedSystemSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php',
105
- 'MySource_Sniffs_Commenting_FunctionCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Commenting/FunctionCommentSniff.php',
106
- 'MySource_Sniffs_Debug_DebugCodeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/DebugCodeSniff.php',
107
- 'MySource_Sniffs_Debug_FirebugConsoleSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php',
108
- 'MySource_Sniffs_Objects_AssignThisSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/AssignThisSniff.php',
109
- 'MySource_Sniffs_Objects_CreateWidgetTypeCallbackSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/CreateWidgetTypeCallbackSniff.php',
110
- 'MySource_Sniffs_Objects_DisallowNewWidgetSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php',
111
- 'MySource_Sniffs_PHP_AjaxNullComparisonSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php',
112
- 'MySource_Sniffs_PHP_EvalObjectFactorySniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php',
113
- 'MySource_Sniffs_PHP_GetRequestDataSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/GetRequestDataSniff.php',
114
- 'MySource_Sniffs_PHP_ReturnFunctionValueSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php',
115
- 'MySource_Sniffs_Strings_JoinStringsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php',
116
- 'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
117
- 'PEAR_Sniffs_Classes_ClassDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Classes/ClassDeclarationSniff.php',
118
- 'PEAR_Sniffs_Commenting_ClassCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php',
119
- 'PEAR_Sniffs_Commenting_FileCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/FileCommentSniff.php',
120
- 'PEAR_Sniffs_Commenting_FunctionCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php',
121
- 'PEAR_Sniffs_Commenting_InlineCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/InlineCommentSniff.php',
122
- 'PEAR_Sniffs_ControlStructures_ControlSignatureSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/ControlSignatureSniff.php',
123
- 'PEAR_Sniffs_ControlStructures_MultiLineConditionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php',
124
- 'PEAR_Sniffs_Files_IncludingFileSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Files/IncludingFileSniff.php',
125
- 'PEAR_Sniffs_Formatting_MultiLineAssignmentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php',
126
- 'PEAR_Sniffs_Functions_FunctionCallSignatureSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionCallSignatureSniff.php',
127
- 'PEAR_Sniffs_Functions_FunctionDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php',
128
- 'PEAR_Sniffs_Functions_ValidDefaultValueSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php',
129
- 'PEAR_Sniffs_NamingConventions_ValidClassNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidClassNameSniff.php',
130
- 'PEAR_Sniffs_NamingConventions_ValidFunctionNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php',
131
- 'PEAR_Sniffs_NamingConventions_ValidVariableNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidVariableNameSniff.php',
132
- 'PEAR_Sniffs_WhiteSpace_ObjectOperatorIndentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php',
133
- 'PEAR_Sniffs_WhiteSpace_ScopeClosingBraceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php',
134
- 'PEAR_Sniffs_WhiteSpace_ScopeIndentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php',
135
- 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/Assert.php',
136
- 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/AssertionFailedError.php',
137
- 'PHPUnit\\Framework\\BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/BaseTestListener.php',
138
- 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/Test.php',
139
- 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestCase.php',
140
- 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestListener.php',
141
- 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestSuite.php',
142
- 'PHPUnit_Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
143
- 'PHPUnit_Extensions_GroupTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/GroupTestSuite.php',
144
- 'PHPUnit_Extensions_PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestCase.php',
145
- 'PHPUnit_Extensions_PhptTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestSuite.php',
146
- 'PHPUnit_Extensions_RepeatedTest' => $vendorDir . '/phpunit/phpunit/src/Extensions/RepeatedTest.php',
147
- 'PHPUnit_Extensions_TestDecorator' => $vendorDir . '/phpunit/phpunit/src/Extensions/TestDecorator.php',
148
- 'PHPUnit_Extensions_TicketListener' => $vendorDir . '/phpunit/phpunit/src/Extensions/TicketListener.php',
149
- 'PHPUnit_Framework_Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
150
- 'PHPUnit_Framework_AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php',
151
- 'PHPUnit_Framework_BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/BaseTestListener.php',
152
- 'PHPUnit_Framework_CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php',
153
- 'PHPUnit_Framework_Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint.php',
154
- 'PHPUnit_Framework_Constraint_And' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/And.php',
155
- 'PHPUnit_Framework_Constraint_ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php',
156
- 'PHPUnit_Framework_Constraint_ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php',
157
- 'PHPUnit_Framework_Constraint_Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php',
158
- 'PHPUnit_Framework_Constraint_Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
159
- 'PHPUnit_Framework_Constraint_ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php',
160
- 'PHPUnit_Framework_Constraint_ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php',
161
- 'PHPUnit_Framework_Constraint_Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php',
162
- 'PHPUnit_Framework_Constraint_Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php',
163
- 'PHPUnit_Framework_Constraint_DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php',
164
- 'PHPUnit_Framework_Constraint_Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php',
165
- 'PHPUnit_Framework_Constraint_ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php',
166
- 'PHPUnit_Framework_Constraint_ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php',
167
- 'PHPUnit_Framework_Constraint_ExceptionMessageRegExp' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegExp.php',
168
- 'PHPUnit_Framework_Constraint_FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php',
169
- 'PHPUnit_Framework_Constraint_GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php',
170
- 'PHPUnit_Framework_Constraint_IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
171
- 'PHPUnit_Framework_Constraint_IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php',
172
- 'PHPUnit_Framework_Constraint_IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php',
173
- 'PHPUnit_Framework_Constraint_IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php',
174
- 'PHPUnit_Framework_Constraint_IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php',
175
- 'PHPUnit_Framework_Constraint_IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
176
- 'PHPUnit_Framework_Constraint_IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php',
177
- 'PHPUnit_Framework_Constraint_IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php',
178
- 'PHPUnit_Framework_Constraint_IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php',
179
- 'PHPUnit_Framework_Constraint_IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php',
180
- 'PHPUnit_Framework_Constraint_IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php',
181
- 'PHPUnit_Framework_Constraint_IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php',
182
- 'PHPUnit_Framework_Constraint_IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php',
183
- 'PHPUnit_Framework_Constraint_IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php',
184
- 'PHPUnit_Framework_Constraint_IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php',
185
- 'PHPUnit_Framework_Constraint_JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
186
- 'PHPUnit_Framework_Constraint_JsonMatches_ErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches/ErrorMessageProvider.php',
187
- 'PHPUnit_Framework_Constraint_LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php',
188
- 'PHPUnit_Framework_Constraint_Not' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Not.php',
189
- 'PHPUnit_Framework_Constraint_ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php',
190
- 'PHPUnit_Framework_Constraint_Or' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Or.php',
191
- 'PHPUnit_Framework_Constraint_PCREMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/PCREMatch.php',
192
- 'PHPUnit_Framework_Constraint_SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php',
193
- 'PHPUnit_Framework_Constraint_StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php',
194
- 'PHPUnit_Framework_Constraint_StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php',
195
- 'PHPUnit_Framework_Constraint_StringMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatches.php',
196
- 'PHPUnit_Framework_Constraint_StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php',
197
- 'PHPUnit_Framework_Constraint_TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php',
198
- 'PHPUnit_Framework_Constraint_TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php',
199
- 'PHPUnit_Framework_Constraint_Xor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Xor.php',
200
- 'PHPUnit_Framework_CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php',
201
- 'PHPUnit_Framework_Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error.php',
202
- 'PHPUnit_Framework_Error_Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
203
- 'PHPUnit_Framework_Error_Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php',
204
- 'PHPUnit_Framework_Error_Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php',
205
- 'PHPUnit_Framework_Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php',
206
- 'PHPUnit_Framework_ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
207
- 'PHPUnit_Framework_ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php',
208
- 'PHPUnit_Framework_IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
209
- 'PHPUnit_Framework_IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
210
- 'PHPUnit_Framework_IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php',
211
- 'PHPUnit_Framework_InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php',
212
- 'PHPUnit_Framework_MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php',
213
- 'PHPUnit_Framework_MockObject_BadMethodCallException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/BadMethodCallException.php',
214
- 'PHPUnit_Framework_MockObject_Builder_Identity' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Identity.php',
215
- 'PHPUnit_Framework_MockObject_Builder_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/InvocationMocker.php',
216
- 'PHPUnit_Framework_MockObject_Builder_Match' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Match.php',
217
- 'PHPUnit_Framework_MockObject_Builder_MethodNameMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/MethodNameMatch.php',
218
- 'PHPUnit_Framework_MockObject_Builder_Namespace' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Namespace.php',
219
- 'PHPUnit_Framework_MockObject_Builder_ParametersMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ParametersMatch.php',
220
- 'PHPUnit_Framework_MockObject_Builder_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Stub.php',
221
- 'PHPUnit_Framework_MockObject_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/Exception.php',
222
- 'PHPUnit_Framework_MockObject_Generator' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator.php',
223
- 'PHPUnit_Framework_MockObject_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation.php',
224
- 'PHPUnit_Framework_MockObject_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/InvocationMocker.php',
225
- 'PHPUnit_Framework_MockObject_Invocation_Object' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Object.php',
226
- 'PHPUnit_Framework_MockObject_Invocation_Static' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Static.php',
227
- 'PHPUnit_Framework_MockObject_Invokable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invokable.php',
228
- 'PHPUnit_Framework_MockObject_Matcher' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher.php',
229
- 'PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php',
230
- 'PHPUnit_Framework_MockObject_Matcher_AnyParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyParameters.php',
231
- 'PHPUnit_Framework_MockObject_Matcher_ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ConsecutiveParameters.php',
232
- 'PHPUnit_Framework_MockObject_Matcher_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Invocation.php',
233
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtIndex.php',
234
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php',
235
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php',
236
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtMostCount.php',
237
- 'PHPUnit_Framework_MockObject_Matcher_InvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedCount.php',
238
- 'PHPUnit_Framework_MockObject_Matcher_InvokedRecorder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedRecorder.php',
239
- 'PHPUnit_Framework_MockObject_Matcher_MethodName' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/MethodName.php',
240
- 'PHPUnit_Framework_MockObject_Matcher_Parameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Parameters.php',
241
- 'PHPUnit_Framework_MockObject_Matcher_StatelessInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/StatelessInvocation.php',
242
- 'PHPUnit_Framework_MockObject_MockBuilder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockBuilder.php',
243
- 'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockObject.php',
244
- 'PHPUnit_Framework_MockObject_RuntimeException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/RuntimeException.php',
245
- 'PHPUnit_Framework_MockObject_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub.php',
246
- 'PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ConsecutiveCalls.php',
247
- 'PHPUnit_Framework_MockObject_Stub_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Exception.php',
248
- 'PHPUnit_Framework_MockObject_Stub_MatcherCollection' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/MatcherCollection.php',
249
- 'PHPUnit_Framework_MockObject_Stub_Return' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Return.php',
250
- 'PHPUnit_Framework_MockObject_Stub_ReturnArgument' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnArgument.php',
251
- 'PHPUnit_Framework_MockObject_Stub_ReturnCallback' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnCallback.php',
252
- 'PHPUnit_Framework_MockObject_Stub_ReturnReference' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnReference.php',
253
- 'PHPUnit_Framework_MockObject_Stub_ReturnSelf' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnSelf.php',
254
- 'PHPUnit_Framework_MockObject_Stub_ReturnValueMap' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnValueMap.php',
255
- 'PHPUnit_Framework_MockObject_Verifiable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Verifiable.php',
256
- 'PHPUnit_Framework_OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php',
257
- 'PHPUnit_Framework_RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php',
258
- 'PHPUnit_Framework_RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php',
259
- 'PHPUnit_Framework_SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
260
- 'PHPUnit_Framework_SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php',
261
- 'PHPUnit_Framework_SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
262
- 'PHPUnit_Framework_SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php',
263
- 'PHPUnit_Framework_SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php',
264
- 'PHPUnit_Framework_SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php',
265
- 'PHPUnit_Framework_Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php',
266
- 'PHPUnit_Framework_TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php',
267
- 'PHPUnit_Framework_TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php',
268
- 'PHPUnit_Framework_TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php',
269
- 'PHPUnit_Framework_TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php',
270
- 'PHPUnit_Framework_TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php',
271
- 'PHPUnit_Framework_TestSuite_DataProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite/DataProvider.php',
272
- 'PHPUnit_Framework_UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php',
273
- 'PHPUnit_Framework_Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php',
274
- 'PHPUnit_Framework_WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
275
- 'PHPUnit_Runner_BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
276
- 'PHPUnit_Runner_Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php',
277
- 'PHPUnit_Runner_Filter_Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
278
- 'PHPUnit_Runner_Filter_GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group.php',
279
- 'PHPUnit_Runner_Filter_Group_Exclude' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group/Exclude.php',
280
- 'PHPUnit_Runner_Filter_Group_Include' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group/Include.php',
281
- 'PHPUnit_Runner_Filter_Test' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Test.php',
282
- 'PHPUnit_Runner_StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
283
- 'PHPUnit_Runner_TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
284
- 'PHPUnit_Runner_Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
285
- 'PHPUnit_TextUI_Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php',
286
- 'PHPUnit_TextUI_ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
287
- 'PHPUnit_TextUI_TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php',
288
- 'PHPUnit_Util_Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php',
289
- 'PHPUnit_Util_Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php',
290
- 'PHPUnit_Util_ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php',
291
- 'PHPUnit_Util_ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php',
292
- 'PHPUnit_Util_Fileloader' => $vendorDir . '/phpunit/phpunit/src/Util/Fileloader.php',
293
- 'PHPUnit_Util_Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
294
- 'PHPUnit_Util_Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
295
- 'PHPUnit_Util_Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php',
296
- 'PHPUnit_Util_GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
297
- 'PHPUnit_Util_InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php',
298
- 'PHPUnit_Util_Log_JSON' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JSON.php',
299
- 'PHPUnit_Util_Log_JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php',
300
- 'PHPUnit_Util_Log_TAP' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TAP.php',
301
- 'PHPUnit_Util_Log_TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
302
- 'PHPUnit_Util_PHP' => $vendorDir . '/phpunit/phpunit/src/Util/PHP.php',
303
- 'PHPUnit_Util_PHP_Default' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/Default.php',
304
- 'PHPUnit_Util_PHP_Windows' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/Windows.php',
305
- 'PHPUnit_Util_Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php',
306
- 'PHPUnit_Util_Regex' => $vendorDir . '/phpunit/phpunit/src/Util/Regex.php',
307
- 'PHPUnit_Util_String' => $vendorDir . '/phpunit/phpunit/src/Util/String.php',
308
- 'PHPUnit_Util_Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php',
309
- 'PHPUnit_Util_TestDox_NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
310
- 'PHPUnit_Util_TestDox_ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
311
- 'PHPUnit_Util_TestDox_ResultPrinter_HTML' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/HTML.php',
312
- 'PHPUnit_Util_TestDox_ResultPrinter_Text' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/Text.php',
313
- 'PHPUnit_Util_TestDox_ResultPrinter_XML' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/XML.php',
314
- 'PHPUnit_Util_TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Util/TestSuiteIterator.php',
315
- 'PHPUnit_Util_Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php',
316
- 'PHPUnit_Util_XML' => $vendorDir . '/phpunit/phpunit/src/Util/XML.php',
317
- 'PHP_CodeSniffer' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer.php',
318
- 'PHP_CodeSniffer_CLI' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/CLI.php',
319
- 'PHP_CodeSniffer_DocGenerators_Generator' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Generator.php',
320
- 'PHP_CodeSniffer_DocGenerators_HTML' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/HTML.php',
321
- 'PHP_CodeSniffer_DocGenerators_Markdown' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Markdown.php',
322
- 'PHP_CodeSniffer_DocGenerators_Text' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Text.php',
323
- 'PHP_CodeSniffer_Exception' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Exception.php',
324
- 'PHP_CodeSniffer_File' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/File.php',
325
- 'PHP_CodeSniffer_Fixer' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Fixer.php',
326
- 'PHP_CodeSniffer_Report' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Report.php',
327
- 'PHP_CodeSniffer_Reporting' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reporting.php',
328
- 'PHP_CodeSniffer_Reports_Cbf' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Cbf.php',
329
- 'PHP_CodeSniffer_Reports_Checkstyle' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Checkstyle.php',
330
- 'PHP_CodeSniffer_Reports_Csv' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Csv.php',
331
- 'PHP_CodeSniffer_Reports_Diff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Diff.php',
332
- 'PHP_CodeSniffer_Reports_Emacs' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Emacs.php',
333
- 'PHP_CodeSniffer_Reports_Full' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Full.php',
334
- 'PHP_CodeSniffer_Reports_Gitblame' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Gitblame.php',
335
- 'PHP_CodeSniffer_Reports_Hgblame' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Hgblame.php',
336
- 'PHP_CodeSniffer_Reports_Info' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Info.php',
337
- 'PHP_CodeSniffer_Reports_Json' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Json.php',
338
- 'PHP_CodeSniffer_Reports_Junit' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Junit.php',
339
- 'PHP_CodeSniffer_Reports_Notifysend' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Notifysend.php',
340
- 'PHP_CodeSniffer_Reports_Source' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Source.php',
341
- 'PHP_CodeSniffer_Reports_Summary' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Summary.php',
342
- 'PHP_CodeSniffer_Reports_Svnblame' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Svnblame.php',
343
- 'PHP_CodeSniffer_Reports_VersionControl' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/VersionControl.php',
344
- 'PHP_CodeSniffer_Reports_Xml' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Xml.php',
345
- 'PHP_CodeSniffer_Sniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Sniff.php',
346
- 'PHP_CodeSniffer_Standards_AbstractPatternSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractPatternSniff.php',
347
- 'PHP_CodeSniffer_Standards_AbstractScopeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractScopeSniff.php',
348
- 'PHP_CodeSniffer_Standards_AbstractVariableSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractVariableSniff.php',
349
- 'PHP_CodeSniffer_Standards_IncorrectPatternException' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/IncorrectPatternException.php',
350
- 'PHP_CodeSniffer_Tokenizers_CSS' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/CSS.php',
351
- 'PHP_CodeSniffer_Tokenizers_Comment' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/Comment.php',
352
- 'PHP_CodeSniffer_Tokenizers_JS' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/JS.php',
353
- 'PHP_CodeSniffer_Tokenizers_PHP' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/PHP.php',
354
- 'PHP_CodeSniffer_Tokens' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Tokens.php',
355
- 'PHP_Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php',
356
- 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
357
- 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
358
- 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
359
- 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
360
- 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
361
- 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
362
- 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
363
- 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
364
- 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
365
- 'PHP_Token_ASYNC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
366
- 'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
367
- 'PHP_Token_AWAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
368
- 'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
369
- 'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
370
- 'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
371
- 'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
372
- 'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
373
- 'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
374
- 'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
375
- 'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
376
- 'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
377
- 'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
378
- 'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
379
- 'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
380
- 'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
381
- 'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
382
- 'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
383
- 'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
384
- 'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
385
- 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
386
- 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
387
- 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
388
- 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
389
- 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
390
- 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
391
- 'PHP_Token_COMPILER_HALT_OFFSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
392
- 'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
393
- 'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
394
- 'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
395
- 'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
396
- 'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
397
- 'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
398
- 'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
399
- 'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
400
- 'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
401
- 'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
402
- 'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
403
- 'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
404
- 'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
405
- 'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
406
- 'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
407
- 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
408
- 'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
409
- 'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
410
- 'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
411
- 'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
412
- 'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
413
- 'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
414
- 'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
415
- 'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
416
- 'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
417
- 'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
418
- 'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
419
- 'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
420
- 'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
421
- 'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
422
- 'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
423
- 'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
424
- 'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
425
- 'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
426
- 'PHP_Token_ENUM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
427
- 'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
428
- 'PHP_Token_EQUALS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
429
- 'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
430
- 'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
431
- 'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
432
- 'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
433
- 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
434
- 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
435
- 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
436
- 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
437
- 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
438
- 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
439
- 'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
440
- 'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
441
- 'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
442
- 'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
443
- 'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
444
- 'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
445
- 'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
446
- 'PHP_Token_IN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
447
- 'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
448
- 'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
449
- 'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
450
- 'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
451
- 'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
452
- 'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
453
- 'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
454
- 'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
455
- 'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
456
- 'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
457
- 'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
458
- 'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
459
- 'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
460
- 'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
461
- 'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
462
- 'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
463
- 'PHP_Token_JOIN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
464
- 'PHP_Token_LAMBDA_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
465
- 'PHP_Token_LAMBDA_CP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
466
- 'PHP_Token_LAMBDA_OP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
467
- 'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
468
- 'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
469
- 'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
470
- 'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
471
- 'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
472
- 'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
473
- 'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
474
- 'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
475
- 'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
476
- 'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
477
- 'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
478
- 'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
479
- 'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
480
- 'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
481
- 'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
482
- 'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
483
- 'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
484
- 'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
485
- 'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
486
- 'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
487
- 'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
488
- 'PHP_Token_ONUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
489
- 'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
490
- 'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
491
- 'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
492
- 'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
493
- 'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
494
- 'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
495
- 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
496
- 'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
497
- 'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
498
- 'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
499
- 'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
500
- 'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
501
- 'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
502
- 'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
503
- 'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
504
- 'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
505
- 'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
506
- 'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
507
- 'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
508
- 'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
509
- 'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
510
- 'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
511
- 'PHP_Token_SHAPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
512
- 'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
513
- 'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
514
- 'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
515
- 'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
516
- 'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
517
- 'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
518
- 'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
519
- 'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
520
- 'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
521
- 'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
522
- 'PHP_Token_SUPER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
523
- 'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
524
- 'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php',
525
- 'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php',
526
- 'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
527
- 'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
528
- 'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
529
- 'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
530
- 'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
531
- 'PHP_Token_TYPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
532
- 'PHP_Token_TYPELIST_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
533
- 'PHP_Token_TYPELIST_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
534
- 'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
535
- 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
536
- 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
537
- 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
538
- 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
539
- 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
540
- 'PHP_Token_WHERE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
541
- 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
542
- 'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
543
- 'PHP_Token_XHP_ATTRIBUTE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
544
- 'PHP_Token_XHP_CATEGORY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
545
- 'PHP_Token_XHP_CATEGORY_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
546
- 'PHP_Token_XHP_CHILDREN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
547
- 'PHP_Token_XHP_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
548
- 'PHP_Token_XHP_REQUIRED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
549
- 'PHP_Token_XHP_TAG_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
550
- 'PHP_Token_XHP_TAG_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
551
- 'PHP_Token_XHP_TEXT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
552
- 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
553
- 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
554
- 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
555
- 'PSR1_Sniffs_Classes_ClassDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Classes/ClassDeclarationSniff.php',
556
- 'PSR1_Sniffs_Files_SideEffectsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Files/SideEffectsSniff.php',
557
- 'PSR1_Sniffs_Methods_CamelCapsMethodNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php',
558
- 'PSR2_Sniffs_Classes_ClassDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/ClassDeclarationSniff.php',
559
- 'PSR2_Sniffs_Classes_PropertyDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/PropertyDeclarationSniff.php',
560
- 'PSR2_Sniffs_ControlStructures_ControlStructureSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/ControlStructureSpacingSniff.php',
561
- 'PSR2_Sniffs_ControlStructures_ElseIfDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/ElseIfDeclarationSniff.php',
562
- 'PSR2_Sniffs_ControlStructures_SwitchDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/SwitchDeclarationSniff.php',
563
- 'PSR2_Sniffs_Files_ClosingTagSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php',
564
- 'PSR2_Sniffs_Files_EndFileNewlineSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/EndFileNewlineSniff.php',
565
- 'PSR2_Sniffs_Methods_FunctionCallSignatureSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionCallSignatureSniff.php',
566
- 'PSR2_Sniffs_Methods_FunctionClosingBraceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php',
567
- 'PSR2_Sniffs_Methods_MethodDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/MethodDeclarationSniff.php',
568
- 'PSR2_Sniffs_Namespaces_NamespaceDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/NamespaceDeclarationSniff.php',
569
- 'PSR2_Sniffs_Namespaces_UseDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php',
570
- 'ParseError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/ParseError.php',
571
- 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
572
- 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php',
573
- 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php',
574
- 'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/HHVM.php',
575
- 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php',
576
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php',
577
- 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php',
578
- 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php',
579
- 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
580
- 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php',
581
- 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
582
- 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php',
583
- 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php',
584
- 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php',
585
- 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php',
586
- 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php',
587
- 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
588
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
589
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
590
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
591
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
592
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
593
- 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php',
594
- 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php',
595
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
596
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
597
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
598
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
599
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
600
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
601
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
602
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
603
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
604
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
605
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
606
- 'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php',
607
- 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
608
- 'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php',
609
- 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
610
- 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php',
611
- 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php',
612
- 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php',
613
- 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php',
614
- 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php',
615
- 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php',
616
- 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php',
617
- 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php',
618
- 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php',
619
- 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php',
620
- 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php',
621
- 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php',
622
- 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php',
623
- 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php',
624
- 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php',
625
- 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
626
- 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
627
- 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
628
- 'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => $vendorDir . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php',
629
- 'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
630
- 'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
631
- 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
632
- 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
633
- 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php',
634
- 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php',
635
- 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php',
636
- 'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php',
637
- 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php',
638
- 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/Exception.php',
639
- 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php',
640
- 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/RuntimeException.php',
641
- 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php',
642
- 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php',
643
- 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php',
644
- 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
645
- 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php',
646
- 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php',
647
- 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php',
648
- 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php',
649
- 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
650
- 'SessionUpdateTimestampHandlerInterface' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',
651
- 'Squiz_Sniffs_Arrays_ArrayBracketSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayBracketSpacingSniff.php',
652
- 'Squiz_Sniffs_Arrays_ArrayDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php',
653
- 'Squiz_Sniffs_CSS_ClassDefinitionClosingBraceSpaceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionClosingBraceSpaceSniff.php',
654
- 'Squiz_Sniffs_CSS_ClassDefinitionNameSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionNameSpacingSniff.php',
655
- 'Squiz_Sniffs_CSS_ClassDefinitionOpeningBraceSpaceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionOpeningBraceSpaceSniff.php',
656
- 'Squiz_Sniffs_CSS_ColonSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ColonSpacingSniff.php',
657
- 'Squiz_Sniffs_CSS_ColourDefinitionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ColourDefinitionSniff.php',
658
- 'Squiz_Sniffs_CSS_DisallowMultipleStyleDefinitionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php',
659
- 'Squiz_Sniffs_CSS_DuplicateClassDefinitionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php',
660
- 'Squiz_Sniffs_CSS_DuplicateStyleDefinitionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DuplicateStyleDefinitionSniff.php',
661
- 'Squiz_Sniffs_CSS_EmptyClassDefinitionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php',
662
- 'Squiz_Sniffs_CSS_EmptyStyleDefinitionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php',
663
- 'Squiz_Sniffs_CSS_ForbiddenStylesSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ForbiddenStylesSniff.php',
664
- 'Squiz_Sniffs_CSS_IndentationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/IndentationSniff.php',
665
- 'Squiz_Sniffs_CSS_LowercaseStyleDefinitionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/LowercaseStyleDefinitionSniff.php',
666
- 'Squiz_Sniffs_CSS_MissingColonSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php',
667
- 'Squiz_Sniffs_CSS_NamedColoursSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php',
668
- 'Squiz_Sniffs_CSS_OpacitySniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/OpacitySniff.php',
669
- 'Squiz_Sniffs_CSS_SemicolonSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/SemicolonSpacingSniff.php',
670
- 'Squiz_Sniffs_CSS_ShorthandSizeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ShorthandSizeSniff.php',
671
- 'Squiz_Sniffs_Classes_ClassDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php',
672
- 'Squiz_Sniffs_Classes_ClassFileNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php',
673
- 'Squiz_Sniffs_Classes_DuplicatePropertySniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/DuplicatePropertySniff.php',
674
- 'Squiz_Sniffs_Classes_LowercaseClassKeywordsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php',
675
- 'Squiz_Sniffs_Classes_SelfMemberReferenceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/SelfMemberReferenceSniff.php',
676
- 'Squiz_Sniffs_Classes_ValidClassNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ValidClassNameSniff.php',
677
- 'Squiz_Sniffs_Commenting_BlockCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/BlockCommentSniff.php',
678
- 'Squiz_Sniffs_Commenting_ClassCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php',
679
- 'Squiz_Sniffs_Commenting_ClosingDeclarationCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php',
680
- 'Squiz_Sniffs_Commenting_DocCommentAlignmentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/DocCommentAlignmentSniff.php',
681
- 'Squiz_Sniffs_Commenting_EmptyCatchCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/EmptyCatchCommentSniff.php',
682
- 'Squiz_Sniffs_Commenting_FileCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php',
683
- 'Squiz_Sniffs_Commenting_FunctionCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php',
684
- 'Squiz_Sniffs_Commenting_FunctionCommentThrowTagSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FunctionCommentThrowTagSniff.php',
685
- 'Squiz_Sniffs_Commenting_InlineCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/InlineCommentSniff.php',
686
- 'Squiz_Sniffs_Commenting_LongConditionClosingCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/LongConditionClosingCommentSniff.php',
687
- 'Squiz_Sniffs_Commenting_PostStatementCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/PostStatementCommentSniff.php',
688
- 'Squiz_Sniffs_Commenting_VariableCommentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php',
689
- 'Squiz_Sniffs_ControlStructures_ControlSignatureSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ControlSignatureSniff.php',
690
- 'Squiz_Sniffs_ControlStructures_ElseIfDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php',
691
- 'Squiz_Sniffs_ControlStructures_ForEachLoopDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForEachLoopDeclarationSniff.php',
692
- 'Squiz_Sniffs_ControlStructures_ForLoopDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php',
693
- 'Squiz_Sniffs_ControlStructures_InlineIfDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/InlineIfDeclarationSniff.php',
694
- 'Squiz_Sniffs_ControlStructures_LowercaseDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php',
695
- 'Squiz_Sniffs_ControlStructures_SwitchDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/SwitchDeclarationSniff.php',
696
- 'Squiz_Sniffs_Debug_JSLintSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/JSLintSniff.php',
697
- 'Squiz_Sniffs_Debug_JavaScriptLintSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/JavaScriptLintSniff.php',
698
- 'Squiz_Sniffs_Files_FileExtensionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Files/FileExtensionSniff.php',
699
- 'Squiz_Sniffs_Formatting_OperatorBracketSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php',
700
- 'Squiz_Sniffs_Functions_FunctionDeclarationArgumentSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php',
701
- 'Squiz_Sniffs_Functions_FunctionDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationSniff.php',
702
- 'Squiz_Sniffs_Functions_FunctionDuplicateArgumentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php',
703
- 'Squiz_Sniffs_Functions_GlobalFunctionSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php',
704
- 'Squiz_Sniffs_Functions_LowercaseFunctionKeywordsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/LowercaseFunctionKeywordsSniff.php',
705
- 'Squiz_Sniffs_Functions_MultiLineFunctionDeclarationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/MultiLineFunctionDeclarationSniff.php',
706
- 'Squiz_Sniffs_NamingConventions_ValidFunctionNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ValidFunctionNameSniff.php',
707
- 'Squiz_Sniffs_NamingConventions_ValidVariableNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php',
708
- 'Squiz_Sniffs_Objects_DisallowObjectStringIndexSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php',
709
- 'Squiz_Sniffs_Objects_ObjectInstantiationSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php',
710
- 'Squiz_Sniffs_Objects_ObjectMemberCommaSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectMemberCommaSniff.php',
711
- 'Squiz_Sniffs_Operators_ComparisonOperatorUsageSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ComparisonOperatorUsageSniff.php',
712
- 'Squiz_Sniffs_Operators_IncrementDecrementUsageSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/IncrementDecrementUsageSniff.php',
713
- 'Squiz_Sniffs_Operators_ValidLogicalOperatorsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php',
714
- 'Squiz_Sniffs_PHP_CommentedOutCodeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php',
715
- 'Squiz_Sniffs_PHP_DisallowBooleanStatementSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowBooleanStatementSniff.php',
716
- 'Squiz_Sniffs_PHP_DisallowComparisonAssignmentSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowComparisonAssignmentSniff.php',
717
- 'Squiz_Sniffs_PHP_DisallowInlineIfSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php',
718
- 'Squiz_Sniffs_PHP_DisallowMultipleAssignmentsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php',
719
- 'Squiz_Sniffs_PHP_DisallowObEndFlushSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowObEndFlushSniff.php',
720
- 'Squiz_Sniffs_PHP_DisallowSizeFunctionsInLoopsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowSizeFunctionsInLoopsSniff.php',
721
- 'Squiz_Sniffs_PHP_DiscouragedFunctionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DiscouragedFunctionsSniff.php',
722
- 'Squiz_Sniffs_PHP_EmbeddedPhpSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php',
723
- 'Squiz_Sniffs_PHP_EvalSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EvalSniff.php',
724
- 'Squiz_Sniffs_PHP_ForbiddenFunctionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ForbiddenFunctionsSniff.php',
725
- 'Squiz_Sniffs_PHP_GlobalKeywordSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/GlobalKeywordSniff.php',
726
- 'Squiz_Sniffs_PHP_HeredocSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/HeredocSniff.php',
727
- 'Squiz_Sniffs_PHP_InnerFunctionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php',
728
- 'Squiz_Sniffs_PHP_LowercasePHPFunctionsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/LowercasePHPFunctionsSniff.php',
729
- 'Squiz_Sniffs_PHP_NonExecutableCodeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/NonExecutableCodeSniff.php',
730
- 'Squiz_Sniffs_Scope_MemberVarScopeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php',
731
- 'Squiz_Sniffs_Scope_MethodScopeSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php',
732
- 'Squiz_Sniffs_Scope_StaticThisUsageSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php',
733
- 'Squiz_Sniffs_Strings_ConcatenationSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/ConcatenationSpacingSniff.php',
734
- 'Squiz_Sniffs_Strings_DoubleQuoteUsageSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/DoubleQuoteUsageSniff.php',
735
- 'Squiz_Sniffs_Strings_EchoedStringsSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/EchoedStringsSniff.php',
736
- 'Squiz_Sniffs_WhiteSpace_CastSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php',
737
- 'Squiz_Sniffs_WhiteSpace_ControlStructureSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php',
738
- 'Squiz_Sniffs_WhiteSpace_FunctionClosingBraceSpaceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php',
739
- 'Squiz_Sniffs_WhiteSpace_FunctionOpeningBraceSpaceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php',
740
- 'Squiz_Sniffs_WhiteSpace_FunctionSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionSpacingSniff.php',
741
- 'Squiz_Sniffs_WhiteSpace_LanguageConstructSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php',
742
- 'Squiz_Sniffs_WhiteSpace_LogicalOperatorSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/LogicalOperatorSpacingSniff.php',
743
- 'Squiz_Sniffs_WhiteSpace_MemberVarSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php',
744
- 'Squiz_Sniffs_WhiteSpace_ObjectOperatorSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php',
745
- 'Squiz_Sniffs_WhiteSpace_OperatorSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/OperatorSpacingSniff.php',
746
- 'Squiz_Sniffs_WhiteSpace_PropertyLabelSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/PropertyLabelSpacingSniff.php',
747
- 'Squiz_Sniffs_WhiteSpace_ScopeClosingBraceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php',
748
- 'Squiz_Sniffs_WhiteSpace_ScopeKeywordSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php',
749
- 'Squiz_Sniffs_WhiteSpace_SemicolonSpacingSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php',
750
- 'Squiz_Sniffs_WhiteSpace_SuperfluousWhitespaceSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php',
751
- 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php',
752
- 'TypeError' => $vendorDir . '/symfony/polyfill-php70/Resources/stubs/TypeError.php',
753
- 'Zend_Sniffs_Debug_CodeAnalyzerSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php',
754
- 'Zend_Sniffs_Files_ClosingTagSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Files/ClosingTagSniff.php',
755
- 'Zend_Sniffs_NamingConventions_ValidVariableNameSniff' => $vendorDir . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php',
756
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
 
9
  'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
10
+ 'WPMSGoogle_AccessToken_Revoke' => $baseDir . '/src/aliases.php',
11
+ 'WPMSGoogle_AccessToken_Verify' => $baseDir . '/src/aliases.php',
12
+ 'WPMSGoogle_AuthHandler_AuthHandlerFactory' => $baseDir . '/src/aliases.php',
13
+ 'WPMSGoogle_AuthHandler_Guzzle5AuthHandler' => $baseDir . '/src/aliases.php',
14
+ 'WPMSGoogle_AuthHandler_Guzzle6AuthHandler' => $baseDir . '/src/aliases.php',
15
+ 'WPMSGoogle_AuthHandler_Guzzle7AuthHandler' => $baseDir . '/src/aliases.php',
16
+ 'WPMSGoogle_Client' => $baseDir . '/src/aliases.php',
17
+ 'WPMSGoogle_Collection' => $baseDir . '/src/aliases.php',
18
+ 'WPMSGoogle_Exception' => $baseDir . '/src/aliases.php',
19
+ 'WPMSGoogle_Http_Batch' => $baseDir . '/src/aliases.php',
20
+ 'WPMSGoogle_Http_MediaFileUpload' => $baseDir . '/src/aliases.php',
21
+ 'WPMSGoogle_Http_REST' => $baseDir . '/src/aliases.php',
22
+ 'WPMSGoogle_Model' => $baseDir . '/src/aliases.php',
23
+ 'WPMSGoogle_Service' => $baseDir . '/src/aliases.php',
24
+ 'WPMSGoogle_Service_Exception' => $baseDir . '/src/aliases.php',
25
+ 'WPMSGoogle_Service_Resource' => $baseDir . '/src/aliases.php',
26
+ 'WPMSGoogle_Task_Composer' => $baseDir . '/src/aliases.php',
27
+ 'WPMSGoogle_Task_Exception' => $baseDir . '/src/aliases.php',
28
+ 'WPMSGoogle_Task_Retryable' => $baseDir . '/src/aliases.php',
29
+ 'WPMSGoogle_Task_Runner' => $baseDir . '/src/aliases.php',
30
+ 'WPMSGoogle_Utils_UriTemplate' => $baseDir . '/src/aliases.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  );
inc/lib/google-api/vendor/composer/autoload_files.php CHANGED
@@ -6,18 +6,12 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
10
- '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
11
  '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
12
- '5255c38a0faeba867671b61dfda6d864' => $vendorDir . '/paragonie/random_compat/lib/random.php',
13
- 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
14
- '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
15
- '023d27dca8066ef29e6739335ea73bad' => $vendorDir . '/symfony/polyfill-php70/bootstrap.php',
16
- 'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
17
  'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
18
- 'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
 
19
  '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
20
  'decc78cc4436b1292c6c0d151b19445c' => $vendorDir . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
21
- '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
22
  'a8d3953fd9959404dd22d3dfcd0a79f0' => $baseDir . '/src/aliases.php',
23
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
 
9
  '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
 
 
 
 
 
10
  'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
11
+ 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php',
12
+ '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
13
  '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
14
  'decc78cc4436b1292c6c0d151b19445c' => $vendorDir . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
15
+ '1f87db08236948d07391152dccb70f04' => $vendorDir . '/google/apiclient-services/autoload.php',
16
  'a8d3953fd9959404dd22d3dfcd0a79f0' => $baseDir . '/src/aliases.php',
17
  );
inc/lib/google-api/vendor/composer/autoload_namespaces.php CHANGED
@@ -6,5 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'Google_Service_' => array($vendorDir . '/google/apiclient-services/src'),
10
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'WPMSGoogle_Service_' => array($vendorDir . '/google/apiclient-services/src'),
10
  );
inc/lib/google-api/vendor/composer/autoload_psr4.php CHANGED
@@ -6,47 +6,18 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'phpseclib\\' => array($vendorDir . '/phpseclib/phpseclib/phpseclib'),
10
- 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'),
11
- 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
12
- 'Symfony\\Polyfill\\Php72\\' => array($vendorDir . '/symfony/polyfill-php72'),
13
- 'Symfony\\Polyfill\\Php70\\' => array($vendorDir . '/symfony/polyfill-php70'),
14
- 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
15
- 'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
16
- 'Symfony\\Polyfill\\Intl\\Idn\\' => array($vendorDir . '/symfony/polyfill-intl-idn'),
17
- 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
18
- 'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'),
19
- 'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
20
- 'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
21
- 'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
22
- 'Symfony\\Component\\DomCrawler\\' => array($vendorDir . '/symfony/dom-crawler'),
23
- 'Symfony\\Component\\Debug\\' => array($vendorDir . '/symfony/debug'),
24
- 'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'),
25
- 'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
26
- 'Seld\\PharUtils\\' => array($vendorDir . '/seld/phar-utils/src'),
27
- 'Seld\\JsonLint\\' => array($vendorDir . '/seld/jsonlint/src/Seld/JsonLint'),
28
  'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
29
  'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
 
30
  'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
31
- 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'),
32
  'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
33
- 'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'),
34
- 'JsonSchema\\' => array($vendorDir . '/justinrainbow/json-schema/src/JsonSchema'),
35
  'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
36
  'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
37
  'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
38
- 'WPMSGoogle\\Auth\\' => array($vendorDir . '/google/auth/src'),
39
- 'WPMSGoogle\\' => array($baseDir . '/src'),
40
  'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
41
- 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'),
42
- 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
43
- 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => array($vendorDir . '/dealerdirect/phpcodesniffer-composer-installer/src'),
44
- 'Composer\\XdebugHandler\\' => array($vendorDir . '/composer/xdebug-handler/src'),
45
- 'Composer\\Spdx\\' => array($vendorDir . '/composer/spdx-licenses/src'),
46
- 'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
47
- 'Composer\\CaBundle\\' => array($vendorDir . '/composer/ca-bundle/src'),
48
- 'Composer\\' => array($vendorDir . '/composer/composer/src/Composer'),
49
- 'Cache\\Taggable\\' => array($vendorDir . '/cache/taggable-cache'),
50
- 'Cache\\Adapter\\Filesystem\\' => array($vendorDir . '/cache/filesystem-adapter'),
51
- 'Cache\\Adapter\\Common\\' => array($vendorDir . '/cache/adapter-common'),
52
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'phpseclib3\\' => array($vendorDir . '/phpseclib/phpseclib/phpseclib'),
10
+ 'WPMSGoogle\\Service\\' => array($vendorDir . '/google/apiclient-services/src'),
11
+ 'WPMSGoogle\\Auth\\' => array($vendorDir . '/google/auth/src'),
12
+ 'WPMSGoogle\\' => array($baseDir . '/src'),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
14
  'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'),
15
+ 'Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
16
  'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
17
+ 'ParagonIE\\ConstantTime\\' => array($vendorDir . '/paragonie/constant_time_encoding/src'),
18
  'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
 
 
19
  'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'),
20
  'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'),
21
  'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'),
 
 
22
  'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'),
 
 
 
 
 
 
 
 
 
 
 
23
  );
inc/lib/google-api/vendor/composer/autoload_real.php CHANGED
@@ -8,13 +8,13 @@ class ComposerAutoloaderInite32d44369114c2552a34a407755811ab
8
 
9
  public static function loadClassLoader($class)
10
  {
11
- if ('Composer\Autoload\WpmsClassLoader' === $class) {
12
  require __DIR__ . '/ClassLoader.php';
13
  }
14
  }
15
 
16
  /**
17
- * @return \Composer\Autoload\WpmsClassLoader
18
  */
19
  public static function getLoader()
20
  {
@@ -25,7 +25,7 @@ class ComposerAutoloaderInite32d44369114c2552a34a407755811ab
25
  require __DIR__ . '/platform_check.php';
26
 
27
  spl_autoload_register(array('ComposerAutoloaderInite32d44369114c2552a34a407755811ab', 'loadClassLoader'), true, true);
28
- self::$loader = $loader = new \Composer\Autoload\WpmsClassLoader(\dirname(\dirname(__FILE__)));
29
  spl_autoload_unregister(array('ComposerAutoloaderInite32d44369114c2552a34a407755811ab', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
8
 
9
  public static function loadClassLoader($class)
10
  {
11
+ if ('Composer\Autoload\ClassLoader' === $class) {
12
  require __DIR__ . '/ClassLoader.php';
13
  }
14
  }
15
 
16
  /**
17
+ * @return \Composer\Autoload\ClassLoader
18
  */
19
  public static function getLoader()
20
  {
25
  require __DIR__ . '/platform_check.php';
26
 
27
  spl_autoload_register(array('ComposerAutoloaderInite32d44369114c2552a34a407755811ab', 'loadClassLoader'), true, true);
28
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
  spl_autoload_unregister(array('ComposerAutoloaderInite32d44369114c2552a34a407755811ab', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
inc/lib/google-api/vendor/composer/autoload_static.php CHANGED
@@ -7,179 +7,67 @@ namespace Composer\Autoload;
7
  class ComposerStaticInite32d44369114c2552a34a407755811ab
8
  {
9
  public static $files = array (
10
- '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
11
- '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
12
  '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
13
- '5255c38a0faeba867671b61dfda6d864' => __DIR__ . '/..' . '/paragonie/random_compat/lib/random.php',
14
- 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
15
- '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
16
- '023d27dca8066ef29e6739335ea73bad' => __DIR__ . '/..' . '/symfony/polyfill-php70/bootstrap.php',
17
- 'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
18
  'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
19
- 'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
 
20
  '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
21
  'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
22
- '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
23
  'a8d3953fd9959404dd22d3dfcd0a79f0' => __DIR__ . '/../..' . '/src/aliases.php',
24
  );
25
 
26
  public static $prefixLengthsPsr4 = array (
27
  'p' =>
28
  array (
29
- 'phpseclib\\' => 10,
30
- 'phpDocumentor\\Reflection\\' => 25,
31
  ),
32
  'W' =>
33
  array (
34
- 'Webmozart\\Assert\\' => 17,
35
- ),
36
- 'S' =>
37
- array (
38
- 'Symfony\\Polyfill\\Php72\\' => 23,
39
- 'Symfony\\Polyfill\\Php70\\' => 23,
40
- 'Symfony\\Polyfill\\Mbstring\\' => 26,
41
- 'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
42
- 'Symfony\\Polyfill\\Intl\\Idn\\' => 26,
43
- 'Symfony\\Polyfill\\Ctype\\' => 23,
44
- 'Symfony\\Component\\Yaml\\' => 23,
45
- 'Symfony\\Component\\Process\\' => 26,
46
- 'Symfony\\Component\\Finder\\' => 25,
47
- 'Symfony\\Component\\Filesystem\\' => 29,
48
- 'Symfony\\Component\\DomCrawler\\' => 29,
49
- 'Symfony\\Component\\Debug\\' => 24,
50
- 'Symfony\\Component\\CssSelector\\' => 30,
51
- 'Symfony\\Component\\Console\\' => 26,
52
- 'Seld\\PharUtils\\' => 15,
53
- 'Seld\\JsonLint\\' => 14,
54
  ),
55
  'P' =>
56
  array (
57
  'Psr\\Log\\' => 8,
58
  'Psr\\Http\\Message\\' => 17,
 
59
  'Psr\\Cache\\' => 10,
60
- 'Prophecy\\' => 9,
61
  ),
62
  'M' =>
63
  array (
64
  'Monolog\\' => 8,
65
  ),
66
- 'L' =>
67
- array (
68
- 'League\\Flysystem\\' => 17,
69
- ),
70
- 'J' =>
71
- array (
72
- 'JsonSchema\\' => 11,
73
- ),
74
  'G' =>
75
  array (
76
  'GuzzleHttp\\Psr7\\' => 16,
77
  'GuzzleHttp\\Promise\\' => 19,
78
  'GuzzleHttp\\' => 11,
79
- 'WPMSGoogle\\Auth\\' => 12,
80
- 'WPMSGoogle\\' => 7,
81
  ),
82
  'F' =>
83
  array (
84
  'Firebase\\JWT\\' => 13,
85
  ),
86
- 'D' =>
87
- array (
88
- 'Doctrine\\Instantiator\\' => 22,
89
- 'DeepCopy\\' => 9,
90
- 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' => 55,
91
- ),
92
- 'C' =>
93
- array (
94
- 'Composer\\XdebugHandler\\' => 23,
95
- 'Composer\\Spdx\\' => 14,
96
- 'Composer\\Semver\\' => 16,
97
- 'Composer\\CaBundle\\' => 18,
98
- 'Composer\\' => 9,
99
- 'Cache\\Taggable\\' => 15,
100
- 'Cache\\Adapter\\Filesystem\\' => 25,
101
- 'Cache\\Adapter\\Common\\' => 21,
102
- ),
103
  );
104
 
105
  public static $prefixDirsPsr4 = array (
106
- 'phpseclib\\' =>
107
  array (
108
  0 => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib',
109
  ),
110
- 'phpDocumentor\\Reflection\\' =>
111
- array (
112
- 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src',
113
- 1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
114
- 2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
115
- ),
116
- 'Webmozart\\Assert\\' =>
117
- array (
118
- 0 => __DIR__ . '/..' . '/webmozart/assert/src',
119
- ),
120
- 'Symfony\\Polyfill\\Php72\\' =>
121
- array (
122
- 0 => __DIR__ . '/..' . '/symfony/polyfill-php72',
123
- ),
124
- 'Symfony\\Polyfill\\Php70\\' =>
125
- array (
126
- 0 => __DIR__ . '/..' . '/symfony/polyfill-php70',
127
- ),
128
- 'Symfony\\Polyfill\\Mbstring\\' =>
129
- array (
130
- 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
131
- ),
132
- 'Symfony\\Polyfill\\Intl\\Normalizer\\' =>
133
- array (
134
- 0 => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer',
135
- ),
136
- 'Symfony\\Polyfill\\Intl\\Idn\\' =>
137
- array (
138
- 0 => __DIR__ . '/..' . '/symfony/polyfill-intl-idn',
139
- ),
140
- 'Symfony\\Polyfill\\Ctype\\' =>
141
- array (
142
- 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
143
- ),
144
- 'Symfony\\Component\\Yaml\\' =>
145
- array (
146
- 0 => __DIR__ . '/..' . '/symfony/yaml',
147
- ),
148
- 'Symfony\\Component\\Process\\' =>
149
- array (
150
- 0 => __DIR__ . '/..' . '/symfony/process',
151
- ),
152
- 'Symfony\\Component\\Finder\\' =>
153
- array (
154
- 0 => __DIR__ . '/..' . '/symfony/finder',
155
- ),
156
- 'Symfony\\Component\\Filesystem\\' =>
157
- array (
158
- 0 => __DIR__ . '/..' . '/symfony/filesystem',
159
- ),
160
- 'Symfony\\Component\\DomCrawler\\' =>
161
- array (
162
- 0 => __DIR__ . '/..' . '/symfony/dom-crawler',
163
- ),
164
- 'Symfony\\Component\\Debug\\' =>
165
- array (
166
- 0 => __DIR__ . '/..' . '/symfony/debug',
167
- ),
168
- 'Symfony\\Component\\CssSelector\\' =>
169
- array (
170
- 0 => __DIR__ . '/..' . '/symfony/css-selector',
171
- ),
172
- 'Symfony\\Component\\Console\\' =>
173
  array (
174
- 0 => __DIR__ . '/..' . '/symfony/console',
175
  ),
176
- 'Seld\\PharUtils\\' =>
177
  array (
178
- 0 => __DIR__ . '/..' . '/seld/phar-utils/src',
179
  ),
180
- 'Seld\\JsonLint\\' =>
181
  array (
182
- 0 => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint',
183
  ),
184
  'Psr\\Log\\' =>
185
  array (
@@ -189,26 +77,22 @@ class ComposerStaticInite32d44369114c2552a34a407755811ab
189
  array (
190
  0 => __DIR__ . '/..' . '/psr/http-message/src',
191
  ),
 
 
 
 
192
  'Psr\\Cache\\' =>
193
  array (
194
  0 => __DIR__ . '/..' . '/psr/cache/src',
195
  ),
196
- 'Prophecy\\' =>
197
  array (
198
- 0 => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy',
199
  ),
200
  'Monolog\\' =>
201
  array (
202
  0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
203
  ),
204
- 'League\\Flysystem\\' =>
205
- array (
206
- 0 => __DIR__ . '/..' . '/league/flysystem/src',
207
- ),
208
- 'JsonSchema\\' =>
209
- array (
210
- 0 => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema',
211
- ),
212
  'GuzzleHttp\\Psr7\\' =>
213
  array (
214
  0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
@@ -221,832 +105,45 @@ class ComposerStaticInite32d44369114c2552a34a407755811ab
221
  array (
222
  0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
223
  ),
224
- 'WPMSGoogle\\Auth\\' =>
225
- array (
226
- 0 => __DIR__ . '/..' . '/google/auth/src',
227
- ),
228
- 'WPMSGoogle\\' =>
229
- array (
230
- 0 => __DIR__ . '/../..' . '/src',
231
- ),
232
  'Firebase\\JWT\\' =>
233
  array (
234
  0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
235
  ),
236
- 'Doctrine\\Instantiator\\' =>
237
- array (
238
- 0 => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator',
239
- ),
240
- 'DeepCopy\\' =>
241
- array (
242
- 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy',
243
- ),
244
- 'Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\' =>
245
- array (
246
- 0 => __DIR__ . '/..' . '/dealerdirect/phpcodesniffer-composer-installer/src',
247
- ),
248
- 'Composer\\XdebugHandler\\' =>
249
- array (
250
- 0 => __DIR__ . '/..' . '/composer/xdebug-handler/src',
251
- ),
252
- 'Composer\\Spdx\\' =>
253
- array (
254
- 0 => __DIR__ . '/..' . '/composer/spdx-licenses/src',
255
- ),
256
- 'Composer\\Semver\\' =>
257
- array (
258
- 0 => __DIR__ . '/..' . '/composer/semver/src',
259
- ),
260
- 'Composer\\CaBundle\\' =>
261
- array (
262
- 0 => __DIR__ . '/..' . '/composer/ca-bundle/src',
263
- ),
264
- 'Composer\\' =>
265
- array (
266
- 0 => __DIR__ . '/..' . '/composer/composer/src/Composer',
267
- ),
268
- 'Cache\\Taggable\\' =>
269
- array (
270
- 0 => __DIR__ . '/..' . '/cache/taggable-cache',
271
- ),
272
- 'Cache\\Adapter\\Filesystem\\' =>
273
- array (
274
- 0 => __DIR__ . '/..' . '/cache/filesystem-adapter',
275
- ),
276
- 'Cache\\Adapter\\Common\\' =>
277
- array (
278
- 0 => __DIR__ . '/..' . '/cache/adapter-common',
279
- ),
280
- );
281
-
282
- public static $prefixesPsr0 = array (
283
- 'G' =>
284
- array (
285
- 'Google_Service_' =>
286
- array (
287
- 0 => __DIR__ . '/..' . '/google/apiclient-services/src',
288
- ),
289
- ),
290
  );
291
 
292
  public static $classMap = array (
293
- 'ArithmeticError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php',
294
- 'AssertionError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/AssertionError.php',
295
  'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
296
- 'DivisionByZeroError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php',
297
- 'Error' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/Error.php',
298
- 'File_Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php',
299
- 'File_Iterator_Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php',
300
- 'File_Iterator_Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php',
301
- 'Generic_Sniffs_Arrays_DisallowLongArraySyntaxSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php',
302
- 'Generic_Sniffs_Arrays_DisallowShortArraySyntaxSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php',
303
- 'Generic_Sniffs_Classes_DuplicateClassNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php',
304
- 'Generic_Sniffs_Classes_OpeningBraceSameLineSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php',
305
- 'Generic_Sniffs_CodeAnalysis_EmptyStatementSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php',
306
- 'Generic_Sniffs_CodeAnalysis_ForLoopShouldBeWhileLoopSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php',
307
- 'Generic_Sniffs_CodeAnalysis_ForLoopWithTestFunctionCallSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php',
308
- 'Generic_Sniffs_CodeAnalysis_JumbledIncrementerSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php',
309
- 'Generic_Sniffs_CodeAnalysis_UnconditionalIfStatementSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php',
310
- 'Generic_Sniffs_CodeAnalysis_UnnecessaryFinalModifierSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php',
311
- 'Generic_Sniffs_CodeAnalysis_UnusedFunctionParameterSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php',
312
- 'Generic_Sniffs_CodeAnalysis_UselessOverridingMethodSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php',
313
- 'Generic_Sniffs_Commenting_DocCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php',
314
- 'Generic_Sniffs_Commenting_FixmeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/FixmeSniff.php',
315
- 'Generic_Sniffs_Commenting_TodoSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Commenting/TodoSniff.php',
316
- 'Generic_Sniffs_ControlStructures_InlineControlStructureSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php',
317
- 'Generic_Sniffs_Debug_CSSLintSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/CSSLintSniff.php',
318
- 'Generic_Sniffs_Debug_ClosureLinterSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php',
319
- 'Generic_Sniffs_Debug_ESLintSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/ESLintSniff.php',
320
- 'Generic_Sniffs_Debug_JSHintSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Debug/JSHintSniff.php',
321
- 'Generic_Sniffs_Files_ByteOrderMarkSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php',
322
- 'Generic_Sniffs_Files_EndFileNewlineSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php',
323
- 'Generic_Sniffs_Files_EndFileNoNewlineSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php',
324
- 'Generic_Sniffs_Files_InlineHTMLSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php',
325
- 'Generic_Sniffs_Files_LineEndingsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LineEndingsSniff.php',
326
- 'Generic_Sniffs_Files_LineLengthSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LineLengthSniff.php',
327
- 'Generic_Sniffs_Files_LowercasedFilenameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php',
328
- 'Generic_Sniffs_Files_OneClassPerFileSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php',
329
- 'Generic_Sniffs_Files_OneInterfacePerFileSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php',
330
- 'Generic_Sniffs_Files_OneTraitPerFileSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php',
331
- 'Generic_Sniffs_Formatting_DisallowMultipleStatementsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php',
332
- 'Generic_Sniffs_Formatting_MultipleStatementAlignmentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php',
333
- 'Generic_Sniffs_Formatting_NoSpaceAfterCastSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php',
334
- 'Generic_Sniffs_Formatting_SpaceAfterCastSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php',
335
- 'Generic_Sniffs_Formatting_SpaceAfterNotSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php',
336
- 'Generic_Sniffs_Functions_CallTimePassByReferenceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php',
337
- 'Generic_Sniffs_Functions_FunctionCallArgumentSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php',
338
- 'Generic_Sniffs_Functions_OpeningFunctionBraceBsdAllmanSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php',
339
- 'Generic_Sniffs_Functions_OpeningFunctionBraceKernighanRitchieSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php',
340
- 'Generic_Sniffs_Metrics_CyclomaticComplexitySniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php',
341
- 'Generic_Sniffs_Metrics_NestingLevelSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php',
342
- 'Generic_Sniffs_NamingConventions_CamelCapsFunctionNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php',
343
- 'Generic_Sniffs_NamingConventions_ConstructorNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php',
344
- 'Generic_Sniffs_NamingConventions_UpperCaseConstantNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php',
345
- 'Generic_Sniffs_PHP_BacktickOperatorSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php',
346
- 'Generic_Sniffs_PHP_CharacterBeforePHPOpeningTagSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php',
347
- 'Generic_Sniffs_PHP_ClosingPHPTagSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php',
348
- 'Generic_Sniffs_PHP_DeprecatedFunctionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php',
349
- 'Generic_Sniffs_PHP_DisallowAlternativePHPTagsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php',
350
- 'Generic_Sniffs_PHP_DisallowShortOpenTagSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php',
351
- 'Generic_Sniffs_PHP_ForbiddenFunctionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php',
352
- 'Generic_Sniffs_PHP_LowerCaseConstantSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php',
353
- 'Generic_Sniffs_PHP_LowerCaseKeywordSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php',
354
- 'Generic_Sniffs_PHP_NoSilencedErrorsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php',
355
- 'Generic_Sniffs_PHP_SAPIUsageSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php',
356
- 'Generic_Sniffs_PHP_SyntaxSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/SyntaxSniff.php',
357
- 'Generic_Sniffs_PHP_UpperCaseConstantSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php',
358
- 'Generic_Sniffs_Strings_UnnecessaryStringConcatSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php',
359
- 'Generic_Sniffs_VersionControl_SubversionPropertiesSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php',
360
- 'Generic_Sniffs_WhiteSpace_DisallowSpaceIndentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php',
361
- 'Generic_Sniffs_WhiteSpace_DisallowTabIndentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php',
362
- 'Generic_Sniffs_WhiteSpace_ScopeIndentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php',
363
- 'Google_AccessToken_Revoke' => __DIR__ . '/../..' . '/src/aliases.php',
364
- 'Google_AccessToken_Verify' => __DIR__ . '/../..' . '/src/aliases.php',
365
- 'Google_AuthHandler_AuthHandlerFactory' => __DIR__ . '/../..' . '/src/aliases.php',
366
- 'Google_AuthHandler_Guzzle5AuthHandler' => __DIR__ . '/../..' . '/src/aliases.php',
367
- 'Google_AuthHandler_Guzzle6AuthHandler' => __DIR__ . '/../..' . '/src/aliases.php',
368
- 'Google_AuthHandler_Guzzle7AuthHandler' => __DIR__ . '/../..' . '/src/aliases.php',
369
- 'Google_Client' => __DIR__ . '/../..' . '/src/aliases.php',
370
- 'Google_Collection' => __DIR__ . '/../..' . '/src/aliases.php',
371
- 'Google_Exception' => __DIR__ . '/../..' . '/src/aliases.php',
372
- 'Google_Http_Batch' => __DIR__ . '/../..' . '/src/aliases.php',
373
- 'Google_Http_MediaFileUpload' => __DIR__ . '/../..' . '/src/aliases.php',
374
- 'Google_Http_REST' => __DIR__ . '/../..' . '/src/aliases.php',
375
- 'Google_Model' => __DIR__ . '/../..' . '/src/aliases.php',
376
- 'Google_Service' => __DIR__ . '/../..' . '/src/aliases.php',
377
- 'Google_Service_Exception' => __DIR__ . '/../..' . '/src/aliases.php',
378
- 'Google_Service_Resource' => __DIR__ . '/../..' . '/src/aliases.php',
379
- 'Google_Task_Composer' => __DIR__ . '/../..' . '/src/aliases.php',
380
- 'Google_Task_Exception' => __DIR__ . '/../..' . '/src/aliases.php',
381
- 'Google_Task_Retryable' => __DIR__ . '/../..' . '/src/aliases.php',
382
- 'Google_Task_Runner' => __DIR__ . '/../..' . '/src/aliases.php',
383
- 'Google_Utils_UriTemplate' => __DIR__ . '/../..' . '/src/aliases.php',
384
- 'MySource_Sniffs_CSS_BrowserSpecificStylesSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php',
385
- 'MySource_Sniffs_Channels_DisallowSelfActionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/DisallowSelfActionsSniff.php',
386
- 'MySource_Sniffs_Channels_IncludeOwnSystemSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/IncludeOwnSystemSniff.php',
387
- 'MySource_Sniffs_Channels_IncludeSystemSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php',
388
- 'MySource_Sniffs_Channels_UnusedSystemSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php',
389
- 'MySource_Sniffs_Commenting_FunctionCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Commenting/FunctionCommentSniff.php',
390
- 'MySource_Sniffs_Debug_DebugCodeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/DebugCodeSniff.php',
391
- 'MySource_Sniffs_Debug_FirebugConsoleSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php',
392
- 'MySource_Sniffs_Objects_AssignThisSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/AssignThisSniff.php',
393
- 'MySource_Sniffs_Objects_CreateWidgetTypeCallbackSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/CreateWidgetTypeCallbackSniff.php',
394
- 'MySource_Sniffs_Objects_DisallowNewWidgetSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php',
395
- 'MySource_Sniffs_PHP_AjaxNullComparisonSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php',
396
- 'MySource_Sniffs_PHP_EvalObjectFactorySniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php',
397
- 'MySource_Sniffs_PHP_GetRequestDataSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/GetRequestDataSniff.php',
398
- 'MySource_Sniffs_PHP_ReturnFunctionValueSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php',
399
- 'MySource_Sniffs_Strings_JoinStringsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php',
400
- 'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
401
- 'PEAR_Sniffs_Classes_ClassDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Classes/ClassDeclarationSniff.php',
402
- 'PEAR_Sniffs_Commenting_ClassCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php',
403
- 'PEAR_Sniffs_Commenting_FileCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/FileCommentSniff.php',
404
- 'PEAR_Sniffs_Commenting_FunctionCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php',
405
- 'PEAR_Sniffs_Commenting_InlineCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/InlineCommentSniff.php',
406
- 'PEAR_Sniffs_ControlStructures_ControlSignatureSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/ControlSignatureSniff.php',
407
- 'PEAR_Sniffs_ControlStructures_MultiLineConditionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php',
408
- 'PEAR_Sniffs_Files_IncludingFileSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Files/IncludingFileSniff.php',
409
- 'PEAR_Sniffs_Formatting_MultiLineAssignmentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php',
410
- 'PEAR_Sniffs_Functions_FunctionCallSignatureSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionCallSignatureSniff.php',
411
- 'PEAR_Sniffs_Functions_FunctionDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php',
412
- 'PEAR_Sniffs_Functions_ValidDefaultValueSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php',
413
- 'PEAR_Sniffs_NamingConventions_ValidClassNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidClassNameSniff.php',
414
- 'PEAR_Sniffs_NamingConventions_ValidFunctionNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php',
415
- 'PEAR_Sniffs_NamingConventions_ValidVariableNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ValidVariableNameSniff.php',
416
- 'PEAR_Sniffs_WhiteSpace_ObjectOperatorIndentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php',
417
- 'PEAR_Sniffs_WhiteSpace_ScopeClosingBraceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php',
418
- 'PEAR_Sniffs_WhiteSpace_ScopeIndentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php',
419
- 'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/Assert.php',
420
- 'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/AssertionFailedError.php',
421
- 'PHPUnit\\Framework\\BaseTestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/BaseTestListener.php',
422
- 'PHPUnit\\Framework\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/Test.php',
423
- 'PHPUnit\\Framework\\TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/TestCase.php',
424
- 'PHPUnit\\Framework\\TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/TestListener.php',
425
- 'PHPUnit\\Framework\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/ForwardCompatibility/TestSuite.php',
426
- 'PHPUnit_Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php',
427
- 'PHPUnit_Extensions_GroupTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Extensions/GroupTestSuite.php',
428
- 'PHPUnit_Extensions_PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Extensions/PhptTestCase.php',
429
- 'PHPUnit_Extensions_PhptTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Extensions/PhptTestSuite.php',
430
- 'PHPUnit_Extensions_RepeatedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Extensions/RepeatedTest.php',
431
- 'PHPUnit_Extensions_TestDecorator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Extensions/TestDecorator.php',
432
- 'PHPUnit_Extensions_TicketListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Extensions/TicketListener.php',
433
- 'PHPUnit_Framework_Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php',
434
- 'PHPUnit_Framework_AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/AssertionFailedError.php',
435
- 'PHPUnit_Framework_BaseTestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/BaseTestListener.php',
436
- 'PHPUnit_Framework_CodeCoverageException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CodeCoverageException.php',
437
- 'PHPUnit_Framework_Constraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint.php',
438
- 'PHPUnit_Framework_Constraint_And' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/And.php',
439
- 'PHPUnit_Framework_Constraint_ArrayHasKey' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php',
440
- 'PHPUnit_Framework_Constraint_ArraySubset' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php',
441
- 'PHPUnit_Framework_Constraint_Attribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php',
442
- 'PHPUnit_Framework_Constraint_Callback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
443
- 'PHPUnit_Framework_Constraint_ClassHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php',
444
- 'PHPUnit_Framework_Constraint_ClassHasStaticAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php',
445
- 'PHPUnit_Framework_Constraint_Composite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Composite.php',
446
- 'PHPUnit_Framework_Constraint_Count' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Count.php',
447
- 'PHPUnit_Framework_Constraint_DirectoryExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php',
448
- 'PHPUnit_Framework_Constraint_Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception.php',
449
- 'PHPUnit_Framework_Constraint_ExceptionCode' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php',
450
- 'PHPUnit_Framework_Constraint_ExceptionMessage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php',
451
- 'PHPUnit_Framework_Constraint_ExceptionMessageRegExp' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegExp.php',
452
- 'PHPUnit_Framework_Constraint_FileExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php',
453
- 'PHPUnit_Framework_Constraint_GreaterThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php',
454
- 'PHPUnit_Framework_Constraint_IsAnything' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
455
- 'PHPUnit_Framework_Constraint_IsEmpty' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php',
456
- 'PHPUnit_Framework_Constraint_IsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php',
457
- 'PHPUnit_Framework_Constraint_IsFalse' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php',
458
- 'PHPUnit_Framework_Constraint_IsFinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php',
459
- 'PHPUnit_Framework_Constraint_IsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
460
- 'PHPUnit_Framework_Constraint_IsInfinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php',
461
- 'PHPUnit_Framework_Constraint_IsInstanceOf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php',
462
- 'PHPUnit_Framework_Constraint_IsJson' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php',
463
- 'PHPUnit_Framework_Constraint_IsNan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php',
464
- 'PHPUnit_Framework_Constraint_IsNull' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php',
465
- 'PHPUnit_Framework_Constraint_IsReadable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php',
466
- 'PHPUnit_Framework_Constraint_IsTrue' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php',
467
- 'PHPUnit_Framework_Constraint_IsType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsType.php',
468
- 'PHPUnit_Framework_Constraint_IsWritable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php',
469
- 'PHPUnit_Framework_Constraint_JsonMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
470
- 'PHPUnit_Framework_Constraint_JsonMatches_ErrorMessageProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches/ErrorMessageProvider.php',
471
- 'PHPUnit_Framework_Constraint_LessThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php',
472
- 'PHPUnit_Framework_Constraint_Not' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Not.php',
473
- 'PHPUnit_Framework_Constraint_ObjectHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php',
474
- 'PHPUnit_Framework_Constraint_Or' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Or.php',
475
- 'PHPUnit_Framework_Constraint_PCREMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/PCREMatch.php',
476
- 'PHPUnit_Framework_Constraint_SameSize' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php',
477
- 'PHPUnit_Framework_Constraint_StringContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php',
478
- 'PHPUnit_Framework_Constraint_StringEndsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php',
479
- 'PHPUnit_Framework_Constraint_StringMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringMatches.php',
480
- 'PHPUnit_Framework_Constraint_StringStartsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php',
481
- 'PHPUnit_Framework_Constraint_TraversableContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php',
482
- 'PHPUnit_Framework_Constraint_TraversableContainsOnly' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php',
483
- 'PHPUnit_Framework_Constraint_Xor' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Xor.php',
484
- 'PHPUnit_Framework_CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php',
485
- 'PHPUnit_Framework_Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error.php',
486
- 'PHPUnit_Framework_Error_Deprecated' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
487
- 'PHPUnit_Framework_Error_Notice' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Notice.php',
488
- 'PHPUnit_Framework_Error_Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Warning.php',
489
- 'PHPUnit_Framework_Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception.php',
490
- 'PHPUnit_Framework_ExceptionWrapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
491
- 'PHPUnit_Framework_ExpectationFailedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php',
492
- 'PHPUnit_Framework_IncompleteTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
493
- 'PHPUnit_Framework_IncompleteTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
494
- 'PHPUnit_Framework_IncompleteTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestError.php',
495
- 'PHPUnit_Framework_InvalidCoversTargetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php',
496
- 'PHPUnit_Framework_MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php',
497
- 'PHPUnit_Framework_MockObject_BadMethodCallException' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/BadMethodCallException.php',
498
- 'PHPUnit_Framework_MockObject_Builder_Identity' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Identity.php',
499
- 'PHPUnit_Framework_MockObject_Builder_InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/InvocationMocker.php',
500
- 'PHPUnit_Framework_MockObject_Builder_Match' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Match.php',
501
- 'PHPUnit_Framework_MockObject_Builder_MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/MethodNameMatch.php',
502
- 'PHPUnit_Framework_MockObject_Builder_Namespace' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Namespace.php',
503
- 'PHPUnit_Framework_MockObject_Builder_ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ParametersMatch.php',
504
- 'PHPUnit_Framework_MockObject_Builder_Stub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Stub.php',
505
- 'PHPUnit_Framework_MockObject_Exception' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/Exception.php',
506
- 'PHPUnit_Framework_MockObject_Generator' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator.php',
507
- 'PHPUnit_Framework_MockObject_Invocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation.php',
508
- 'PHPUnit_Framework_MockObject_InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/InvocationMocker.php',
509
- 'PHPUnit_Framework_MockObject_Invocation_Object' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Object.php',
510
- 'PHPUnit_Framework_MockObject_Invocation_Static' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Static.php',
511
- 'PHPUnit_Framework_MockObject_Invokable' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invokable.php',
512
- 'PHPUnit_Framework_MockObject_Matcher' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher.php',
513
- 'PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php',
514
- 'PHPUnit_Framework_MockObject_Matcher_AnyParameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyParameters.php',
515
- 'PHPUnit_Framework_MockObject_Matcher_ConsecutiveParameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ConsecutiveParameters.php',
516
- 'PHPUnit_Framework_MockObject_Matcher_Invocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Invocation.php',
517
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtIndex.php',
518
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php',
519
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastOnce' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php',
520
- 'PHPUnit_Framework_MockObject_Matcher_InvokedAtMostCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtMostCount.php',
521
- 'PHPUnit_Framework_MockObject_Matcher_InvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedCount.php',
522
- 'PHPUnit_Framework_MockObject_Matcher_InvokedRecorder' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedRecorder.php',
523
- 'PHPUnit_Framework_MockObject_Matcher_MethodName' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/MethodName.php',
524
- 'PHPUnit_Framework_MockObject_Matcher_Parameters' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Parameters.php',
525
- 'PHPUnit_Framework_MockObject_Matcher_StatelessInvocation' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/StatelessInvocation.php',
526
- 'PHPUnit_Framework_MockObject_MockBuilder' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockBuilder.php',
527
- 'PHPUnit_Framework_MockObject_MockObject' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockObject.php',
528
- 'PHPUnit_Framework_MockObject_RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/RuntimeException.php',
529
- 'PHPUnit_Framework_MockObject_Stub' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub.php',
530
- 'PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ConsecutiveCalls.php',
531
- 'PHPUnit_Framework_MockObject_Stub_Exception' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Exception.php',
532
- 'PHPUnit_Framework_MockObject_Stub_MatcherCollection' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/MatcherCollection.php',
533
- 'PHPUnit_Framework_MockObject_Stub_Return' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Return.php',
534
- 'PHPUnit_Framework_MockObject_Stub_ReturnArgument' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnArgument.php',
535
- 'PHPUnit_Framework_MockObject_Stub_ReturnCallback' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnCallback.php',
536
- 'PHPUnit_Framework_MockObject_Stub_ReturnReference' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnReference.php',
537
- 'PHPUnit_Framework_MockObject_Stub_ReturnSelf' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnSelf.php',
538
- 'PHPUnit_Framework_MockObject_Stub_ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnValueMap.php',
539
- 'PHPUnit_Framework_MockObject_Verifiable' => __DIR__ . '/..' . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Verifiable.php',
540
- 'PHPUnit_Framework_OutputError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/OutputError.php',
541
- 'PHPUnit_Framework_RiskyTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTest.php',
542
- 'PHPUnit_Framework_RiskyTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTestError.php',
543
- 'PHPUnit_Framework_SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
544
- 'PHPUnit_Framework_SkippedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTest.php',
545
- 'PHPUnit_Framework_SkippedTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
546
- 'PHPUnit_Framework_SkippedTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestError.php',
547
- 'PHPUnit_Framework_SkippedTestSuiteError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php',
548
- 'PHPUnit_Framework_SyntheticError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SyntheticError.php',
549
- 'PHPUnit_Framework_Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Test.php',
550
- 'PHPUnit_Framework_TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestCase.php',
551
- 'PHPUnit_Framework_TestFailure' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestFailure.php',
552
- 'PHPUnit_Framework_TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListener.php',
553
- 'PHPUnit_Framework_TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestResult.php',
554
- 'PHPUnit_Framework_TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite.php',
555
- 'PHPUnit_Framework_TestSuite_DataProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite/DataProvider.php',
556
- 'PHPUnit_Framework_UnintentionallyCoveredCodeError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php',
557
- 'PHPUnit_Framework_Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Warning.php',
558
- 'PHPUnit_Framework_WarningTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
559
- 'PHPUnit_Runner_BaseTestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
560
- 'PHPUnit_Runner_Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception.php',
561
- 'PHPUnit_Runner_Filter_Factory' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
562
- 'PHPUnit_Runner_Filter_GroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Group.php',
563
- 'PHPUnit_Runner_Filter_Group_Exclude' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Group/Exclude.php',
564
- 'PHPUnit_Runner_Filter_Group_Include' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Group/Include.php',
565
- 'PHPUnit_Runner_Filter_Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Test.php',
566
- 'PHPUnit_Runner_StandardTestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
567
- 'PHPUnit_Runner_TestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
568
- 'PHPUnit_Runner_Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php',
569
- 'PHPUnit_TextUI_Command' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Command.php',
570
- 'PHPUnit_TextUI_ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
571
- 'PHPUnit_TextUI_TestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestRunner.php',
572
- 'PHPUnit_Util_Blacklist' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Blacklist.php',
573
- 'PHPUnit_Util_Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Configuration.php',
574
- 'PHPUnit_Util_ConfigurationGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php',
575
- 'PHPUnit_Util_ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ErrorHandler.php',
576
- 'PHPUnit_Util_Fileloader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Fileloader.php',
577
- 'PHPUnit_Util_Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php',
578
- 'PHPUnit_Util_Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php',
579
- 'PHPUnit_Util_Getopt' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Getopt.php',
580
- 'PHPUnit_Util_GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php',
581
- 'PHPUnit_Util_InvalidArgumentHelper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php',
582
- 'PHPUnit_Util_Log_JSON' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JSON.php',
583
- 'PHPUnit_Util_Log_JUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JUnit.php',
584
- 'PHPUnit_Util_Log_TAP' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TAP.php',
585
- 'PHPUnit_Util_Log_TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
586
- 'PHPUnit_Util_PHP' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP.php',
587
- 'PHPUnit_Util_PHP_Default' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/Default.php',
588
- 'PHPUnit_Util_PHP_Windows' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/Windows.php',
589
- 'PHPUnit_Util_Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Printer.php',
590
- 'PHPUnit_Util_Regex' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Regex.php',
591
- 'PHPUnit_Util_String' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/String.php',
592
- 'PHPUnit_Util_Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Test.php',
593
- 'PHPUnit_Util_TestDox_NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
594
- 'PHPUnit_Util_TestDox_ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
595
- 'PHPUnit_Util_TestDox_ResultPrinter_HTML' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/HTML.php',
596
- 'PHPUnit_Util_TestDox_ResultPrinter_Text' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/Text.php',
597
- 'PHPUnit_Util_TestDox_ResultPrinter_XML' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/XML.php',
598
- 'PHPUnit_Util_TestSuiteIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestSuiteIterator.php',
599
- 'PHPUnit_Util_Type' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Type.php',
600
- 'PHPUnit_Util_XML' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XML.php',
601
- 'PHP_CodeSniffer' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer.php',
602
- 'PHP_CodeSniffer_CLI' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/CLI.php',
603
- 'PHP_CodeSniffer_DocGenerators_Generator' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Generator.php',
604
- 'PHP_CodeSniffer_DocGenerators_HTML' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/HTML.php',
605
- 'PHP_CodeSniffer_DocGenerators_Markdown' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Markdown.php',
606
- 'PHP_CodeSniffer_DocGenerators_Text' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/Text.php',
607
- 'PHP_CodeSniffer_Exception' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Exception.php',
608
- 'PHP_CodeSniffer_File' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/File.php',
609
- 'PHP_CodeSniffer_Fixer' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Fixer.php',
610
- 'PHP_CodeSniffer_Report' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Report.php',
611
- 'PHP_CodeSniffer_Reporting' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reporting.php',
612
- 'PHP_CodeSniffer_Reports_Cbf' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Cbf.php',
613
- 'PHP_CodeSniffer_Reports_Checkstyle' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Checkstyle.php',
614
- 'PHP_CodeSniffer_Reports_Csv' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Csv.php',
615
- 'PHP_CodeSniffer_Reports_Diff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Diff.php',
616
- 'PHP_CodeSniffer_Reports_Emacs' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Emacs.php',
617
- 'PHP_CodeSniffer_Reports_Full' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Full.php',
618
- 'PHP_CodeSniffer_Reports_Gitblame' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Gitblame.php',
619
- 'PHP_CodeSniffer_Reports_Hgblame' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Hgblame.php',
620
- 'PHP_CodeSniffer_Reports_Info' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Info.php',
621
- 'PHP_CodeSniffer_Reports_Json' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Json.php',
622
- 'PHP_CodeSniffer_Reports_Junit' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Junit.php',
623
- 'PHP_CodeSniffer_Reports_Notifysend' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Notifysend.php',
624
- 'PHP_CodeSniffer_Reports_Source' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Source.php',
625
- 'PHP_CodeSniffer_Reports_Summary' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Summary.php',
626
- 'PHP_CodeSniffer_Reports_Svnblame' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Svnblame.php',
627
- 'PHP_CodeSniffer_Reports_VersionControl' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/VersionControl.php',
628
- 'PHP_CodeSniffer_Reports_Xml' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Reports/Xml.php',
629
- 'PHP_CodeSniffer_Sniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Sniff.php',
630
- 'PHP_CodeSniffer_Standards_AbstractPatternSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractPatternSniff.php',
631
- 'PHP_CodeSniffer_Standards_AbstractScopeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractScopeSniff.php',
632
- 'PHP_CodeSniffer_Standards_AbstractVariableSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/AbstractVariableSniff.php',
633
- 'PHP_CodeSniffer_Standards_IncorrectPatternException' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/IncorrectPatternException.php',
634
- 'PHP_CodeSniffer_Tokenizers_CSS' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/CSS.php',
635
- 'PHP_CodeSniffer_Tokenizers_Comment' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/Comment.php',
636
- 'PHP_CodeSniffer_Tokenizers_JS' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/JS.php',
637
- 'PHP_CodeSniffer_Tokenizers_PHP' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/PHP.php',
638
- 'PHP_CodeSniffer_Tokens' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Tokens.php',
639
- 'PHP_Timer' => __DIR__ . '/..' . '/phpunit/php-timer/src/Timer.php',
640
- 'PHP_Token' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
641
- 'PHP_TokenWithScope' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
642
- 'PHP_TokenWithScopeAndVisibility' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
643
- 'PHP_Token_ABSTRACT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
644
- 'PHP_Token_AMPERSAND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
645
- 'PHP_Token_AND_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
646
- 'PHP_Token_ARRAY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
647
- 'PHP_Token_ARRAY_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
648
- 'PHP_Token_AS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
649
- 'PHP_Token_ASYNC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
650
- 'PHP_Token_AT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
651
- 'PHP_Token_AWAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
652
- 'PHP_Token_BACKTICK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
653
- 'PHP_Token_BAD_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
654
- 'PHP_Token_BOOLEAN_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
655
- 'PHP_Token_BOOLEAN_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
656
- 'PHP_Token_BOOL_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
657
- 'PHP_Token_BREAK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
658
- 'PHP_Token_CALLABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
659
- 'PHP_Token_CARET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
660
- 'PHP_Token_CASE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
661
- 'PHP_Token_CATCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
662
- 'PHP_Token_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
663
- 'PHP_Token_CLASS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
664
- 'PHP_Token_CLASS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
665
- 'PHP_Token_CLASS_NAME_CONSTANT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
666
- 'PHP_Token_CLONE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
667
- 'PHP_Token_CLOSE_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
668
- 'PHP_Token_CLOSE_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
669
- 'PHP_Token_CLOSE_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
670
- 'PHP_Token_CLOSE_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
671
- 'PHP_Token_COALESCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
672
- 'PHP_Token_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
673
- 'PHP_Token_COMMA' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
674
- 'PHP_Token_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
675
- 'PHP_Token_COMPILER_HALT_OFFSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
676
- 'PHP_Token_CONCAT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
677
- 'PHP_Token_CONST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
678
- 'PHP_Token_CONSTANT_ENCAPSED_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
679
- 'PHP_Token_CONTINUE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
680
- 'PHP_Token_CURLY_OPEN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
681
- 'PHP_Token_DEC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
682
- 'PHP_Token_DECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
683
- 'PHP_Token_DEFAULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
684
- 'PHP_Token_DIR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
685
- 'PHP_Token_DIV' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
686
- 'PHP_Token_DIV_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
687
- 'PHP_Token_DNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
688
- 'PHP_Token_DO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
689
- 'PHP_Token_DOC_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
690
- 'PHP_Token_DOLLAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
691
- 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
692
- 'PHP_Token_DOT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
693
- 'PHP_Token_DOUBLE_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
694
- 'PHP_Token_DOUBLE_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
695
- 'PHP_Token_DOUBLE_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
696
- 'PHP_Token_DOUBLE_QUOTES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
697
- 'PHP_Token_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
698
- 'PHP_Token_ELLIPSIS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
699
- 'PHP_Token_ELSE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
700
- 'PHP_Token_ELSEIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
701
- 'PHP_Token_EMPTY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
702
- 'PHP_Token_ENCAPSED_AND_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
703
- 'PHP_Token_ENDDECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
704
- 'PHP_Token_ENDFOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
705
- 'PHP_Token_ENDFOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
706
- 'PHP_Token_ENDIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
707
- 'PHP_Token_ENDSWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
708
- 'PHP_Token_ENDWHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
709
- 'PHP_Token_END_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
710
- 'PHP_Token_ENUM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
711
- 'PHP_Token_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
712
- 'PHP_Token_EQUALS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
713
- 'PHP_Token_EVAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
714
- 'PHP_Token_EXCLAMATION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
715
- 'PHP_Token_EXIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
716
- 'PHP_Token_EXTENDS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
717
- 'PHP_Token_FILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
718
- 'PHP_Token_FINAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
719
- 'PHP_Token_FINALLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
720
- 'PHP_Token_FOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
721
- 'PHP_Token_FOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
722
- 'PHP_Token_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
723
- 'PHP_Token_FUNC_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
724
- 'PHP_Token_GLOBAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
725
- 'PHP_Token_GOTO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
726
- 'PHP_Token_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
727
- 'PHP_Token_HALT_COMPILER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
728
- 'PHP_Token_IF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
729
- 'PHP_Token_IMPLEMENTS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
730
- 'PHP_Token_IN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
731
- 'PHP_Token_INC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
732
- 'PHP_Token_INCLUDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
733
- 'PHP_Token_INCLUDE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
734
- 'PHP_Token_INLINE_HTML' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
735
- 'PHP_Token_INSTANCEOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
736
- 'PHP_Token_INSTEADOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
737
- 'PHP_Token_INTERFACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
738
- 'PHP_Token_INT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
739
- 'PHP_Token_ISSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
740
- 'PHP_Token_IS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
741
- 'PHP_Token_IS_GREATER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
742
- 'PHP_Token_IS_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
743
- 'PHP_Token_IS_NOT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
744
- 'PHP_Token_IS_NOT_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
745
- 'PHP_Token_IS_SMALLER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
746
- 'PHP_Token_Includes' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
747
- 'PHP_Token_JOIN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
748
- 'PHP_Token_LAMBDA_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
749
- 'PHP_Token_LAMBDA_CP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
750
- 'PHP_Token_LAMBDA_OP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
751
- 'PHP_Token_LINE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
752
- 'PHP_Token_LIST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
753
- 'PHP_Token_LNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
754
- 'PHP_Token_LOGICAL_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
755
- 'PHP_Token_LOGICAL_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
756
- 'PHP_Token_LOGICAL_XOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
757
- 'PHP_Token_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
758
- 'PHP_Token_METHOD_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
759
- 'PHP_Token_MINUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
760
- 'PHP_Token_MINUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
761
- 'PHP_Token_MOD_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
762
- 'PHP_Token_MULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
763
- 'PHP_Token_MUL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
764
- 'PHP_Token_NAMESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
765
- 'PHP_Token_NEW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
766
- 'PHP_Token_NS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
767
- 'PHP_Token_NS_SEPARATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
768
- 'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
769
- 'PHP_Token_NUM_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
770
- 'PHP_Token_OBJECT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
771
- 'PHP_Token_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
772
- 'PHP_Token_ONUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
773
- 'PHP_Token_OPEN_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
774
- 'PHP_Token_OPEN_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
775
- 'PHP_Token_OPEN_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
776
- 'PHP_Token_OPEN_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
777
- 'PHP_Token_OPEN_TAG_WITH_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
778
- 'PHP_Token_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
779
- 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
780
- 'PHP_Token_PERCENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
781
- 'PHP_Token_PIPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
782
- 'PHP_Token_PLUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
783
- 'PHP_Token_PLUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
784
- 'PHP_Token_POW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
785
- 'PHP_Token_POW_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
786
- 'PHP_Token_PRINT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
787
- 'PHP_Token_PRIVATE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
788
- 'PHP_Token_PROTECTED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
789
- 'PHP_Token_PUBLIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
790
- 'PHP_Token_QUESTION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
791
- 'PHP_Token_REQUIRE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
792
- 'PHP_Token_REQUIRE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
793
- 'PHP_Token_RETURN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
794
- 'PHP_Token_SEMICOLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
795
- 'PHP_Token_SHAPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
796
- 'PHP_Token_SL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
797
- 'PHP_Token_SL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
798
- 'PHP_Token_SPACESHIP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
799
- 'PHP_Token_SR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
800
- 'PHP_Token_SR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
801
- 'PHP_Token_START_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
802
- 'PHP_Token_STATIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
803
- 'PHP_Token_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
804
- 'PHP_Token_STRING_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
805
- 'PHP_Token_STRING_VARNAME' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
806
- 'PHP_Token_SUPER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
807
- 'PHP_Token_SWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
808
- 'PHP_Token_Stream' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream.php',
809
- 'PHP_Token_Stream_CachingFactory' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php',
810
- 'PHP_Token_THROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
811
- 'PHP_Token_TILDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
812
- 'PHP_Token_TRAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
813
- 'PHP_Token_TRAIT_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
814
- 'PHP_Token_TRY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
815
- 'PHP_Token_TYPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
816
- 'PHP_Token_TYPELIST_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
817
- 'PHP_Token_TYPELIST_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
818
- 'PHP_Token_UNSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
819
- 'PHP_Token_UNSET_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
820
- 'PHP_Token_USE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
821
- 'PHP_Token_USE_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
822
- 'PHP_Token_VAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
823
- 'PHP_Token_VARIABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
824
- 'PHP_Token_WHERE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
825
- 'PHP_Token_WHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
826
- 'PHP_Token_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
827
- 'PHP_Token_XHP_ATTRIBUTE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
828
- 'PHP_Token_XHP_CATEGORY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
829
- 'PHP_Token_XHP_CATEGORY_LABEL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
830
- 'PHP_Token_XHP_CHILDREN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
831
- 'PHP_Token_XHP_LABEL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
832
- 'PHP_Token_XHP_REQUIRED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
833
- 'PHP_Token_XHP_TAG_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
834
- 'PHP_Token_XHP_TAG_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
835
- 'PHP_Token_XHP_TEXT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
836
- 'PHP_Token_XOR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
837
- 'PHP_Token_YIELD' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
838
- 'PHP_Token_YIELD_FROM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php',
839
- 'PSR1_Sniffs_Classes_ClassDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Classes/ClassDeclarationSniff.php',
840
- 'PSR1_Sniffs_Files_SideEffectsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Files/SideEffectsSniff.php',
841
- 'PSR1_Sniffs_Methods_CamelCapsMethodNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php',
842
- 'PSR2_Sniffs_Classes_ClassDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/ClassDeclarationSniff.php',
843
- 'PSR2_Sniffs_Classes_PropertyDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/PropertyDeclarationSniff.php',
844
- 'PSR2_Sniffs_ControlStructures_ControlStructureSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/ControlStructureSpacingSniff.php',
845
- 'PSR2_Sniffs_ControlStructures_ElseIfDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/ElseIfDeclarationSniff.php',
846
- 'PSR2_Sniffs_ControlStructures_SwitchDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/ControlStructures/SwitchDeclarationSniff.php',
847
- 'PSR2_Sniffs_Files_ClosingTagSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php',
848
- 'PSR2_Sniffs_Files_EndFileNewlineSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/EndFileNewlineSniff.php',
849
- 'PSR2_Sniffs_Methods_FunctionCallSignatureSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionCallSignatureSniff.php',
850
- 'PSR2_Sniffs_Methods_FunctionClosingBraceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php',
851
- 'PSR2_Sniffs_Methods_MethodDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/MethodDeclarationSniff.php',
852
- 'PSR2_Sniffs_Namespaces_NamespaceDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/NamespaceDeclarationSniff.php',
853
- 'PSR2_Sniffs_Namespaces_UseDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php',
854
- 'ParseError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/ParseError.php',
855
- 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php',
856
- 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php',
857
- 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php',
858
- 'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/HHVM.php',
859
- 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php',
860
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug.php',
861
- 'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php',
862
- 'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php',
863
- 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
864
- 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php',
865
- 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
866
- 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php',
867
- 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php',
868
- 'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php',
869
- 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php',
870
- 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php',
871
- 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
872
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
873
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
874
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
875
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
876
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
877
- 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php',
878
- 'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php',
879
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
880
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
881
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
882
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
883
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
884
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
885
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
886
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
887
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
888
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
889
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
890
- 'SebastianBergmann\\CodeCoverage\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php',
891
- 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
892
- 'SebastianBergmann\\CodeCoverage\\Util' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util.php',
893
- 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
894
- 'SebastianBergmann\\Comparator\\ArrayComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ArrayComparator.php',
895
- 'SebastianBergmann\\Comparator\\Comparator' => __DIR__ . '/..' . '/sebastian/comparator/src/Comparator.php',
896
- 'SebastianBergmann\\Comparator\\ComparisonFailure' => __DIR__ . '/..' . '/sebastian/comparator/src/ComparisonFailure.php',
897
- 'SebastianBergmann\\Comparator\\DOMNodeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DOMNodeComparator.php',
898
- 'SebastianBergmann\\Comparator\\DateTimeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DateTimeComparator.php',
899
- 'SebastianBergmann\\Comparator\\DoubleComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DoubleComparator.php',
900
- 'SebastianBergmann\\Comparator\\ExceptionComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ExceptionComparator.php',
901
- 'SebastianBergmann\\Comparator\\Factory' => __DIR__ . '/..' . '/sebastian/comparator/src/Factory.php',
902
- 'SebastianBergmann\\Comparator\\MockObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/MockObjectComparator.php',
903
- 'SebastianBergmann\\Comparator\\NumericComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/NumericComparator.php',
904
- 'SebastianBergmann\\Comparator\\ObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ObjectComparator.php',
905
- 'SebastianBergmann\\Comparator\\ResourceComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ResourceComparator.php',
906
- 'SebastianBergmann\\Comparator\\ScalarComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ScalarComparator.php',
907
- 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/SplObjectStorageComparator.php',
908
- 'SebastianBergmann\\Comparator\\TypeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/TypeComparator.php',
909
- 'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php',
910
- 'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php',
911
- 'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php',
912
- 'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => __DIR__ . '/..' . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php',
913
- 'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => __DIR__ . '/..' . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
914
- 'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => __DIR__ . '/..' . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
915
- 'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php',
916
- 'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php',
917
- 'SebastianBergmann\\Environment\\Console' => __DIR__ . '/..' . '/sebastian/environment/src/Console.php',
918
- 'SebastianBergmann\\Environment\\Runtime' => __DIR__ . '/..' . '/sebastian/environment/src/Runtime.php',
919
- 'SebastianBergmann\\Exporter\\Exporter' => __DIR__ . '/..' . '/sebastian/exporter/src/Exporter.php',
920
- 'SebastianBergmann\\GlobalState\\Blacklist' => __DIR__ . '/..' . '/sebastian/global-state/src/Blacklist.php',
921
- 'SebastianBergmann\\GlobalState\\CodeExporter' => __DIR__ . '/..' . '/sebastian/global-state/src/CodeExporter.php',
922
- 'SebastianBergmann\\GlobalState\\Exception' => __DIR__ . '/..' . '/sebastian/global-state/src/Exception.php',
923
- 'SebastianBergmann\\GlobalState\\Restorer' => __DIR__ . '/..' . '/sebastian/global-state/src/Restorer.php',
924
- 'SebastianBergmann\\GlobalState\\RuntimeException' => __DIR__ . '/..' . '/sebastian/global-state/src/RuntimeException.php',
925
- 'SebastianBergmann\\GlobalState\\Snapshot' => __DIR__ . '/..' . '/sebastian/global-state/src/Snapshot.php',
926
- 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Enumerator.php',
927
- 'SebastianBergmann\\ObjectEnumerator\\Exception' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Exception.php',
928
- 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
929
- 'SebastianBergmann\\RecursionContext\\Context' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Context.php',
930
- 'SebastianBergmann\\RecursionContext\\Exception' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Exception.php',
931
- 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php',
932
- 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php',
933
- 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php',
934
- 'SessionUpdateTimestampHandlerInterface' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php',
935
- 'Squiz_Sniffs_Arrays_ArrayBracketSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayBracketSpacingSniff.php',
936
- 'Squiz_Sniffs_Arrays_ArrayDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php',
937
- 'Squiz_Sniffs_CSS_ClassDefinitionClosingBraceSpaceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionClosingBraceSpaceSniff.php',
938
- 'Squiz_Sniffs_CSS_ClassDefinitionNameSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionNameSpacingSniff.php',
939
- 'Squiz_Sniffs_CSS_ClassDefinitionOpeningBraceSpaceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ClassDefinitionOpeningBraceSpaceSniff.php',
940
- 'Squiz_Sniffs_CSS_ColonSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ColonSpacingSniff.php',
941
- 'Squiz_Sniffs_CSS_ColourDefinitionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ColourDefinitionSniff.php',
942
- 'Squiz_Sniffs_CSS_DisallowMultipleStyleDefinitionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php',
943
- 'Squiz_Sniffs_CSS_DuplicateClassDefinitionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php',
944
- 'Squiz_Sniffs_CSS_DuplicateStyleDefinitionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/DuplicateStyleDefinitionSniff.php',
945
- 'Squiz_Sniffs_CSS_EmptyClassDefinitionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php',
946
- 'Squiz_Sniffs_CSS_EmptyStyleDefinitionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php',
947
- 'Squiz_Sniffs_CSS_ForbiddenStylesSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ForbiddenStylesSniff.php',
948
- 'Squiz_Sniffs_CSS_IndentationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/IndentationSniff.php',
949
- 'Squiz_Sniffs_CSS_LowercaseStyleDefinitionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/LowercaseStyleDefinitionSniff.php',
950
- 'Squiz_Sniffs_CSS_MissingColonSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php',
951
- 'Squiz_Sniffs_CSS_NamedColoursSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php',
952
- 'Squiz_Sniffs_CSS_OpacitySniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/OpacitySniff.php',
953
- 'Squiz_Sniffs_CSS_SemicolonSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/SemicolonSpacingSniff.php',
954
- 'Squiz_Sniffs_CSS_ShorthandSizeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ShorthandSizeSniff.php',
955
- 'Squiz_Sniffs_Classes_ClassDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php',
956
- 'Squiz_Sniffs_Classes_ClassFileNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php',
957
- 'Squiz_Sniffs_Classes_DuplicatePropertySniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/DuplicatePropertySniff.php',
958
- 'Squiz_Sniffs_Classes_LowercaseClassKeywordsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php',
959
- 'Squiz_Sniffs_Classes_SelfMemberReferenceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/SelfMemberReferenceSniff.php',
960
- 'Squiz_Sniffs_Classes_ValidClassNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/ValidClassNameSniff.php',
961
- 'Squiz_Sniffs_Commenting_BlockCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/BlockCommentSniff.php',
962
- 'Squiz_Sniffs_Commenting_ClassCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php',
963
- 'Squiz_Sniffs_Commenting_ClosingDeclarationCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php',
964
- 'Squiz_Sniffs_Commenting_DocCommentAlignmentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/DocCommentAlignmentSniff.php',
965
- 'Squiz_Sniffs_Commenting_EmptyCatchCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/EmptyCatchCommentSniff.php',
966
- 'Squiz_Sniffs_Commenting_FileCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php',
967
- 'Squiz_Sniffs_Commenting_FunctionCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php',
968
- 'Squiz_Sniffs_Commenting_FunctionCommentThrowTagSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FunctionCommentThrowTagSniff.php',
969
- 'Squiz_Sniffs_Commenting_InlineCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/InlineCommentSniff.php',
970
- 'Squiz_Sniffs_Commenting_LongConditionClosingCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/LongConditionClosingCommentSniff.php',
971
- 'Squiz_Sniffs_Commenting_PostStatementCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/PostStatementCommentSniff.php',
972
- 'Squiz_Sniffs_Commenting_VariableCommentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php',
973
- 'Squiz_Sniffs_ControlStructures_ControlSignatureSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ControlSignatureSniff.php',
974
- 'Squiz_Sniffs_ControlStructures_ElseIfDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php',
975
- 'Squiz_Sniffs_ControlStructures_ForEachLoopDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForEachLoopDeclarationSniff.php',
976
- 'Squiz_Sniffs_ControlStructures_ForLoopDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php',
977
- 'Squiz_Sniffs_ControlStructures_InlineIfDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/InlineIfDeclarationSniff.php',
978
- 'Squiz_Sniffs_ControlStructures_LowercaseDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php',
979
- 'Squiz_Sniffs_ControlStructures_SwitchDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/SwitchDeclarationSniff.php',
980
- 'Squiz_Sniffs_Debug_JSLintSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/JSLintSniff.php',
981
- 'Squiz_Sniffs_Debug_JavaScriptLintSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Debug/JavaScriptLintSniff.php',
982
- 'Squiz_Sniffs_Files_FileExtensionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Files/FileExtensionSniff.php',
983
- 'Squiz_Sniffs_Formatting_OperatorBracketSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php',
984
- 'Squiz_Sniffs_Functions_FunctionDeclarationArgumentSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php',
985
- 'Squiz_Sniffs_Functions_FunctionDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDeclarationSniff.php',
986
- 'Squiz_Sniffs_Functions_FunctionDuplicateArgumentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php',
987
- 'Squiz_Sniffs_Functions_GlobalFunctionSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php',
988
- 'Squiz_Sniffs_Functions_LowercaseFunctionKeywordsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/LowercaseFunctionKeywordsSniff.php',
989
- 'Squiz_Sniffs_Functions_MultiLineFunctionDeclarationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/MultiLineFunctionDeclarationSniff.php',
990
- 'Squiz_Sniffs_NamingConventions_ValidFunctionNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ValidFunctionNameSniff.php',
991
- 'Squiz_Sniffs_NamingConventions_ValidVariableNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php',
992
- 'Squiz_Sniffs_Objects_DisallowObjectStringIndexSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php',
993
- 'Squiz_Sniffs_Objects_ObjectInstantiationSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php',
994
- 'Squiz_Sniffs_Objects_ObjectMemberCommaSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ObjectMemberCommaSniff.php',
995
- 'Squiz_Sniffs_Operators_ComparisonOperatorUsageSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ComparisonOperatorUsageSniff.php',
996
- 'Squiz_Sniffs_Operators_IncrementDecrementUsageSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/IncrementDecrementUsageSniff.php',
997
- 'Squiz_Sniffs_Operators_ValidLogicalOperatorsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php',
998
- 'Squiz_Sniffs_PHP_CommentedOutCodeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php',
999
- 'Squiz_Sniffs_PHP_DisallowBooleanStatementSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowBooleanStatementSniff.php',
1000
- 'Squiz_Sniffs_PHP_DisallowComparisonAssignmentSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowComparisonAssignmentSniff.php',
1001
- 'Squiz_Sniffs_PHP_DisallowInlineIfSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php',
1002
- 'Squiz_Sniffs_PHP_DisallowMultipleAssignmentsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php',
1003
- 'Squiz_Sniffs_PHP_DisallowObEndFlushSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowObEndFlushSniff.php',
1004
- 'Squiz_Sniffs_PHP_DisallowSizeFunctionsInLoopsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DisallowSizeFunctionsInLoopsSniff.php',
1005
- 'Squiz_Sniffs_PHP_DiscouragedFunctionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/DiscouragedFunctionsSniff.php',
1006
- 'Squiz_Sniffs_PHP_EmbeddedPhpSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php',
1007
- 'Squiz_Sniffs_PHP_EvalSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EvalSniff.php',
1008
- 'Squiz_Sniffs_PHP_ForbiddenFunctionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ForbiddenFunctionsSniff.php',
1009
- 'Squiz_Sniffs_PHP_GlobalKeywordSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/GlobalKeywordSniff.php',
1010
- 'Squiz_Sniffs_PHP_HeredocSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/HeredocSniff.php',
1011
- 'Squiz_Sniffs_PHP_InnerFunctionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php',
1012
- 'Squiz_Sniffs_PHP_LowercasePHPFunctionsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/LowercasePHPFunctionsSniff.php',
1013
- 'Squiz_Sniffs_PHP_NonExecutableCodeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/NonExecutableCodeSniff.php',
1014
- 'Squiz_Sniffs_Scope_MemberVarScopeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php',
1015
- 'Squiz_Sniffs_Scope_MethodScopeSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php',
1016
- 'Squiz_Sniffs_Scope_StaticThisUsageSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php',
1017
- 'Squiz_Sniffs_Strings_ConcatenationSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/ConcatenationSpacingSniff.php',
1018
- 'Squiz_Sniffs_Strings_DoubleQuoteUsageSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/DoubleQuoteUsageSniff.php',
1019
- 'Squiz_Sniffs_Strings_EchoedStringsSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Strings/EchoedStringsSniff.php',
1020
- 'Squiz_Sniffs_WhiteSpace_CastSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php',
1021
- 'Squiz_Sniffs_WhiteSpace_ControlStructureSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php',
1022
- 'Squiz_Sniffs_WhiteSpace_FunctionClosingBraceSpaceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php',
1023
- 'Squiz_Sniffs_WhiteSpace_FunctionOpeningBraceSpaceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php',
1024
- 'Squiz_Sniffs_WhiteSpace_FunctionSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/FunctionSpacingSniff.php',
1025
- 'Squiz_Sniffs_WhiteSpace_LanguageConstructSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php',
1026
- 'Squiz_Sniffs_WhiteSpace_LogicalOperatorSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/LogicalOperatorSpacingSniff.php',
1027
- 'Squiz_Sniffs_WhiteSpace_MemberVarSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php',
1028
- 'Squiz_Sniffs_WhiteSpace_ObjectOperatorSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php',
1029
- 'Squiz_Sniffs_WhiteSpace_OperatorSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/OperatorSpacingSniff.php',
1030
- 'Squiz_Sniffs_WhiteSpace_PropertyLabelSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/PropertyLabelSpacingSniff.php',
1031
- 'Squiz_Sniffs_WhiteSpace_ScopeClosingBraceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php',
1032
- 'Squiz_Sniffs_WhiteSpace_ScopeKeywordSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php',
1033
- 'Squiz_Sniffs_WhiteSpace_SemicolonSpacingSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php',
1034
- 'Squiz_Sniffs_WhiteSpace_SuperfluousWhitespaceSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php',
1035
- 'Text_Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php',
1036
- 'TypeError' => __DIR__ . '/..' . '/symfony/polyfill-php70/Resources/stubs/TypeError.php',
1037
- 'Zend_Sniffs_Debug_CodeAnalyzerSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php',
1038
- 'Zend_Sniffs_Files_ClosingTagSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Files/ClosingTagSniff.php',
1039
- 'Zend_Sniffs_NamingConventions_ValidVariableNameSniff' => __DIR__ . '/..' . '/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php',
1040
  );
1041
 
1042
- public static function getInitializer(WpmsClassLoader $loader)
1043
  {
1044
  return \Closure::bind(function () use ($loader) {
1045
  $loader->prefixLengthsPsr4 = ComposerStaticInite32d44369114c2552a34a407755811ab::$prefixLengthsPsr4;
1046
  $loader->prefixDirsPsr4 = ComposerStaticInite32d44369114c2552a34a407755811ab::$prefixDirsPsr4;
1047
- $loader->prefixesPsr0 = ComposerStaticInite32d44369114c2552a34a407755811ab::$prefixesPsr0;
1048
  $loader->classMap = ComposerStaticInite32d44369114c2552a34a407755811ab::$classMap;
1049
 
1050
- }, null, WpmsClassLoader::class);
1051
  }
1052
  }
7
  class ComposerStaticInite32d44369114c2552a34a407755811ab
8
  {
9
  public static $files = array (
 
 
10
  '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
 
 
 
 
 
11
  'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
12
+ 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php',
13
+ '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
14
  '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
15
  'decc78cc4436b1292c6c0d151b19445c' => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib/bootstrap.php',
16
+ '1f87db08236948d07391152dccb70f04' => __DIR__ . '/..' . '/google/apiclient-services/autoload.php',
17
  'a8d3953fd9959404dd22d3dfcd0a79f0' => __DIR__ . '/../..' . '/src/aliases.php',
18
  );
19
 
20
  public static $prefixLengthsPsr4 = array (
21
  'p' =>
22
  array (
23
+ 'phpseclib3\\' => 11,
 
24
  ),
25
  'W' =>
26
  array (
27
+ 'WPMSGoogle\\Service\\' => 19,
28
+ 'WPMSGoogle\\Auth\\' => 16,
29
+ 'WPMSGoogle\\' => 11,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  ),
31
  'P' =>
32
  array (
33
  'Psr\\Log\\' => 8,
34
  'Psr\\Http\\Message\\' => 17,
35
+ 'Psr\\Http\\Client\\' => 16,
36
  'Psr\\Cache\\' => 10,
37
+ 'ParagonIE\\ConstantTime\\' => 23,
38
  ),
39
  'M' =>
40
  array (
41
  'Monolog\\' => 8,
42
  ),
 
 
 
 
 
 
 
 
43
  'G' =>
44
  array (
45
  'GuzzleHttp\\Psr7\\' => 16,
46
  'GuzzleHttp\\Promise\\' => 19,
47
  'GuzzleHttp\\' => 11,
 
 
48
  ),
49
  'F' =>
50
  array (
51
  'Firebase\\JWT\\' => 13,
52
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  );
54
 
55
  public static $prefixDirsPsr4 = array (
56
+ 'phpseclib3\\' =>
57
  array (
58
  0 => __DIR__ . '/..' . '/phpseclib/phpseclib/phpseclib',
59
  ),
60
+ 'WPMSGoogle\\Service\\' =>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  array (
62
+ 0 => __DIR__ . '/..' . '/google/apiclient-services/src',
63
  ),
64
+ 'WPMSGoogle\\Auth\\' =>
65
  array (
66
+ 0 => __DIR__ . '/..' . '/google/auth/src',
67
  ),
68
+ 'WPMSGoogle\\' =>
69
  array (
70
+ 0 => __DIR__ . '/../..' . '/src',
71
  ),
72
  'Psr\\Log\\' =>
73
  array (
77
  array (
78
  0 => __DIR__ . '/..' . '/psr/http-message/src',
79
  ),
80
+ 'Psr\\Http\\Client\\' =>
81
+ array (
82
+ 0 => __DIR__ . '/..' . '/psr/http-client/src',
83
+ ),
84
  'Psr\\Cache\\' =>
85
  array (
86
  0 => __DIR__ . '/..' . '/psr/cache/src',
87
  ),
88
+ 'ParagonIE\\ConstantTime\\' =>
89
  array (
90
+ 0 => __DIR__ . '/..' . '/paragonie/constant_time_encoding/src',
91
  ),
92
  'Monolog\\' =>
93
  array (
94
  0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
95
  ),
 
 
 
 
 
 
 
 
96
  'GuzzleHttp\\Psr7\\' =>
97
  array (
98
  0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src',
105
  array (
106
  0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src',
107
  ),
 
 
 
 
 
 
 
 
108
  'Firebase\\JWT\\' =>
109
  array (
110
  0 => __DIR__ . '/..' . '/firebase/php-jwt/src',
111
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  );
113
 
114
  public static $classMap = array (
 
 
115
  'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
116
+ 'WPMSGoogle_AccessToken_Revoke' => __DIR__ . '/../..' . '/src/aliases.php',
117
+ 'WPMSGoogle_AccessToken_Verify' => __DIR__ . '/../..' . '/src/aliases.php',
118
+ 'WPMSGoogle_AuthHandler_AuthHandlerFactory' => __DIR__ . '/../..' . '/src/aliases.php',
119
+ 'WPMSGoogle_AuthHandler_Guzzle5AuthHandler' => __DIR__ . '/../..' . '/src/aliases.php',
120
+ 'WPMSGoogle_AuthHandler_Guzzle6AuthHandler' => __DIR__ . '/../..' . '/src/aliases.php',
121
+ 'WPMSGoogle_AuthHandler_Guzzle7AuthHandler' => __DIR__ . '/../..' . '/src/aliases.php',
122
+ 'WPMSGoogle_Client' => __DIR__ . '/../..' . '/src/aliases.php',
123
+ 'WPMSGoogle_Collection' => __DIR__ . '/../..' . '/src/aliases.php',
124
+ 'WPMSGoogle_Exception' => __DIR__ . '/../..' . '/src/aliases.php',
125
+ 'WPMSGoogle_Http_Batch' => __DIR__ . '/../..' . '/src/aliases.php',
126
+ 'WPMSGoogle_Http_MediaFileUpload' => __DIR__ . '/../..' . '/src/aliases.php',
127
+ 'WPMSGoogle_Http_REST' => __DIR__ . '/../..' . '/src/aliases.php',
128
+ 'WPMSGoogle_Model' => __DIR__ . '/../..' . '/src/aliases.php',
129
+ 'WPMSGoogle_Service' => __DIR__ . '/../..' . '/src/aliases.php',
130
+ 'WPMSGoogle_Service_Analytics' => __DIR__ . '/../..' . '/src/aliases.php',
131
+ 'WPMSGoogle_Service_Exception' => __DIR__ . '/../..' . '/src/aliases.php',
132
+ 'WPMSGoogle_Service_Resource' => __DIR__ . '/../..' . '/src/aliases.php',
133
+ 'WPMSGoogle_Task_Composer' => __DIR__ . '/../..' . '/src/aliases.php',
134
+ 'WPMSGoogle_Task_Exception' => __DIR__ . '/../..' . '/src/aliases.php',
135
+ 'WPMSGoogle_Task_Retryable' => __DIR__ . '/../..' . '/src/aliases.php',
136
+ 'WPMSGoogle_Task_Runner' => __DIR__ . '/../..' . '/src/aliases.php',
137
+ 'WPMSGoogle_Utils_UriTemplate' => __DIR__ . '/../..' . '/src/aliases.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  );
139
 
140
+ public static function getInitializer(ClassLoader $loader)
141
  {
142
  return \Closure::bind(function () use ($loader) {
143
  $loader->prefixLengthsPsr4 = ComposerStaticInite32d44369114c2552a34a407755811ab::$prefixLengthsPsr4;
144
  $loader->prefixDirsPsr4 = ComposerStaticInite32d44369114c2552a34a407755811ab::$prefixDirsPsr4;
 
145
  $loader->classMap = ComposerStaticInite32d44369114c2552a34a407755811ab::$classMap;
146
 
147
+ }, null, ClassLoader::class);
148
  }
149
  }
inc/lib/google-api/vendor/composer/installed.json CHANGED
@@ -1,237 +1,224 @@
1
  {
2
  "packages": [
3
  {
4
- "name": "cache/adapter-common",
5
- "version": "0.3.3",
6
- "version_normalized": "0.3.3.0",
7
  "source": {
8
  "type": "git",
9
- "url": "https://github.com/php-cache/adapter-common.git",
10
- "reference": "874256105aefaa52b60599ab02858a4575e61095"
11
  },
12
  "dist": {
13
  "type": "zip",
14
- "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/874256105aefaa52b60599ab02858a4575e61095",
15
- "reference": "874256105aefaa52b60599ab02858a4575e61095",
16
  "shasum": ""
17
  },
18
  "require": {
19
- "cache/taggable-cache": "^0.4",
20
- "php": "^5.5 || ^7.0",
21
- "psr/cache": "^1.0",
22
- "psr/log": "^1.0"
23
  },
24
  "require-dev": {
25
- "cache/integration-tests": "^0.10",
26
- "phpunit/phpunit": "^4.0 || ^5.1"
27
  },
28
- "time": "2016-07-31T18:10:41+00:00",
 
 
 
29
  "type": "library",
30
  "installation-source": "dist",
31
  "autoload": {
32
  "psr-4": {
33
- "Cache\\Adapter\\Common\\": ""
34
  }
35
  },
36
  "notification-url": "https://packagist.org/downloads/",
37
  "license": [
38
- "MIT"
39
  ],
40
  "authors": [
41
  {
42
- "name": "Aaron Scherer",
43
- "email": "aequasi@gmail.com",
44
- "homepage": "https://github.com/aequasi"
45
  },
46
  {
47
- "name": "Tobias Nyholm",
48
- "email": "tobias.nyholm@gmail.com",
49
- "homepage": "https://github.com/Nyholm"
50
  }
51
  ],
52
- "description": "Common classes for PSR-6 adapters",
53
- "homepage": "http://www.php-cache.com/en/latest/",
54
  "keywords": [
55
- "cache",
56
- "psr-6",
57
- "tag"
58
  ],
59
  "support": {
60
- "source": "https://github.com/php-cache/adapter-common/tree/master"
 
61
  },
62
- "install-path": "../cache/adapter-common"
63
  },
64
  {
65
- "name": "cache/filesystem-adapter",
66
- "version": "0.3.3",
67
- "version_normalized": "0.3.3.0",
68
  "source": {
69
  "type": "git",
70
- "url": "https://github.com/php-cache/filesystem-adapter.git",
71
- "reference": "b05c31ea76dbe2650817e92265952a5d8b7fb070"
72
  },
73
  "dist": {
74
  "type": "zip",
75
- "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/b05c31ea76dbe2650817e92265952a5d8b7fb070",
76
- "reference": "b05c31ea76dbe2650817e92265952a5d8b7fb070",
77
  "shasum": ""
78
  },
79
  "require": {
80
- "cache/adapter-common": "^0.3",
81
- "cache/taggable-cache": "^0.4",
82
- "league/flysystem": "^1.0",
83
- "php": "^5.5 || ^7.0",
84
- "psr/cache": "^1.0"
85
- },
86
- "provide": {
87
- "psr/cache-implementation": "^1.0"
88
  },
89
  "require-dev": {
90
- "cache/integration-tests": "^0.11",
91
- "phpunit/phpunit": "^4.0 || ^5.1"
92
  },
93
- "time": "2016-12-25T09:15:25+00:00",
94
  "type": "library",
95
  "installation-source": "dist",
96
  "autoload": {
97
  "psr-4": {
98
- "Cache\\Adapter\\Filesystem\\": ""
99
  },
100
- "exclude-from-classmap": [
101
- "/Tests/"
102
  ]
103
  },
104
  "notification-url": "https://packagist.org/downloads/",
105
  "license": [
106
- "MIT"
107
- ],
108
- "authors": [
109
- {
110
- "name": "Aaron Scherer",
111
- "email": "aequasi@gmail.com",
112
- "homepage": "https://github.com/aequasi"
113
- },
114
- {
115
- "name": "Tobias Nyholm",
116
- "email": "tobias.nyholm@gmail.com",
117
- "homepage": "https://github.com/Nyholm"
118
- }
119
  ],
120
- "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
121
- "homepage": "http://www.php-cache.com/en/latest/",
122
  "keywords": [
123
- "cache",
124
- "filesystem",
125
- "psr-6",
126
- "tag"
127
  ],
128
  "support": {
129
- "source": "https://github.com/php-cache/filesystem-adapter/tree/master"
 
130
  },
131
- "install-path": "../cache/filesystem-adapter"
132
  },
133
  {
134
- "name": "cache/taggable-cache",
135
- "version": "0.4.3",
136
- "version_normalized": "0.4.3.0",
137
  "source": {
138
  "type": "git",
139
- "url": "https://github.com/php-cache/taggable-cache.git",
140
- "reference": "8ae3042edd1ac9546c9eae1020dc2b438ef10742"
141
  },
142
  "dist": {
143
  "type": "zip",
144
- "url": "https://api.github.com/repos/php-cache/taggable-cache/zipball/8ae3042edd1ac9546c9eae1020dc2b438ef10742",
145
- "reference": "8ae3042edd1ac9546c9eae1020dc2b438ef10742",
146
  "shasum": ""
147
  },
148
  "require": {
149
- "php": "^5.5 || ^7.0",
150
- "psr/cache": "^1.0"
 
 
 
 
151
  },
152
  "require-dev": {
153
- "cache/integration-tests": "^0.11",
154
- "phpunit/phpunit": "^4.0 || ^5.1",
155
- "symfony/cache": "^3.1"
 
 
 
 
 
156
  },
157
- "time": "2016-08-08T17:20:09+00:00",
158
  "type": "library",
159
  "installation-source": "dist",
160
  "autoload": {
161
  "psr-4": {
162
- "Cache\\Taggable\\": ""
163
- },
164
- "exclude-from-classmap": [
165
- "/Tests/"
166
- ]
167
  },
168
  "notification-url": "https://packagist.org/downloads/",
169
  "license": [
170
- "MIT"
171
- ],
172
- "authors": [
173
- {
174
- "name": "Aaron Scherer",
175
- "email": "aequasi@gmail.com",
176
- "homepage": "https://github.com/aequasi"
177
- },
178
- {
179
- "name": "Tobias Nyholm",
180
- "email": "tobias.nyholm@gmail.com",
181
- "homepage": "https://github.com/Nyholm"
182
- }
183
  ],
184
- "description": "Add tag support to your PSR-6 cache implementation",
185
- "homepage": "http://www.php-cache.com/en/latest/",
186
  "keywords": [
187
- "Taggable",
188
- "cache",
189
- "psr6",
190
- "tag"
191
  ],
192
  "support": {
193
- "source": "https://github.com/php-cache/taggable-cache/tree/master"
 
 
194
  },
195
- "install-path": "../cache/taggable-cache"
196
  },
197
  {
198
- "name": "composer/ca-bundle",
199
- "version": "1.2.9",
200
- "version_normalized": "1.2.9.0",
201
  "source": {
202
  "type": "git",
203
- "url": "https://github.com/composer/ca-bundle.git",
204
- "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
205
  },
206
  "dist": {
207
  "type": "zip",
208
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
209
- "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
210
  "shasum": ""
211
  },
212
  "require": {
213
- "ext-openssl": "*",
214
- "ext-pcre": "*",
215
- "php": "^5.3.2 || ^7.0 || ^8.0"
 
 
 
 
 
 
216
  },
217
  "require-dev": {
218
- "phpstan/phpstan": "^0.12.55",
219
- "psr/log": "^1.0",
220
- "symfony/phpunit-bridge": "^4.2 || ^5",
221
- "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
 
 
 
 
 
 
222
  },
223
- "time": "2021-01-12T12:10:35+00:00",
224
  "type": "library",
225
  "extra": {
226
  "branch-alias": {
227
- "dev-main": "1.x-dev"
228
  }
229
  },
230
  "installation-source": "dist",
231
  "autoload": {
232
  "psr-4": {
233
- "Composer\\CaBundle\\": "src"
234
- }
 
 
 
235
  },
236
  "notification-url": "https://packagist.org/downloads/",
237
  "license": [
@@ -239,97 +226,109 @@
239
  ],
240
  "authors": [
241
  {
242
- "name": "Jordi Boggiano",
243
- "email": "j.boggiano@seld.be",
244
- "homepage": "http://seld.be"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  }
246
  ],
247
- "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
248
  "keywords": [
249
- "cabundle",
250
- "cacert",
251
- "certificate",
252
- "ssl",
253
- "tls"
 
 
 
 
254
  ],
255
  "support": {
256
- "irc": "irc://irc.freenode.org/composer",
257
- "issues": "https://github.com/composer/ca-bundle/issues",
258
- "source": "https://github.com/composer/ca-bundle/tree/1.2.9"
259
  },
260
  "funding": [
261
  {
262
- "url": "https://packagist.com",
263
- "type": "custom"
264
  },
265
  {
266
- "url": "https://github.com/composer",
267
  "type": "github"
268
  },
269
  {
270
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
271
  "type": "tidelift"
272
  }
273
  ],
274
- "install-path": "./ca-bundle"
275
  },
276
  {
277
- "name": "composer/composer",
278
- "version": "1.10.22",
279
- "version_normalized": "1.10.22.0",
280
  "source": {
281
  "type": "git",
282
- "url": "https://github.com/composer/composer.git",
283
- "reference": "28c9dfbe2351635961f670773e8d7b17bc5eda25"
284
  },
285
  "dist": {
286
  "type": "zip",
287
- "url": "https://api.github.com/repos/composer/composer/zipball/28c9dfbe2351635961f670773e8d7b17bc5eda25",
288
- "reference": "28c9dfbe2351635961f670773e8d7b17bc5eda25",
289
  "shasum": ""
290
  },
291
  "require": {
292
- "composer/ca-bundle": "^1.0",
293
- "composer/semver": "^1.0",
294
- "composer/spdx-licenses": "^1.2",
295
- "composer/xdebug-handler": "^1.1",
296
- "justinrainbow/json-schema": "^5.2.10",
297
- "php": "^5.3.2 || ^7.0 || ^8.0",
298
- "psr/log": "^1.0",
299
- "seld/jsonlint": "^1.4",
300
- "seld/phar-utils": "^1.0",
301
- "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
302
- "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
303
- "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
304
- "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
305
- },
306
- "conflict": {
307
- "symfony/console": "2.8.38"
308
  },
309
  "require-dev": {
310
- "phpspec/prophecy": "^1.10",
311
- "symfony/phpunit-bridge": "^4.2"
312
- },
313
- "suggest": {
314
- "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
315
- "ext-zip": "Enabling the zip extension allows you to unzip archives",
316
- "ext-zlib": "Allow gzip compression of HTTP requests"
317
  },
318
- "time": "2021-04-27T11:10:45+00:00",
319
- "bin": [
320
- "bin/composer"
321
- ],
322
  "type": "library",
323
  "extra": {
324
  "branch-alias": {
325
- "dev-master": "1.10-dev"
326
  }
327
  },
328
  "installation-source": "dist",
329
  "autoload": {
330
  "psr-4": {
331
- "Composer\\": "src/Composer"
332
- }
 
 
 
333
  },
334
  "notification-url": "https://packagist.org/downloads/",
335
  "license": [
@@ -337,77 +336,95 @@
337
  ],
338
  "authors": [
339
  {
340
- "name": "Nils Adermann",
341
- "email": "naderman@naderman.de",
342
- "homepage": "http://www.naderman.de"
343
  },
344
  {
345
- "name": "Jordi Boggiano",
346
- "email": "j.boggiano@seld.be",
347
- "homepage": "http://seld.be"
 
 
 
 
 
 
 
 
 
 
348
  }
349
  ],
350
- "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
351
- "homepage": "https://getcomposer.org/",
352
  "keywords": [
353
- "autoload",
354
- "dependency",
355
- "package"
356
  ],
357
  "support": {
358
- "irc": "irc://irc.freenode.org/composer",
359
- "issues": "https://github.com/composer/composer/issues",
360
- "source": "https://github.com/composer/composer/tree/1.10.22"
361
  },
362
  "funding": [
363
  {
364
- "url": "https://packagist.com",
365
- "type": "custom"
366
  },
367
  {
368
- "url": "https://github.com/composer",
369
  "type": "github"
370
  },
371
  {
372
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
373
  "type": "tidelift"
374
  }
375
  ],
376
- "install-path": "./composer"
377
  },
378
  {
379
- "name": "composer/semver",
380
- "version": "1.7.2",
381
- "version_normalized": "1.7.2.0",
382
  "source": {
383
  "type": "git",
384
- "url": "https://github.com/composer/semver.git",
385
- "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
386
  },
387
  "dist": {
388
  "type": "zip",
389
- "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
390
- "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
391
  "shasum": ""
392
  },
393
  "require": {
394
- "php": "^5.3.2 || ^7.0 || ^8.0"
 
 
 
 
 
395
  },
396
  "require-dev": {
397
- "phpunit/phpunit": "^4.5 || ^5.0.5"
 
 
 
 
398
  },
399
- "time": "2020-12-03T15:47:16+00:00",
400
  "type": "library",
401
  "extra": {
402
  "branch-alias": {
403
- "dev-master": "1.x-dev"
404
  }
405
  },
406
  "installation-source": "dist",
407
  "autoload": {
408
  "psr-4": {
409
- "Composer\\Semver\\": "src"
410
- }
 
 
 
411
  },
412
  "notification-url": "https://packagist.org/downloads/",
413
  "license": [
@@ -415,81 +432,133 @@
415
  ],
416
  "authors": [
417
  {
418
- "name": "Nils Adermann",
419
- "email": "naderman@naderman.de",
420
- "homepage": "http://www.naderman.de"
421
  },
422
  {
423
- "name": "Jordi Boggiano",
424
- "email": "j.boggiano@seld.be",
425
- "homepage": "http://seld.be"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  },
427
  {
428
- "name": "Rob Bast",
429
- "email": "rob.bast@gmail.com",
430
- "homepage": "http://robbast.nl"
431
  }
432
  ],
433
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
434
  "keywords": [
435
- "semantic",
436
- "semver",
437
- "validation",
438
- "versioning"
 
 
 
 
439
  ],
440
  "support": {
441
- "irc": "irc://irc.freenode.org/composer",
442
- "issues": "https://github.com/composer/semver/issues",
443
- "source": "https://github.com/composer/semver/tree/1.7.2"
444
  },
445
  "funding": [
446
  {
447
- "url": "https://packagist.com",
448
- "type": "custom"
449
  },
450
  {
451
- "url": "https://github.com/composer",
452
  "type": "github"
453
  },
454
  {
455
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
456
  "type": "tidelift"
457
  }
458
  ],
459
- "install-path": "./semver"
460
  },
461
  {
462
- "name": "composer/spdx-licenses",
463
- "version": "1.5.5",
464
- "version_normalized": "1.5.5.0",
465
  "source": {
466
  "type": "git",
467
- "url": "https://github.com/composer/spdx-licenses.git",
468
- "reference": "de30328a7af8680efdc03e396aad24befd513200"
469
  },
470
  "dist": {
471
  "type": "zip",
472
- "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
473
- "reference": "de30328a7af8680efdc03e396aad24befd513200",
474
  "shasum": ""
475
  },
476
  "require": {
477
- "php": "^5.3.2 || ^7.0 || ^8.0"
 
 
 
 
478
  },
479
  "require-dev": {
480
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  },
482
- "time": "2020-12-03T16:04:16+00:00",
483
  "type": "library",
484
  "extra": {
485
  "branch-alias": {
486
- "dev-main": "1.x-dev"
487
  }
488
  },
489
  "installation-source": "dist",
490
  "autoload": {
491
  "psr-4": {
492
- "Composer\\Spdx\\": "src"
493
  }
494
  },
495
  "notification-url": "https://packagist.org/downloads/",
@@ -497,78 +566,63 @@
497
  "MIT"
498
  ],
499
  "authors": [
500
- {
501
- "name": "Nils Adermann",
502
- "email": "naderman@naderman.de",
503
- "homepage": "http://www.naderman.de"
504
- },
505
  {
506
  "name": "Jordi Boggiano",
507
  "email": "j.boggiano@seld.be",
508
- "homepage": "http://seld.be"
509
- },
510
- {
511
- "name": "Rob Bast",
512
- "email": "rob.bast@gmail.com",
513
- "homepage": "http://robbast.nl"
514
  }
515
  ],
516
- "description": "SPDX licenses list and validation library.",
 
517
  "keywords": [
518
- "license",
519
- "spdx",
520
- "validator"
521
  ],
522
  "support": {
523
- "irc": "irc://irc.freenode.org/composer",
524
- "issues": "https://github.com/composer/spdx-licenses/issues",
525
- "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
526
  },
527
  "funding": [
528
  {
529
- "url": "https://packagist.com",
530
- "type": "custom"
531
- },
532
- {
533
- "url": "https://github.com/composer",
534
  "type": "github"
535
  },
536
  {
537
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
538
  "type": "tidelift"
539
  }
540
  ],
541
- "install-path": "./spdx-licenses"
542
  },
543
  {
544
- "name": "composer/xdebug-handler",
545
- "version": "1.4.6",
546
- "version_normalized": "1.4.6.0",
547
  "source": {
548
  "type": "git",
549
- "url": "https://github.com/composer/xdebug-handler.git",
550
- "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
551
  },
552
  "dist": {
553
  "type": "zip",
554
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
555
- "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
556
  "shasum": ""
557
  },
558
  "require": {
559
- "php": "^5.3.2 || ^7.0 || ^8.0",
560
- "psr/log": "^1.0"
561
  },
562
  "require-dev": {
563
- "phpstan/phpstan": "^0.12.55",
564
- "symfony/phpunit-bridge": "^4.2 || ^5"
565
  },
566
- "time": "2021-03-25T17:01:18+00:00",
567
  "type": "library",
568
  "installation-source": "dist",
569
  "autoload": {
570
  "psr-4": {
571
- "Composer\\XdebugHandler\\": "src"
572
  }
573
  },
574
  "notification-url": "https://packagist.org/downloads/",
@@ -577,3301 +631,134 @@
577
  ],
578
  "authors": [
579
  {
580
- "name": "John Stevenson",
581
- "email": "john-stevenson@blueyonder.co.uk"
582
- }
583
- ],
584
- "description": "Restarts a process without Xdebug.",
585
- "keywords": [
586
- "Xdebug",
587
- "performance"
588
- ],
589
- "support": {
590
- "irc": "irc://irc.freenode.org/composer",
591
- "issues": "https://github.com/composer/xdebug-handler/issues",
592
- "source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
593
- },
594
- "funding": [
595
- {
596
- "url": "https://packagist.com",
597
- "type": "custom"
598
- },
599
- {
600
- "url": "https://github.com/composer",
601
- "type": "github"
602
- },
603
- {
604
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
605
- "type": "tidelift"
606
- }
607
- ],
608
- "install-path": "./xdebug-handler"
609
- },
610
- {
611
- "name": "dealerdirect/phpcodesniffer-composer-installer",
612
- "version": "v0.7.1",
613
- "version_normalized": "0.7.1.0",
614
- "source": {
615
- "type": "git",
616
- "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
617
- "reference": "fe390591e0241955f22eb9ba327d137e501c771c"
618
- },
619
- "dist": {
620
- "type": "zip",
621
- "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c",
622
- "reference": "fe390591e0241955f22eb9ba327d137e501c771c",
623
- "shasum": ""
624
- },
625
- "require": {
626
- "composer-plugin-api": "^1.0 || ^2.0",
627
- "php": ">=5.3",
628
- "squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0"
629
- },
630
- "require-dev": {
631
- "composer/composer": "*",
632
- "phpcompatibility/php-compatibility": "^9.0",
633
- "sensiolabs/security-checker": "^4.1.0"
634
- },
635
- "time": "2020-12-07T18:04:37+00:00",
636
- "type": "composer-plugin",
637
- "extra": {
638
- "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
639
- },
640
- "installation-source": "dist",
641
- "autoload": {
642
- "psr-4": {
643
- "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
644
- }
645
- },
646
- "notification-url": "https://packagist.org/downloads/",
647
- "license": [
648
- "MIT"
649
- ],
650
- "authors": [
651
- {
652
- "name": "Franck Nijhof",
653
- "email": "franck.nijhof@dealerdirect.com",
654
- "homepage": "http://www.frenck.nl",
655
- "role": "Developer / IT Manager"
656
- }
657
- ],
658
- "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
659
- "homepage": "http://www.dealerdirect.com",
660
- "keywords": [
661
- "PHPCodeSniffer",
662
- "PHP_CodeSniffer",
663
- "code quality",
664
- "codesniffer",
665
- "composer",
666
- "installer",
667
- "phpcs",
668
- "plugin",
669
- "qa",
670
- "quality",
671
- "standard",
672
- "standards",
673
- "style guide",
674
- "stylecheck",
675
- "tests"
676
- ],
677
- "support": {
678
- "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
679
- "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
680
- },
681
- "install-path": "../dealerdirect/phpcodesniffer-composer-installer"
682
- },
683
- {
684
- "name": "doctrine/instantiator",
685
- "version": "1.0.5",
686
- "version_normalized": "1.0.5.0",
687
- "source": {
688
- "type": "git",
689
- "url": "https://github.com/doctrine/instantiator.git",
690
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
691
- },
692
- "dist": {
693
- "type": "zip",
694
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
695
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
696
- "shasum": ""
697
- },
698
- "require": {
699
- "php": ">=5.3,<8.0-DEV"
700
- },
701
- "require-dev": {
702
- "athletic/athletic": "~0.1.8",
703
- "ext-pdo": "*",
704
- "ext-phar": "*",
705
- "phpunit/phpunit": "~4.0",
706
- "squizlabs/php_codesniffer": "~2.0"
707
- },
708
- "time": "2015-06-14T21:17:01+00:00",
709
- "type": "library",
710
- "extra": {
711
- "branch-alias": {
712
- "dev-master": "1.0.x-dev"
713
- }
714
- },
715
- "installation-source": "dist",
716
- "autoload": {
717
- "psr-4": {
718
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
719
- }
720
- },
721
- "notification-url": "https://packagist.org/downloads/",
722
- "license": [
723
- "MIT"
724
- ],
725
- "authors": [
726
- {
727
- "name": "Marco Pivetta",
728
- "email": "ocramius@gmail.com",
729
- "homepage": "http://ocramius.github.com/"
730
- }
731
- ],
732
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
733
- "homepage": "https://github.com/doctrine/instantiator",
734
- "keywords": [
735
- "constructor",
736
- "instantiate"
737
- ],
738
- "support": {
739
- "issues": "https://github.com/doctrine/instantiator/issues",
740
- "source": "https://github.com/doctrine/instantiator/tree/master"
741
- },
742
- "install-path": "../doctrine/instantiator"
743
- },
744
- {
745
- "name": "firebase/php-jwt",
746
- "version": "v5.2.1",
747
- "version_normalized": "5.2.1.0",
748
- "source": {
749
- "type": "git",
750
- "url": "https://github.com/firebase/php-jwt.git",
751
- "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
752
- },
753
- "dist": {
754
- "type": "zip",
755
- "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
756
- "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
757
- "shasum": ""
758
- },
759
- "require": {
760
- "php": ">=5.3.0"
761
- },
762
- "require-dev": {
763
- "phpunit/phpunit": ">=4.8 <=9"
764
- },
765
- "time": "2021-02-12T00:02:00+00:00",
766
- "type": "library",
767
- "installation-source": "dist",
768
- "autoload": {
769
- "psr-4": {
770
- "Firebase\\JWT\\": "src"
771
- }
772
- },
773
- "notification-url": "https://packagist.org/downloads/",
774
- "license": [
775
- "BSD-3-Clause"
776
- ],
777
- "authors": [
778
- {
779
- "name": "Neuman Vong",
780
- "email": "neuman+pear@twilio.com",
781
- "role": "Developer"
782
- },
783
- {
784
- "name": "Anant Narayanan",
785
- "email": "anant@php.net",
786
- "role": "Developer"
787
- }
788
- ],
789
- "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
790
- "homepage": "https://github.com/firebase/php-jwt",
791
- "keywords": [
792
- "jwt",
793
- "php"
794
- ],
795
- "support": {
796
- "issues": "https://github.com/firebase/php-jwt/issues",
797
- "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
798
- },
799
- "install-path": "../firebase/php-jwt"
800
- },
801
- {
802
- "name": "google/apiclient-services",
803
- "version": "v0.172.0",
804
- "version_normalized": "0.172.0.0",
805
- "source": {
806
- "type": "git",
807
- "url": "https://github.com/googleapis/google-api-php-client-services.git",
808
- "reference": "85e8a9f0062a9e1aba3cdc0f499968bc8de78b7d"
809
- },
810
- "dist": {
811
- "type": "zip",
812
- "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/85e8a9f0062a9e1aba3cdc0f499968bc8de78b7d",
813
- "reference": "85e8a9f0062a9e1aba3cdc0f499968bc8de78b7d",
814
- "shasum": ""
815
- },
816
- "require": {
817
- "php": ">=5.4"
818
- },
819
- "require-dev": {
820
- "phpunit/phpunit": "^4.8|^5"
821
- },
822
- "time": "2021-04-27T16:21:24+00:00",
823
- "type": "library",
824
- "installation-source": "dist",
825
- "autoload": {
826
- "psr-0": {
827
- "Google_Service_": "src"
828
- }
829
- },
830
- "notification-url": "https://packagist.org/downloads/",
831
- "license": [
832
- "Apache-2.0"
833
- ],
834
- "description": "Client library for Google APIs",
835
- "homepage": "http://developers.google.com/api-client-library/php",
836
- "keywords": [
837
- "google"
838
- ],
839
- "support": {
840
- "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
841
- "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.172.0"
842
- },
843
- "install-path": "../google/apiclient-services"
844
- },
845
- {
846
- "name": "google/auth",
847
- "version": "v1.15.1",
848
- "version_normalized": "1.15.1.0",
849
- "source": {
850
- "type": "git",
851
- "url": "https://github.com/googleapis/google-auth-library-php.git",
852
- "reference": "4e0c9367719df9703e96f5ad613041b87742471c"
853
- },
854
- "dist": {
855
- "type": "zip",
856
- "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/4e0c9367719df9703e96f5ad613041b87742471c",
857
- "reference": "4e0c9367719df9703e96f5ad613041b87742471c",
858
- "shasum": ""
859
- },
860
- "require": {
861
- "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
862
- "guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
863
- "guzzlehttp/psr7": "^1.2",
864
- "php": ">=5.4",
865
- "psr/cache": "^1.0",
866
- "psr/http-message": "^1.0"
867
- },
868
- "require-dev": {
869
- "guzzlehttp/promises": "0.1.1|^1.3",
870
- "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
871
- "phpseclib/phpseclib": "^2.0.31",
872
- "phpunit/phpunit": "^4.8.36|^5.7",
873
- "sebastian/comparator": ">=1.2.3",
874
- "squizlabs/php_codesniffer": "^3.5"
875
- },
876
- "suggest": {
877
- "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
878
- },
879
- "time": "2021-04-21T17:42:05+00:00",
880
- "type": "library",
881
- "installation-source": "dist",
882
- "autoload": {
883
- "psr-4": {
884
- "WPMSGoogle\\Auth\\": "src"
885
- }
886
- },
887
- "notification-url": "https://packagist.org/downloads/",
888
- "license": [
889
- "Apache-2.0"
890
- ],
891
- "description": "Google Auth Library for PHP",
892
- "homepage": "http://github.com/google/google-auth-library-php",
893
- "keywords": [
894
- "Authentication",
895
- "google",
896
- "oauth2"
897
- ],
898
- "support": {
899
- "docs": "https://googleapis.github.io/google-auth-library-php/master/",
900
- "issues": "https://github.com/googleapis/google-auth-library-php/issues",
901
- "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.15.1"
902
- },
903
- "install-path": "../google/auth"
904
- },
905
- {
906
- "name": "guzzlehttp/guzzle",
907
- "version": "6.5.5",
908
- "version_normalized": "6.5.5.0",
909
- "source": {
910
- "type": "git",
911
- "url": "https://github.com/guzzle/guzzle.git",
912
- "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
913
- },
914
- "dist": {
915
- "type": "zip",
916
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
917
- "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
918
- "shasum": ""
919
- },
920
- "require": {
921
- "ext-json": "*",
922
- "guzzlehttp/promises": "^1.0",
923
- "guzzlehttp/psr7": "^1.6.1",
924
- "php": ">=5.5",
925
- "symfony/polyfill-intl-idn": "^1.17.0"
926
- },
927
- "require-dev": {
928
- "ext-curl": "*",
929
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
930
- "psr/log": "^1.1"
931
- },
932
- "suggest": {
933
- "psr/log": "Required for using the Log middleware"
934
- },
935
- "time": "2020-06-16T21:01:06+00:00",
936
- "type": "library",
937
- "extra": {
938
- "branch-alias": {
939
- "dev-master": "6.5-dev"
940
- }
941
- },
942
- "installation-source": "dist",
943
- "autoload": {
944
- "psr-4": {
945
- "GuzzleHttp\\": "src/"
946
- },
947
- "files": [
948
- "src/functions_include.php"
949
- ]
950
- },
951
- "notification-url": "https://packagist.org/downloads/",
952
- "license": [
953
- "MIT"
954
- ],
955
- "authors": [
956
- {
957
- "name": "Michael Dowling",
958
- "email": "mtdowling@gmail.com",
959
- "homepage": "https://github.com/mtdowling"
960
- }
961
- ],
962
- "description": "Guzzle is a PHP HTTP client library",
963
- "homepage": "http://guzzlephp.org/",
964
- "keywords": [
965
- "client",
966
- "curl",
967
- "framework",
968
- "http",
969
- "http client",
970
- "rest",
971
- "web service"
972
- ],
973
- "support": {
974
- "issues": "https://github.com/guzzle/guzzle/issues",
975
- "source": "https://github.com/guzzle/guzzle/tree/6.5"
976
- },
977
- "install-path": "../guzzlehttp/guzzle"
978
- },
979
- {
980
- "name": "guzzlehttp/promises",
981
- "version": "1.4.1",
982
- "version_normalized": "1.4.1.0",
983
- "source": {
984
- "type": "git",
985
- "url": "https://github.com/guzzle/promises.git",
986
- "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
987
- },
988
- "dist": {
989
- "type": "zip",
990
- "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
991
- "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
992
- "shasum": ""
993
- },
994
- "require": {
995
- "php": ">=5.5"
996
- },
997
- "require-dev": {
998
- "symfony/phpunit-bridge": "^4.4 || ^5.1"
999
- },
1000
- "time": "2021-03-07T09:25:29+00:00",
1001
- "type": "library",
1002
- "extra": {
1003
- "branch-alias": {
1004
- "dev-master": "1.4-dev"
1005
- }
1006
- },
1007
- "installation-source": "dist",
1008
- "autoload": {
1009
- "psr-4": {
1010
- "GuzzleHttp\\Promise\\": "src/"
1011
- },
1012
- "files": [
1013
- "src/functions_include.php"
1014
- ]
1015
- },
1016
- "notification-url": "https://packagist.org/downloads/",
1017
- "license": [
1018
- "MIT"
1019
- ],
1020
- "authors": [
1021
- {
1022
- "name": "Michael Dowling",
1023
- "email": "mtdowling@gmail.com",
1024
- "homepage": "https://github.com/mtdowling"
1025
- }
1026
- ],
1027
- "description": "Guzzle promises library",
1028
- "keywords": [
1029
- "promise"
1030
- ],
1031
- "support": {
1032
- "issues": "https://github.com/guzzle/promises/issues",
1033
- "source": "https://github.com/guzzle/promises/tree/1.4.1"
1034
- },
1035
- "install-path": "../guzzlehttp/promises"
1036
- },
1037
- {
1038
- "name": "guzzlehttp/psr7",
1039
- "version": "1.8.2",
1040
- "version_normalized": "1.8.2.0",
1041
- "source": {
1042
- "type": "git",
1043
- "url": "https://github.com/guzzle/psr7.git",
1044
- "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
1045
- },
1046
- "dist": {
1047
- "type": "zip",
1048
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
1049
- "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
1050
- "shasum": ""
1051
- },
1052
- "require": {
1053
- "php": ">=5.4.0",
1054
- "psr/http-message": "~1.0",
1055
- "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
1056
- },
1057
- "provide": {
1058
- "psr/http-message-implementation": "1.0"
1059
- },
1060
- "require-dev": {
1061
- "ext-zlib": "*",
1062
- "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
1063
- },
1064
- "suggest": {
1065
- "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
1066
- },
1067
- "time": "2021-04-26T09:17:50+00:00",
1068
- "type": "library",
1069
- "extra": {
1070
- "branch-alias": {
1071
- "dev-master": "1.7-dev"
1072
- }
1073
- },
1074
- "installation-source": "dist",
1075
- "autoload": {
1076
- "psr-4": {
1077
- "GuzzleHttp\\Psr7\\": "src/"
1078
- },
1079
- "files": [
1080
- "src/functions_include.php"
1081
- ]
1082
- },
1083
- "notification-url": "https://packagist.org/downloads/",
1084
- "license": [
1085
- "MIT"
1086
- ],
1087
- "authors": [
1088
- {
1089
- "name": "Michael Dowling",
1090
- "email": "mtdowling@gmail.com",
1091
- "homepage": "https://github.com/mtdowling"
1092
- },
1093
- {
1094
- "name": "Tobias Schultze",
1095
- "homepage": "https://github.com/Tobion"
1096
- }
1097
- ],
1098
- "description": "PSR-7 message implementation that also provides common utility methods",
1099
- "keywords": [
1100
- "http",
1101
- "message",
1102
- "psr-7",
1103
- "request",
1104
- "response",
1105
- "stream",
1106
- "uri",
1107
- "url"
1108
- ],
1109
- "support": {
1110
- "issues": "https://github.com/guzzle/psr7/issues",
1111
- "source": "https://github.com/guzzle/psr7/tree/1.8.2"
1112
- },
1113
- "install-path": "../guzzlehttp/psr7"
1114
- },
1115
- {
1116
- "name": "justinrainbow/json-schema",
1117
- "version": "5.2.10",
1118
- "version_normalized": "5.2.10.0",
1119
- "source": {
1120
- "type": "git",
1121
- "url": "https://github.com/justinrainbow/json-schema.git",
1122
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
1123
- },
1124
- "dist": {
1125
- "type": "zip",
1126
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
1127
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
1128
- "shasum": ""
1129
- },
1130
- "require": {
1131
- "php": ">=5.3.3"
1132
- },
1133
- "require-dev": {
1134
- "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
1135
- "json-schema/json-schema-test-suite": "1.2.0",
1136
- "phpunit/phpunit": "^4.8.35"
1137
- },
1138
- "time": "2020-05-27T16:41:55+00:00",
1139
- "bin": [
1140
- "bin/validate-json"
1141
- ],
1142
- "type": "library",
1143
- "extra": {
1144
- "branch-alias": {
1145
- "dev-master": "5.0.x-dev"
1146
- }
1147
- },
1148
- "installation-source": "dist",
1149
- "autoload": {
1150
- "psr-4": {
1151
- "JsonSchema\\": "src/JsonSchema/"
1152
- }
1153
- },
1154
- "notification-url": "https://packagist.org/downloads/",
1155
- "license": [
1156
- "MIT"
1157
- ],
1158
- "authors": [
1159
- {
1160
- "name": "Bruno Prieto Reis",
1161
- "email": "bruno.p.reis@gmail.com"
1162
- },
1163
- {
1164
- "name": "Justin Rainbow",
1165
- "email": "justin.rainbow@gmail.com"
1166
- },
1167
- {
1168
- "name": "Igor Wiedler",
1169
- "email": "igor@wiedler.ch"
1170
- },
1171
- {
1172
- "name": "Robert Schönthal",
1173
- "email": "seroscho@googlemail.com"
1174
- }
1175
- ],
1176
- "description": "A library to validate a json schema.",
1177
- "homepage": "https://github.com/justinrainbow/json-schema",
1178
- "keywords": [
1179
- "json",
1180
- "schema"
1181
- ],
1182
- "support": {
1183
- "issues": "https://github.com/justinrainbow/json-schema/issues",
1184
- "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
1185
- },
1186
- "install-path": "../justinrainbow/json-schema"
1187
- },
1188
- {
1189
- "name": "league/flysystem",
1190
- "version": "1.0.70",
1191
- "version_normalized": "1.0.70.0",
1192
- "source": {
1193
- "type": "git",
1194
- "url": "https://github.com/thephpleague/flysystem.git",
1195
- "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493"
1196
- },
1197
- "dist": {
1198
- "type": "zip",
1199
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/585824702f534f8d3cf7fab7225e8466cc4b7493",
1200
- "reference": "585824702f534f8d3cf7fab7225e8466cc4b7493",
1201
- "shasum": ""
1202
- },
1203
- "require": {
1204
- "ext-fileinfo": "*",
1205
- "php": ">=5.5.9"
1206
- },
1207
- "conflict": {
1208
- "league/flysystem-sftp": "<1.0.6"
1209
- },
1210
- "require-dev": {
1211
- "phpspec/phpspec": "^3.4 || ^4.0 || ^5.0 || ^6.0",
1212
- "phpunit/phpunit": "^5.7.26"
1213
- },
1214
- "suggest": {
1215
- "ext-fileinfo": "Required for MimeType",
1216
- "ext-ftp": "Allows you to use FTP server storage",
1217
- "ext-openssl": "Allows you to use FTPS server storage",
1218
- "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
1219
- "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
1220
- "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
1221
- "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
1222
- "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
1223
- "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
1224
- "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
1225
- "league/flysystem-webdav": "Allows you to use WebDAV storage",
1226
- "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
1227
- "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
1228
- "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
1229
- },
1230
- "time": "2020-07-26T07:20:36+00:00",
1231
- "type": "library",
1232
- "extra": {
1233
- "branch-alias": {
1234
- "dev-master": "1.1-dev"
1235
- }
1236
- },
1237
- "installation-source": "dist",
1238
- "autoload": {
1239
- "psr-4": {
1240
- "League\\Flysystem\\": "src/"
1241
- }
1242
- },
1243
- "notification-url": "https://packagist.org/downloads/",
1244
- "license": [
1245
- "MIT"
1246
- ],
1247
- "authors": [
1248
- {
1249
- "name": "Frank de Jonge",
1250
- "email": "info@frenky.net"
1251
- }
1252
- ],
1253
- "description": "Filesystem abstraction: Many filesystems, one API.",
1254
- "keywords": [
1255
- "Cloud Files",
1256
- "WebDAV",
1257
- "abstraction",
1258
- "aws",
1259
- "cloud",
1260
- "copy.com",
1261
- "dropbox",
1262
- "file systems",
1263
- "files",
1264
- "filesystem",
1265
- "filesystems",
1266
- "ftp",
1267
- "rackspace",
1268
- "remote",
1269
- "s3",
1270
- "sftp",
1271
- "storage"
1272
- ],
1273
- "support": {
1274
- "issues": "https://github.com/thephpleague/flysystem/issues",
1275
- "source": "https://github.com/thephpleague/flysystem/tree/1.0.70"
1276
- },
1277
- "funding": [
1278
- {
1279
- "url": "https://offset.earth/frankdejonge",
1280
- "type": "other"
1281
- }
1282
- ],
1283
- "install-path": "../league/flysystem"
1284
- },
1285
- {
1286
- "name": "monolog/monolog",
1287
- "version": "1.26.0",
1288
- "version_normalized": "1.26.0.0",
1289
- "source": {
1290
- "type": "git",
1291
- "url": "https://github.com/Seldaek/monolog.git",
1292
- "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33"
1293
- },
1294
- "dist": {
1295
- "type": "zip",
1296
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
1297
- "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
1298
- "shasum": ""
1299
- },
1300
- "require": {
1301
- "php": ">=5.3.0",
1302
- "psr/log": "~1.0"
1303
- },
1304
- "provide": {
1305
- "psr/log-implementation": "1.0.0"
1306
- },
1307
- "require-dev": {
1308
- "aws/aws-sdk-php": "^2.4.9 || ^3.0",
1309
- "doctrine/couchdb": "~1.0@dev",
1310
- "graylog2/gelf-php": "~1.0",
1311
- "php-amqplib/php-amqplib": "~2.4",
1312
- "php-console/php-console": "^3.1.3",
1313
- "phpstan/phpstan": "^0.12.59",
1314
- "phpunit/phpunit": "~4.5",
1315
- "ruflin/elastica": ">=0.90 <3.0",
1316
- "sentry/sentry": "^0.13",
1317
- "swiftmailer/swiftmailer": "^5.3|^6.0"
1318
- },
1319
- "suggest": {
1320
- "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
1321
- "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
1322
- "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
1323
- "ext-mongo": "Allow sending log messages to a MongoDB server",
1324
- "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
1325
- "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
1326
- "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
1327
- "php-console/php-console": "Allow sending log messages to Google Chrome",
1328
- "rollbar/rollbar": "Allow sending log messages to Rollbar",
1329
- "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
1330
- "sentry/sentry": "Allow sending log messages to a Sentry server"
1331
- },
1332
- "time": "2020-12-14T12:56:38+00:00",
1333
- "type": "library",
1334
- "installation-source": "dist",
1335
- "autoload": {
1336
- "psr-4": {
1337
- "Monolog\\": "src/Monolog"
1338
- }
1339
- },
1340
- "notification-url": "https://packagist.org/downloads/",
1341
- "license": [
1342
- "MIT"
1343
- ],
1344
- "authors": [
1345
- {
1346
- "name": "Jordi Boggiano",
1347
- "email": "j.boggiano@seld.be",
1348
- "homepage": "http://seld.be"
1349
- }
1350
- ],
1351
- "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
1352
- "homepage": "http://github.com/Seldaek/monolog",
1353
- "keywords": [
1354
- "log",
1355
- "logging",
1356
- "psr-3"
1357
- ],
1358
- "support": {
1359
- "issues": "https://github.com/Seldaek/monolog/issues",
1360
- "source": "https://github.com/Seldaek/monolog/tree/1.26.0"
1361
- },
1362
- "funding": [
1363
- {
1364
- "url": "https://github.com/Seldaek",
1365
- "type": "github"
1366
- },
1367
- {
1368
- "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
1369
- "type": "tidelift"
1370
- }
1371
- ],
1372
- "install-path": "../monolog/monolog"
1373
- },
1374
- {
1375
- "name": "myclabs/deep-copy",
1376
- "version": "1.7.0",
1377
- "version_normalized": "1.7.0.0",
1378
- "source": {
1379
- "type": "git",
1380
- "url": "https://github.com/myclabs/DeepCopy.git",
1381
- "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
1382
- },
1383
- "dist": {
1384
- "type": "zip",
1385
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
1386
- "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
1387
- "shasum": ""
1388
- },
1389
- "require": {
1390
- "php": "^5.6 || ^7.0"
1391
- },
1392
- "require-dev": {
1393
- "doctrine/collections": "^1.0",
1394
- "doctrine/common": "^2.6",
1395
- "phpunit/phpunit": "^4.1"
1396
- },
1397
- "time": "2017-10-19T19:58:43+00:00",
1398
- "type": "library",
1399
- "installation-source": "dist",
1400
- "autoload": {
1401
- "psr-4": {
1402
- "DeepCopy\\": "src/DeepCopy/"
1403
- },
1404
- "files": [
1405
- "src/DeepCopy/deep_copy.php"
1406
- ]
1407
- },
1408
- "notification-url": "https://packagist.org/downloads/",
1409
- "license": [
1410
- "MIT"
1411
- ],
1412
- "description": "Create deep copies (clones) of your objects",
1413
- "keywords": [
1414
- "clone",
1415
- "copy",
1416
- "duplicate",
1417
- "object",
1418
- "object graph"
1419
- ],
1420
- "support": {
1421
- "issues": "https://github.com/myclabs/DeepCopy/issues",
1422
- "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
1423
- },
1424
- "install-path": "../myclabs/deep-copy"
1425
- },
1426
- {
1427
- "name": "paragonie/random_compat",
1428
- "version": "v2.0.20",
1429
- "version_normalized": "2.0.20.0",
1430
- "source": {
1431
- "type": "git",
1432
- "url": "https://github.com/paragonie/random_compat.git",
1433
- "reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a"
1434
- },
1435
- "dist": {
1436
- "type": "zip",
1437
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
1438
- "reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
1439
- "shasum": ""
1440
- },
1441
- "require": {
1442
- "php": ">=5.2.0"
1443
- },
1444
- "require-dev": {
1445
- "phpunit/phpunit": "4.*|5.*"
1446
- },
1447
- "suggest": {
1448
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
1449
- },
1450
- "time": "2021-04-17T09:33:01+00:00",
1451
- "type": "library",
1452
- "installation-source": "dist",
1453
- "autoload": {
1454
- "files": [
1455
- "lib/random.php"
1456
- ]
1457
- },
1458
- "notification-url": "https://packagist.org/downloads/",
1459
- "license": [
1460
- "MIT"
1461
- ],
1462
- "authors": [
1463
- {
1464
- "name": "Paragon Initiative Enterprises",
1465
- "email": "security@paragonie.com",
1466
- "homepage": "https://paragonie.com"
1467
- }
1468
- ],
1469
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
1470
- "keywords": [
1471
- "csprng",
1472
- "polyfill",
1473
- "pseudorandom",
1474
- "random"
1475
- ],
1476
- "support": {
1477
- "email": "info@paragonie.com",
1478
- "issues": "https://github.com/paragonie/random_compat/issues",
1479
- "source": "https://github.com/paragonie/random_compat"
1480
- },
1481
- "install-path": "../paragonie/random_compat"
1482
- },
1483
- {
1484
- "name": "phpcompatibility/php-compatibility",
1485
- "version": "9.3.5",
1486
- "version_normalized": "9.3.5.0",
1487
- "source": {
1488
- "type": "git",
1489
- "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
1490
- "reference": "9fb324479acf6f39452e0655d2429cc0d3914243"
1491
- },
1492
- "dist": {
1493
- "type": "zip",
1494
- "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243",
1495
- "reference": "9fb324479acf6f39452e0655d2429cc0d3914243",
1496
- "shasum": ""
1497
- },
1498
- "require": {
1499
- "php": ">=5.3",
1500
- "squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
1501
- },
1502
- "conflict": {
1503
- "squizlabs/php_codesniffer": "2.6.2"
1504
- },
1505
- "require-dev": {
1506
- "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
1507
- },
1508
- "suggest": {
1509
- "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
1510
- "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
1511
- },
1512
- "time": "2019-12-27T09:44:58+00:00",
1513
- "type": "phpcodesniffer-standard",
1514
- "installation-source": "dist",
1515
- "notification-url": "https://packagist.org/downloads/",
1516
- "license": [
1517
- "LGPL-3.0-or-later"
1518
- ],
1519
- "authors": [
1520
- {
1521
- "name": "Wim Godden",
1522
- "homepage": "https://github.com/wimg",
1523
- "role": "lead"
1524
- },
1525
- {
1526
- "name": "Juliette Reinders Folmer",
1527
- "homepage": "https://github.com/jrfnl",
1528
- "role": "lead"
1529
- },
1530
- {
1531
- "name": "Contributors",
1532
- "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
1533
- }
1534
- ],
1535
- "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
1536
- "homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
1537
- "keywords": [
1538
- "compatibility",
1539
- "phpcs",
1540
- "standards"
1541
- ],
1542
- "support": {
1543
- "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues",
1544
- "source": "https://github.com/PHPCompatibility/PHPCompatibility"
1545
- },
1546
- "install-path": "../phpcompatibility/php-compatibility"
1547
- },
1548
- {
1549
- "name": "phpdocumentor/reflection-common",
1550
- "version": "1.0.1",
1551
- "version_normalized": "1.0.1.0",
1552
- "source": {
1553
- "type": "git",
1554
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
1555
- "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
1556
- },
1557
- "dist": {
1558
- "type": "zip",
1559
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
1560
- "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
1561
- "shasum": ""
1562
- },
1563
- "require": {
1564
- "php": ">=5.5"
1565
- },
1566
- "require-dev": {
1567
- "phpunit/phpunit": "^4.6"
1568
- },
1569
- "time": "2017-09-11T18:02:19+00:00",
1570
- "type": "library",
1571
- "extra": {
1572
- "branch-alias": {
1573
- "dev-master": "1.0.x-dev"
1574
- }
1575
- },
1576
- "installation-source": "dist",
1577
- "autoload": {
1578
- "psr-4": {
1579
- "phpDocumentor\\Reflection\\": [
1580
- "src"
1581
- ]
1582
- }
1583
- },
1584
- "notification-url": "https://packagist.org/downloads/",
1585
- "license": [
1586
- "MIT"
1587
- ],
1588
- "authors": [
1589
- {
1590
- "name": "Jaap van Otterdijk",
1591
- "email": "opensource@ijaap.nl"
1592
- }
1593
- ],
1594
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
1595
- "homepage": "http://www.phpdoc.org",
1596
- "keywords": [
1597
- "FQSEN",
1598
- "phpDocumentor",
1599
- "phpdoc",
1600
- "reflection",
1601
- "static analysis"
1602
- ],
1603
- "support": {
1604
- "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
1605
- "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/master"
1606
- },
1607
- "install-path": "../phpdocumentor/reflection-common"
1608
- },
1609
- {
1610
- "name": "phpdocumentor/reflection-docblock",
1611
- "version": "3.3.2",
1612
- "version_normalized": "3.3.2.0",
1613
- "source": {
1614
- "type": "git",
1615
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
1616
- "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
1617
- },
1618
- "dist": {
1619
- "type": "zip",
1620
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
1621
- "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
1622
- "shasum": ""
1623
- },
1624
- "require": {
1625
- "php": "^5.6 || ^7.0",
1626
- "phpdocumentor/reflection-common": "^1.0.0",
1627
- "phpdocumentor/type-resolver": "^0.4.0",
1628
- "webmozart/assert": "^1.0"
1629
- },
1630
- "require-dev": {
1631
- "mockery/mockery": "^0.9.4",
1632
- "phpunit/phpunit": "^4.4"
1633
- },
1634
- "time": "2017-11-10T14:09:06+00:00",
1635
- "type": "library",
1636
- "installation-source": "dist",
1637
- "autoload": {
1638
- "psr-4": {
1639
- "phpDocumentor\\Reflection\\": [
1640
- "src/"
1641
- ]
1642
- }
1643
- },
1644
- "notification-url": "https://packagist.org/downloads/",
1645
- "license": [
1646
- "MIT"
1647
- ],
1648
- "authors": [
1649
- {
1650
- "name": "Mike van Riel",
1651
- "email": "me@mikevanriel.com"
1652
- }
1653
- ],
1654
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
1655
- "support": {
1656
- "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
1657
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/3.x"
1658
- },
1659
- "install-path": "../phpdocumentor/reflection-docblock"
1660
- },
1661
- {
1662
- "name": "phpdocumentor/type-resolver",
1663
- "version": "0.4.0",
1664
- "version_normalized": "0.4.0.0",
1665
- "source": {
1666
- "type": "git",
1667
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
1668
- "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
1669
- },
1670
- "dist": {
1671
- "type": "zip",
1672
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
1673
- "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
1674
- "shasum": ""
1675
- },
1676
- "require": {
1677
- "php": "^5.5 || ^7.0",
1678
- "phpdocumentor/reflection-common": "^1.0"
1679
- },
1680
- "require-dev": {
1681
- "mockery/mockery": "^0.9.4",
1682
- "phpunit/phpunit": "^5.2||^4.8.24"
1683
- },
1684
- "time": "2017-07-14T14:27:02+00:00",
1685
- "type": "library",
1686
- "extra": {
1687
- "branch-alias": {
1688
- "dev-master": "1.0.x-dev"
1689
- }
1690
- },
1691
- "installation-source": "dist",
1692
- "autoload": {
1693
- "psr-4": {
1694
- "phpDocumentor\\Reflection\\": [
1695
- "src/"
1696
- ]
1697
- }
1698
- },
1699
- "notification-url": "https://packagist.org/downloads/",
1700
- "license": [
1701
- "MIT"
1702
- ],
1703
- "authors": [
1704
- {
1705
- "name": "Mike van Riel",
1706
- "email": "me@mikevanriel.com"
1707
- }
1708
- ],
1709
- "support": {
1710
- "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
1711
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/master"
1712
- },
1713
- "install-path": "../phpdocumentor/type-resolver"
1714
- },
1715
- {
1716
- "name": "phpseclib/phpseclib",
1717
- "version": "2.0.31",
1718
- "version_normalized": "2.0.31.0",
1719
- "source": {
1720
- "type": "git",
1721
- "url": "https://github.com/phpseclib/phpseclib.git",
1722
- "reference": "233a920cb38636a43b18d428f9a8db1f0a1a08f4"
1723
- },
1724
- "dist": {
1725
- "type": "zip",
1726
- "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/233a920cb38636a43b18d428f9a8db1f0a1a08f4",
1727
- "reference": "233a920cb38636a43b18d428f9a8db1f0a1a08f4",
1728
- "shasum": ""
1729
- },
1730
- "require": {
1731
- "php": ">=5.3.3"
1732
- },
1733
- "require-dev": {
1734
- "phing/phing": "~2.7",
1735
- "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
1736
- "squizlabs/php_codesniffer": "~2.0"
1737
- },
1738
- "suggest": {
1739
- "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
1740
- "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
1741
- "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
1742
- "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
1743
- },
1744
- "time": "2021-04-06T13:56:45+00:00",
1745
- "type": "library",
1746
- "installation-source": "dist",
1747
- "autoload": {
1748
- "files": [
1749
- "phpseclib/bootstrap.php"
1750
- ],
1751
- "psr-4": {
1752
- "phpseclib\\": "phpseclib/"
1753
- }
1754
- },
1755
- "notification-url": "https://packagist.org/downloads/",
1756
- "license": [
1757
- "MIT"
1758
- ],
1759
- "authors": [
1760
- {
1761
- "name": "Jim Wigginton",
1762
- "email": "terrafrost@php.net",
1763
- "role": "Lead Developer"
1764
- },
1765
- {
1766
- "name": "Patrick Monnerat",
1767
- "email": "pm@datasphere.ch",
1768
- "role": "Developer"
1769
- },
1770
- {
1771
- "name": "Andreas Fischer",
1772
- "email": "bantu@phpbb.com",
1773
- "role": "Developer"
1774
- },
1775
- {
1776
- "name": "Hans-Jürgen Petrich",
1777
- "email": "petrich@tronic-media.com",
1778
- "role": "Developer"
1779
- },
1780
- {
1781
- "name": "Graham Campbell",
1782
- "email": "graham@alt-three.com",
1783
- "role": "Developer"
1784
- }
1785
- ],
1786
- "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
1787
- "homepage": "http://phpseclib.sourceforge.net",
1788
- "keywords": [
1789
- "BigInteger",
1790
- "aes",
1791
- "asn.1",
1792
- "asn1",
1793
- "blowfish",
1794
- "crypto",
1795
- "cryptography",
1796
- "encryption",
1797
- "rsa",
1798
- "security",
1799
- "sftp",
1800
- "signature",
1801
- "signing",
1802
- "ssh",
1803
- "twofish",
1804
- "x.509",
1805
- "x509"
1806
- ],
1807
- "support": {
1808
- "issues": "https://github.com/phpseclib/phpseclib/issues",
1809
- "source": "https://github.com/phpseclib/phpseclib/tree/2.0.31"
1810
- },
1811
- "funding": [
1812
- {
1813
- "url": "https://github.com/terrafrost",
1814
- "type": "github"
1815
- },
1816
- {
1817
- "url": "https://www.patreon.com/phpseclib",
1818
- "type": "patreon"
1819
- },
1820
- {
1821
- "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
1822
- "type": "tidelift"
1823
- }
1824
- ],
1825
- "install-path": "../phpseclib/phpseclib"
1826
- },
1827
- {
1828
- "name": "phpspec/prophecy",
1829
- "version": "v1.10.3",
1830
- "version_normalized": "1.10.3.0",
1831
- "source": {
1832
- "type": "git",
1833
- "url": "https://github.com/phpspec/prophecy.git",
1834
- "reference": "451c3cd1418cf640de218914901e51b064abb093"
1835
- },
1836
- "dist": {
1837
- "type": "zip",
1838
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
1839
- "reference": "451c3cd1418cf640de218914901e51b064abb093",
1840
- "shasum": ""
1841
- },
1842
- "require": {
1843
- "doctrine/instantiator": "^1.0.2",
1844
- "php": "^5.3|^7.0",
1845
- "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
1846
- "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
1847
- "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
1848
- },
1849
- "require-dev": {
1850
- "phpspec/phpspec": "^2.5 || ^3.2",
1851
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
1852
- },
1853
- "time": "2020-03-05T15:02:03+00:00",
1854
- "type": "library",
1855
- "extra": {
1856
- "branch-alias": {
1857
- "dev-master": "1.10.x-dev"
1858
- }
1859
- },
1860
- "installation-source": "dist",
1861
- "autoload": {
1862
- "psr-4": {
1863
- "Prophecy\\": "src/Prophecy"
1864
- }
1865
- },
1866
- "notification-url": "https://packagist.org/downloads/",
1867
- "license": [
1868
- "MIT"
1869
- ],
1870
- "authors": [
1871
- {
1872
- "name": "Konstantin Kudryashov",
1873
- "email": "ever.zet@gmail.com",
1874
- "homepage": "http://everzet.com"
1875
- },
1876
- {
1877
- "name": "Marcello Duarte",
1878
- "email": "marcello.duarte@gmail.com"
1879
- }
1880
- ],
1881
- "description": "Highly opinionated mocking framework for PHP 5.3+",
1882
- "homepage": "https://github.com/phpspec/prophecy",
1883
- "keywords": [
1884
- "Double",
1885
- "Dummy",
1886
- "fake",
1887
- "mock",
1888
- "spy",
1889
- "stub"
1890
- ],
1891
- "support": {
1892
- "issues": "https://github.com/phpspec/prophecy/issues",
1893
- "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
1894
- },
1895
- "install-path": "../phpspec/prophecy"
1896
- },
1897
- {
1898
- "name": "phpunit/php-code-coverage",
1899
- "version": "4.0.8",
1900
- "version_normalized": "4.0.8.0",
1901
- "source": {
1902
- "type": "git",
1903
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
1904
- "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
1905
- },
1906
- "dist": {
1907
- "type": "zip",
1908
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
1909
- "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
1910
- "shasum": ""
1911
- },
1912
- "require": {
1913
- "ext-dom": "*",
1914
- "ext-xmlwriter": "*",
1915
- "php": "^5.6 || ^7.0",
1916
- "phpunit/php-file-iterator": "^1.3",
1917
- "phpunit/php-text-template": "^1.2",
1918
- "phpunit/php-token-stream": "^1.4.2 || ^2.0",
1919
- "sebastian/code-unit-reverse-lookup": "^1.0",
1920
- "sebastian/environment": "^1.3.2 || ^2.0",
1921
- "sebastian/version": "^1.0 || ^2.0"
1922
- },
1923
- "require-dev": {
1924
- "ext-xdebug": "^2.1.4",
1925
- "phpunit/phpunit": "^5.7"
1926
- },
1927
- "suggest": {
1928
- "ext-xdebug": "^2.5.1"
1929
- },
1930
- "time": "2017-04-02T07:44:40+00:00",
1931
- "type": "library",
1932
- "extra": {
1933
- "branch-alias": {
1934
- "dev-master": "4.0.x-dev"
1935
- }
1936
- },
1937
- "installation-source": "dist",
1938
- "autoload": {
1939
- "classmap": [
1940
- "src/"
1941
- ]
1942
- },
1943
- "notification-url": "https://packagist.org/downloads/",
1944
- "license": [
1945
- "BSD-3-Clause"
1946
- ],
1947
- "authors": [
1948
- {
1949
- "name": "Sebastian Bergmann",
1950
- "email": "sb@sebastian-bergmann.de",
1951
- "role": "lead"
1952
- }
1953
- ],
1954
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
1955
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
1956
- "keywords": [
1957
- "coverage",
1958
- "testing",
1959
- "xunit"
1960
- ],
1961
- "support": {
1962
- "irc": "irc://irc.freenode.net/phpunit",
1963
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
1964
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/4.0"
1965
- },
1966
- "install-path": "../phpunit/php-code-coverage"
1967
- },
1968
- {
1969
- "name": "phpunit/php-file-iterator",
1970
- "version": "1.4.5",
1971
- "version_normalized": "1.4.5.0",
1972
- "source": {
1973
- "type": "git",
1974
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
1975
- "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
1976
- },
1977
- "dist": {
1978
- "type": "zip",
1979
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
1980
- "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
1981
- "shasum": ""
1982
- },
1983
- "require": {
1984
- "php": ">=5.3.3"
1985
- },
1986
- "time": "2017-11-27T13:52:08+00:00",
1987
- "type": "library",
1988
- "extra": {
1989
- "branch-alias": {
1990
- "dev-master": "1.4.x-dev"
1991
- }
1992
- },
1993
- "installation-source": "dist",
1994
- "autoload": {
1995
- "classmap": [
1996
- "src/"
1997
- ]
1998
- },
1999
- "notification-url": "https://packagist.org/downloads/",
2000
- "license": [
2001
- "BSD-3-Clause"
2002
- ],
2003
- "authors": [
2004
- {
2005
- "name": "Sebastian Bergmann",
2006
- "email": "sb@sebastian-bergmann.de",
2007
- "role": "lead"
2008
- }
2009
- ],
2010
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
2011
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
2012
- "keywords": [
2013
- "filesystem",
2014
- "iterator"
2015
- ],
2016
- "support": {
2017
- "irc": "irc://irc.freenode.net/phpunit",
2018
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
2019
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
2020
- },
2021
- "install-path": "../phpunit/php-file-iterator"
2022
- },
2023
- {
2024
- "name": "phpunit/php-text-template",
2025
- "version": "1.2.1",
2026
- "version_normalized": "1.2.1.0",
2027
- "source": {
2028
- "type": "git",
2029
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
2030
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
2031
- },
2032
- "dist": {
2033
- "type": "zip",
2034
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
2035
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
2036
- "shasum": ""
2037
- },
2038
- "require": {
2039
- "php": ">=5.3.3"
2040
- },
2041
- "time": "2015-06-21T13:50:34+00:00",
2042
- "type": "library",
2043
- "installation-source": "dist",
2044
- "autoload": {
2045
- "classmap": [
2046
- "src/"
2047
- ]
2048
- },
2049
- "notification-url": "https://packagist.org/downloads/",
2050
- "license": [
2051
- "BSD-3-Clause"
2052
- ],
2053
- "authors": [
2054
- {
2055
- "name": "Sebastian Bergmann",
2056
- "email": "sebastian@phpunit.de",
2057
- "role": "lead"
2058
- }
2059
- ],
2060
- "description": "Simple template engine.",
2061
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
2062
- "keywords": [
2063
- "template"
2064
- ],
2065
- "support": {
2066
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
2067
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
2068
- },
2069
- "install-path": "../phpunit/php-text-template"
2070
- },
2071
- {
2072
- "name": "phpunit/php-timer",
2073
- "version": "1.0.9",
2074
- "version_normalized": "1.0.9.0",
2075
- "source": {
2076
- "type": "git",
2077
- "url": "https://github.com/sebastianbergmann/php-timer.git",
2078
- "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
2079
- },
2080
- "dist": {
2081
- "type": "zip",
2082
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
2083
- "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
2084
- "shasum": ""
2085
- },
2086
- "require": {
2087
- "php": "^5.3.3 || ^7.0"
2088
- },
2089
- "require-dev": {
2090
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
2091
- },
2092
- "time": "2017-02-26T11:10:40+00:00",
2093
- "type": "library",
2094
- "extra": {
2095
- "branch-alias": {
2096
- "dev-master": "1.0-dev"
2097
- }
2098
- },
2099
- "installation-source": "dist",
2100
- "autoload": {
2101
- "classmap": [
2102
- "src/"
2103
- ]
2104
- },
2105
- "notification-url": "https://packagist.org/downloads/",
2106
- "license": [
2107
- "BSD-3-Clause"
2108
- ],
2109
- "authors": [
2110
- {
2111
- "name": "Sebastian Bergmann",
2112
- "email": "sb@sebastian-bergmann.de",
2113
- "role": "lead"
2114
- }
2115
- ],
2116
- "description": "Utility class for timing",
2117
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
2118
- "keywords": [
2119
- "timer"
2120
- ],
2121
- "support": {
2122
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
2123
- "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
2124
- },
2125
- "install-path": "../phpunit/php-timer"
2126
- },
2127
- {
2128
- "name": "phpunit/php-token-stream",
2129
- "version": "1.4.12",
2130
- "version_normalized": "1.4.12.0",
2131
- "source": {
2132
- "type": "git",
2133
- "url": "https://github.com/sebastianbergmann/php-token-stream.git",
2134
- "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
2135
- },
2136
- "dist": {
2137
- "type": "zip",
2138
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
2139
- "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
2140
- "shasum": ""
2141
- },
2142
- "require": {
2143
- "ext-tokenizer": "*",
2144
- "php": ">=5.3.3"
2145
- },
2146
- "require-dev": {
2147
- "phpunit/phpunit": "~4.2"
2148
- },
2149
- "time": "2017-12-04T08:55:13+00:00",
2150
- "type": "library",
2151
- "extra": {
2152
- "branch-alias": {
2153
- "dev-master": "1.4-dev"
2154
- }
2155
- },
2156
- "installation-source": "dist",
2157
- "autoload": {
2158
- "classmap": [
2159
- "src/"
2160
- ]
2161
- },
2162
- "notification-url": "https://packagist.org/downloads/",
2163
- "license": [
2164
- "BSD-3-Clause"
2165
- ],
2166
- "authors": [
2167
- {
2168
- "name": "Sebastian Bergmann",
2169
- "email": "sebastian@phpunit.de"
2170
- }
2171
- ],
2172
- "description": "Wrapper around PHP's tokenizer extension.",
2173
- "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
2174
- "keywords": [
2175
- "tokenizer"
2176
- ],
2177
- "support": {
2178
- "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
2179
- "source": "https://github.com/sebastianbergmann/php-token-stream/tree/1.4"
2180
- },
2181
- "abandoned": true,
2182
- "install-path": "../phpunit/php-token-stream"
2183
- },
2184
- {
2185
- "name": "phpunit/phpunit",
2186
- "version": "5.7.27",
2187
- "version_normalized": "5.7.27.0",
2188
- "source": {
2189
- "type": "git",
2190
- "url": "https://github.com/sebastianbergmann/phpunit.git",
2191
- "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
2192
- },
2193
- "dist": {
2194
- "type": "zip",
2195
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
2196
- "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
2197
- "shasum": ""
2198
- },
2199
- "require": {
2200
- "ext-dom": "*",
2201
- "ext-json": "*",
2202
- "ext-libxml": "*",
2203
- "ext-mbstring": "*",
2204
- "ext-xml": "*",
2205
- "myclabs/deep-copy": "~1.3",
2206
- "php": "^5.6 || ^7.0",
2207
- "phpspec/prophecy": "^1.6.2",
2208
- "phpunit/php-code-coverage": "^4.0.4",
2209
- "phpunit/php-file-iterator": "~1.4",
2210
- "phpunit/php-text-template": "~1.2",
2211
- "phpunit/php-timer": "^1.0.6",
2212
- "phpunit/phpunit-mock-objects": "^3.2",
2213
- "sebastian/comparator": "^1.2.4",
2214
- "sebastian/diff": "^1.4.3",
2215
- "sebastian/environment": "^1.3.4 || ^2.0",
2216
- "sebastian/exporter": "~2.0",
2217
- "sebastian/global-state": "^1.1",
2218
- "sebastian/object-enumerator": "~2.0",
2219
- "sebastian/resource-operations": "~1.0",
2220
- "sebastian/version": "^1.0.6|^2.0.1",
2221
- "symfony/yaml": "~2.1|~3.0|~4.0"
2222
- },
2223
- "conflict": {
2224
- "phpdocumentor/reflection-docblock": "3.0.2"
2225
- },
2226
- "require-dev": {
2227
- "ext-pdo": "*"
2228
- },
2229
- "suggest": {
2230
- "ext-xdebug": "*",
2231
- "phpunit/php-invoker": "~1.1"
2232
- },
2233
- "time": "2018-02-01T05:50:59+00:00",
2234
- "bin": [
2235
- "phpunit"
2236
- ],
2237
- "type": "library",
2238
- "extra": {
2239
- "branch-alias": {
2240
- "dev-master": "5.7.x-dev"
2241
- }
2242
- },
2243
- "installation-source": "dist",
2244
- "autoload": {
2245
- "classmap": [
2246
- "src/"
2247
- ]
2248
- },
2249
- "notification-url": "https://packagist.org/downloads/",
2250
- "license": [
2251
- "BSD-3-Clause"
2252
- ],
2253
- "authors": [
2254
- {
2255
- "name": "Sebastian Bergmann",
2256
- "email": "sebastian@phpunit.de",
2257
- "role": "lead"
2258
- }
2259
- ],
2260
- "description": "The PHP Unit Testing framework.",
2261
- "homepage": "https://phpunit.de/",
2262
- "keywords": [
2263
- "phpunit",
2264
- "testing",
2265
- "xunit"
2266
- ],
2267
- "support": {
2268
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
2269
- "source": "https://github.com/sebastianbergmann/phpunit/tree/5.7.27"
2270
- },
2271
- "install-path": "../phpunit/phpunit"
2272
- },
2273
- {
2274
- "name": "phpunit/phpunit-mock-objects",
2275
- "version": "3.4.4",
2276
- "version_normalized": "3.4.4.0",
2277
- "source": {
2278
- "type": "git",
2279
- "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
2280
- "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
2281
- },
2282
- "dist": {
2283
- "type": "zip",
2284
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
2285
- "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
2286
- "shasum": ""
2287
- },
2288
- "require": {
2289
- "doctrine/instantiator": "^1.0.2",
2290
- "php": "^5.6 || ^7.0",
2291
- "phpunit/php-text-template": "^1.2",
2292
- "sebastian/exporter": "^1.2 || ^2.0"
2293
- },
2294
- "conflict": {
2295
- "phpunit/phpunit": "<5.4.0"
2296
- },
2297
- "require-dev": {
2298
- "phpunit/phpunit": "^5.4"
2299
- },
2300
- "suggest": {
2301
- "ext-soap": "*"
2302
- },
2303
- "time": "2017-06-30T09:13:00+00:00",
2304
- "type": "library",
2305
- "extra": {
2306
- "branch-alias": {
2307
- "dev-master": "3.2.x-dev"
2308
- }
2309
- },
2310
- "installation-source": "dist",
2311
- "autoload": {
2312
- "classmap": [
2313
- "src/"
2314
- ]
2315
- },
2316
- "notification-url": "https://packagist.org/downloads/",
2317
- "license": [
2318
- "BSD-3-Clause"
2319
- ],
2320
- "authors": [
2321
- {
2322
- "name": "Sebastian Bergmann",
2323
- "email": "sb@sebastian-bergmann.de",
2324
- "role": "lead"
2325
- }
2326
- ],
2327
- "description": "Mock Object library for PHPUnit",
2328
- "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
2329
- "keywords": [
2330
- "mock",
2331
- "xunit"
2332
- ],
2333
- "support": {
2334
- "irc": "irc://irc.freenode.net/phpunit",
2335
- "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
2336
- "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/3.4"
2337
- },
2338
- "abandoned": true,
2339
- "install-path": "../phpunit/phpunit-mock-objects"
2340
- },
2341
- {
2342
- "name": "psr/cache",
2343
- "version": "1.0.1",
2344
- "version_normalized": "1.0.1.0",
2345
- "source": {
2346
- "type": "git",
2347
- "url": "https://github.com/php-fig/cache.git",
2348
- "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
2349
- },
2350
- "dist": {
2351
- "type": "zip",
2352
- "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
2353
- "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
2354
- "shasum": ""
2355
- },
2356
- "require": {
2357
- "php": ">=5.3.0"
2358
- },
2359
- "time": "2016-08-06T20:24:11+00:00",
2360
- "type": "library",
2361
- "extra": {
2362
- "branch-alias": {
2363
- "dev-master": "1.0.x-dev"
2364
- }
2365
- },
2366
- "installation-source": "dist",
2367
- "autoload": {
2368
- "psr-4": {
2369
- "Psr\\Cache\\": "src/"
2370
- }
2371
- },
2372
- "notification-url": "https://packagist.org/downloads/",
2373
- "license": [
2374
- "MIT"
2375
- ],
2376
- "authors": [
2377
- {
2378
- "name": "PHP-FIG",
2379
- "homepage": "http://www.php-fig.org/"
2380
- }
2381
- ],
2382
- "description": "Common interface for caching libraries",
2383
- "keywords": [
2384
- "cache",
2385
- "psr",
2386
- "psr-6"
2387
- ],
2388
- "support": {
2389
- "source": "https://github.com/php-fig/cache/tree/master"
2390
- },
2391
- "install-path": "../psr/cache"
2392
- },
2393
- {
2394
- "name": "psr/http-message",
2395
- "version": "1.0.1",
2396
- "version_normalized": "1.0.1.0",
2397
- "source": {
2398
- "type": "git",
2399
- "url": "https://github.com/php-fig/http-message.git",
2400
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
2401
- },
2402
- "dist": {
2403
- "type": "zip",
2404
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
2405
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
2406
- "shasum": ""
2407
- },
2408
- "require": {
2409
- "php": ">=5.3.0"
2410
- },
2411
- "time": "2016-08-06T14:39:51+00:00",
2412
- "type": "library",
2413
- "extra": {
2414
- "branch-alias": {
2415
- "dev-master": "1.0.x-dev"
2416
- }
2417
- },
2418
- "installation-source": "dist",
2419
- "autoload": {
2420
- "psr-4": {
2421
- "Psr\\Http\\Message\\": "src/"
2422
- }
2423
- },
2424
- "notification-url": "https://packagist.org/downloads/",
2425
- "license": [
2426
- "MIT"
2427
- ],
2428
- "authors": [
2429
- {
2430
- "name": "PHP-FIG",
2431
- "homepage": "http://www.php-fig.org/"
2432
- }
2433
- ],
2434
- "description": "Common interface for HTTP messages",
2435
- "homepage": "https://github.com/php-fig/http-message",
2436
- "keywords": [
2437
- "http",
2438
- "http-message",
2439
- "psr",
2440
- "psr-7",
2441
- "request",
2442
- "response"
2443
- ],
2444
- "support": {
2445
- "source": "https://github.com/php-fig/http-message/tree/master"
2446
- },
2447
- "install-path": "../psr/http-message"
2448
- },
2449
- {
2450
- "name": "psr/log",
2451
- "version": "1.1.3",
2452
- "version_normalized": "1.1.3.0",
2453
- "source": {
2454
- "type": "git",
2455
- "url": "https://github.com/php-fig/log.git",
2456
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
2457
- },
2458
- "dist": {
2459
- "type": "zip",
2460
- "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
2461
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
2462
- "shasum": ""
2463
- },
2464
- "require": {
2465
- "php": ">=5.3.0"
2466
- },
2467
- "time": "2020-03-23T09:12:05+00:00",
2468
- "type": "library",
2469
- "extra": {
2470
- "branch-alias": {
2471
- "dev-master": "1.1.x-dev"
2472
- }
2473
- },
2474
- "installation-source": "dist",
2475
- "autoload": {
2476
- "psr-4": {
2477
- "Psr\\Log\\": "Psr/Log/"
2478
- }
2479
- },
2480
- "notification-url": "https://packagist.org/downloads/",
2481
- "license": [
2482
- "MIT"
2483
- ],
2484
- "authors": [
2485
- {
2486
- "name": "PHP-FIG",
2487
- "homepage": "http://www.php-fig.org/"
2488
- }
2489
- ],
2490
- "description": "Common interface for logging libraries",
2491
- "homepage": "https://github.com/php-fig/log",
2492
- "keywords": [
2493
- "log",
2494
- "psr",
2495
- "psr-3"
2496
- ],
2497
- "support": {
2498
- "source": "https://github.com/php-fig/log/tree/1.1.3"
2499
- },
2500
- "install-path": "../psr/log"
2501
- },
2502
- {
2503
- "name": "ralouphie/getallheaders",
2504
- "version": "3.0.3",
2505
- "version_normalized": "3.0.3.0",
2506
- "source": {
2507
- "type": "git",
2508
- "url": "https://github.com/ralouphie/getallheaders.git",
2509
- "reference": "120b605dfeb996808c31b6477290a714d356e822"
2510
- },
2511
- "dist": {
2512
- "type": "zip",
2513
- "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
2514
- "reference": "120b605dfeb996808c31b6477290a714d356e822",
2515
- "shasum": ""
2516
- },
2517
- "require": {
2518
- "php": ">=5.6"
2519
- },
2520
- "require-dev": {
2521
- "php-coveralls/php-coveralls": "^2.1",
2522
- "phpunit/phpunit": "^5 || ^6.5"
2523
- },
2524
- "time": "2019-03-08T08:55:37+00:00",
2525
- "type": "library",
2526
- "installation-source": "dist",
2527
- "autoload": {
2528
- "files": [
2529
- "src/getallheaders.php"
2530
- ]
2531
- },
2532
- "notification-url": "https://packagist.org/downloads/",
2533
- "license": [
2534
- "MIT"
2535
- ],
2536
- "authors": [
2537
- {
2538
- "name": "Ralph Khattar",
2539
- "email": "ralph.khattar@gmail.com"
2540
- }
2541
- ],
2542
- "description": "A polyfill for getallheaders.",
2543
- "support": {
2544
- "issues": "https://github.com/ralouphie/getallheaders/issues",
2545
- "source": "https://github.com/ralouphie/getallheaders/tree/develop"
2546
- },
2547
- "install-path": "../ralouphie/getallheaders"
2548
- },
2549
- {
2550
- "name": "sebastian/code-unit-reverse-lookup",
2551
- "version": "1.0.2",
2552
- "version_normalized": "1.0.2.0",
2553
- "source": {
2554
- "type": "git",
2555
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
2556
- "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
2557
- },
2558
- "dist": {
2559
- "type": "zip",
2560
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
2561
- "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
2562
- "shasum": ""
2563
- },
2564
- "require": {
2565
- "php": ">=5.6"
2566
- },
2567
- "require-dev": {
2568
- "phpunit/phpunit": "^8.5"
2569
- },
2570
- "time": "2020-11-30T08:15:22+00:00",
2571
- "type": "library",
2572
- "extra": {
2573
- "branch-alias": {
2574
- "dev-master": "1.0.x-dev"
2575
- }
2576
- },
2577
- "installation-source": "dist",
2578
- "autoload": {
2579
- "classmap": [
2580
- "src/"
2581
- ]
2582
- },
2583
- "notification-url": "https://packagist.org/downloads/",
2584
- "license": [
2585
- "BSD-3-Clause"
2586
- ],
2587
- "authors": [
2588
- {
2589
- "name": "Sebastian Bergmann",
2590
- "email": "sebastian@phpunit.de"
2591
- }
2592
- ],
2593
- "description": "Looks up which function or method a line of code belongs to",
2594
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
2595
- "support": {
2596
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
2597
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
2598
- },
2599
- "funding": [
2600
- {
2601
- "url": "https://github.com/sebastianbergmann",
2602
- "type": "github"
2603
- }
2604
- ],
2605
- "install-path": "../sebastian/code-unit-reverse-lookup"
2606
- },
2607
- {
2608
- "name": "sebastian/comparator",
2609
- "version": "1.2.4",
2610
- "version_normalized": "1.2.4.0",
2611
- "source": {
2612
- "type": "git",
2613
- "url": "https://github.com/sebastianbergmann/comparator.git",
2614
- "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
2615
- },
2616
- "dist": {
2617
- "type": "zip",
2618
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
2619
- "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
2620
- "shasum": ""
2621
- },
2622
- "require": {
2623
- "php": ">=5.3.3",
2624
- "sebastian/diff": "~1.2",
2625
- "sebastian/exporter": "~1.2 || ~2.0"
2626
- },
2627
- "require-dev": {
2628
- "phpunit/phpunit": "~4.4"
2629
- },
2630
- "time": "2017-01-29T09:50:25+00:00",
2631
- "type": "library",
2632
- "extra": {
2633
- "branch-alias": {
2634
- "dev-master": "1.2.x-dev"
2635
- }
2636
- },
2637
- "installation-source": "dist",
2638
- "autoload": {
2639
- "classmap": [
2640
- "src/"
2641
- ]
2642
- },
2643
- "notification-url": "https://packagist.org/downloads/",
2644
- "license": [
2645
- "BSD-3-Clause"
2646
- ],
2647
- "authors": [
2648
- {
2649
- "name": "Jeff Welch",
2650
- "email": "whatthejeff@gmail.com"
2651
- },
2652
- {
2653
- "name": "Volker Dusch",
2654
- "email": "github@wallbash.com"
2655
- },
2656
- {
2657
- "name": "Bernhard Schussek",
2658
- "email": "bschussek@2bepublished.at"
2659
- },
2660
- {
2661
- "name": "Sebastian Bergmann",
2662
- "email": "sebastian@phpunit.de"
2663
- }
2664
- ],
2665
- "description": "Provides the functionality to compare PHP values for equality",
2666
- "homepage": "http://www.github.com/sebastianbergmann/comparator",
2667
- "keywords": [
2668
- "comparator",
2669
- "compare",
2670
- "equality"
2671
- ],
2672
- "support": {
2673
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
2674
- "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
2675
- },
2676
- "install-path": "../sebastian/comparator"
2677
- },
2678
- {
2679
- "name": "sebastian/diff",
2680
- "version": "1.4.3",
2681
- "version_normalized": "1.4.3.0",
2682
- "source": {
2683
- "type": "git",
2684
- "url": "https://github.com/sebastianbergmann/diff.git",
2685
- "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
2686
- },
2687
- "dist": {
2688
- "type": "zip",
2689
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
2690
- "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
2691
- "shasum": ""
2692
- },
2693
- "require": {
2694
- "php": "^5.3.3 || ^7.0"
2695
- },
2696
- "require-dev": {
2697
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
2698
- },
2699
- "time": "2017-05-22T07:24:03+00:00",
2700
- "type": "library",
2701
- "extra": {
2702
- "branch-alias": {
2703
- "dev-master": "1.4-dev"
2704
- }
2705
- },
2706
- "installation-source": "dist",
2707
- "autoload": {
2708
- "classmap": [
2709
- "src/"
2710
- ]
2711
- },
2712
- "notification-url": "https://packagist.org/downloads/",
2713
- "license": [
2714
- "BSD-3-Clause"
2715
- ],
2716
- "authors": [
2717
- {
2718
- "name": "Kore Nordmann",
2719
- "email": "mail@kore-nordmann.de"
2720
- },
2721
- {
2722
- "name": "Sebastian Bergmann",
2723
- "email": "sebastian@phpunit.de"
2724
- }
2725
- ],
2726
- "description": "Diff implementation",
2727
- "homepage": "https://github.com/sebastianbergmann/diff",
2728
- "keywords": [
2729
- "diff"
2730
- ],
2731
- "support": {
2732
- "issues": "https://github.com/sebastianbergmann/diff/issues",
2733
- "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
2734
- },
2735
- "install-path": "../sebastian/diff"
2736
- },
2737
- {
2738
- "name": "sebastian/environment",
2739
- "version": "2.0.0",
2740
- "version_normalized": "2.0.0.0",
2741
- "source": {
2742
- "type": "git",
2743
- "url": "https://github.com/sebastianbergmann/environment.git",
2744
- "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
2745
- },
2746
- "dist": {
2747
- "type": "zip",
2748
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
2749
- "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
2750
- "shasum": ""
2751
- },
2752
- "require": {
2753
- "php": "^5.6 || ^7.0"
2754
- },
2755
- "require-dev": {
2756
- "phpunit/phpunit": "^5.0"
2757
- },
2758
- "time": "2016-11-26T07:53:53+00:00",
2759
- "type": "library",
2760
- "extra": {
2761
- "branch-alias": {
2762
- "dev-master": "2.0.x-dev"
2763
- }
2764
- },
2765
- "installation-source": "dist",
2766
- "autoload": {
2767
- "classmap": [
2768
- "src/"
2769
- ]
2770
- },
2771
- "notification-url": "https://packagist.org/downloads/",
2772
- "license": [
2773
- "BSD-3-Clause"
2774
- ],
2775
- "authors": [
2776
- {
2777
- "name": "Sebastian Bergmann",
2778
- "email": "sebastian@phpunit.de"
2779
- }
2780
- ],
2781
- "description": "Provides functionality to handle HHVM/PHP environments",
2782
- "homepage": "http://www.github.com/sebastianbergmann/environment",
2783
- "keywords": [
2784
- "Xdebug",
2785
- "environment",
2786
- "hhvm"
2787
- ],
2788
- "support": {
2789
- "issues": "https://github.com/sebastianbergmann/environment/issues",
2790
- "source": "https://github.com/sebastianbergmann/environment/tree/master"
2791
- },
2792
- "install-path": "../sebastian/environment"
2793
- },
2794
- {
2795
- "name": "sebastian/exporter",
2796
- "version": "2.0.0",
2797
- "version_normalized": "2.0.0.0",
2798
- "source": {
2799
- "type": "git",
2800
- "url": "https://github.com/sebastianbergmann/exporter.git",
2801
- "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
2802
- },
2803
- "dist": {
2804
- "type": "zip",
2805
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
2806
- "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
2807
- "shasum": ""
2808
- },
2809
- "require": {
2810
- "php": ">=5.3.3",
2811
- "sebastian/recursion-context": "~2.0"
2812
- },
2813
- "require-dev": {
2814
- "ext-mbstring": "*",
2815
- "phpunit/phpunit": "~4.4"
2816
- },
2817
- "time": "2016-11-19T08:54:04+00:00",
2818
- "type": "library",
2819
- "extra": {
2820
- "branch-alias": {
2821
- "dev-master": "2.0.x-dev"
2822
- }
2823
- },
2824
- "installation-source": "dist",
2825
- "autoload": {
2826
- "classmap": [
2827
- "src/"
2828
- ]
2829
- },
2830
- "notification-url": "https://packagist.org/downloads/",
2831
- "license": [
2832
- "BSD-3-Clause"
2833
- ],
2834
- "authors": [
2835
- {
2836
- "name": "Jeff Welch",
2837
- "email": "whatthejeff@gmail.com"
2838
- },
2839
- {
2840
- "name": "Volker Dusch",
2841
- "email": "github@wallbash.com"
2842
- },
2843
- {
2844
- "name": "Bernhard Schussek",
2845
- "email": "bschussek@2bepublished.at"
2846
- },
2847
- {
2848
- "name": "Sebastian Bergmann",
2849
- "email": "sebastian@phpunit.de"
2850
- },
2851
- {
2852
- "name": "Adam Harvey",
2853
- "email": "aharvey@php.net"
2854
- }
2855
- ],
2856
- "description": "Provides the functionality to export PHP variables for visualization",
2857
- "homepage": "http://www.github.com/sebastianbergmann/exporter",
2858
- "keywords": [
2859
- "export",
2860
- "exporter"
2861
- ],
2862
- "support": {
2863
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
2864
- "source": "https://github.com/sebastianbergmann/exporter/tree/master"
2865
- },
2866
- "install-path": "../sebastian/exporter"
2867
- },
2868
- {
2869
- "name": "sebastian/global-state",
2870
- "version": "1.1.1",
2871
- "version_normalized": "1.1.1.0",
2872
- "source": {
2873
- "type": "git",
2874
- "url": "https://github.com/sebastianbergmann/global-state.git",
2875
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
2876
- },
2877
- "dist": {
2878
- "type": "zip",
2879
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
2880
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
2881
- "shasum": ""
2882
- },
2883
- "require": {
2884
- "php": ">=5.3.3"
2885
- },
2886
- "require-dev": {
2887
- "phpunit/phpunit": "~4.2"
2888
- },
2889
- "suggest": {
2890
- "ext-uopz": "*"
2891
- },
2892
- "time": "2015-10-12T03:26:01+00:00",
2893
- "type": "library",
2894
- "extra": {
2895
- "branch-alias": {
2896
- "dev-master": "1.0-dev"
2897
- }
2898
- },
2899
- "installation-source": "dist",
2900
- "autoload": {
2901
- "classmap": [
2902
- "src/"
2903
- ]
2904
- },
2905
- "notification-url": "https://packagist.org/downloads/",
2906
- "license": [
2907
- "BSD-3-Clause"
2908
- ],
2909
- "authors": [
2910
- {
2911
- "name": "Sebastian Bergmann",
2912
- "email": "sebastian@phpunit.de"
2913
- }
2914
- ],
2915
- "description": "Snapshotting of global state",
2916
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
2917
- "keywords": [
2918
- "global state"
2919
- ],
2920
- "support": {
2921
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
2922
- "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
2923
- },
2924
- "install-path": "../sebastian/global-state"
2925
- },
2926
- {
2927
- "name": "sebastian/object-enumerator",
2928
- "version": "2.0.1",
2929
- "version_normalized": "2.0.1.0",
2930
- "source": {
2931
- "type": "git",
2932
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
2933
- "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
2934
- },
2935
- "dist": {
2936
- "type": "zip",
2937
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
2938
- "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
2939
- "shasum": ""
2940
- },
2941
- "require": {
2942
- "php": ">=5.6",
2943
- "sebastian/recursion-context": "~2.0"
2944
- },
2945
- "require-dev": {
2946
- "phpunit/phpunit": "~5"
2947
- },
2948
- "time": "2017-02-18T15:18:39+00:00",
2949
- "type": "library",
2950
- "extra": {
2951
- "branch-alias": {
2952
- "dev-master": "2.0.x-dev"
2953
- }
2954
- },
2955
- "installation-source": "dist",
2956
- "autoload": {
2957
- "classmap": [
2958
- "src/"
2959
- ]
2960
- },
2961
- "notification-url": "https://packagist.org/downloads/",
2962
- "license": [
2963
- "BSD-3-Clause"
2964
- ],
2965
- "authors": [
2966
- {
2967
- "name": "Sebastian Bergmann",
2968
- "email": "sebastian@phpunit.de"
2969
- }
2970
- ],
2971
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
2972
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
2973
- "support": {
2974
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
2975
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
2976
- },
2977
- "install-path": "../sebastian/object-enumerator"
2978
- },
2979
- {
2980
- "name": "sebastian/recursion-context",
2981
- "version": "2.0.0",
2982
- "version_normalized": "2.0.0.0",
2983
- "source": {
2984
- "type": "git",
2985
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
2986
- "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
2987
- },
2988
- "dist": {
2989
- "type": "zip",
2990
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
2991
- "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
2992
- "shasum": ""
2993
- },
2994
- "require": {
2995
- "php": ">=5.3.3"
2996
- },
2997
- "require-dev": {
2998
- "phpunit/phpunit": "~4.4"
2999
- },
3000
- "time": "2016-11-19T07:33:16+00:00",
3001
- "type": "library",
3002
- "extra": {
3003
- "branch-alias": {
3004
- "dev-master": "2.0.x-dev"
3005
- }
3006
- },
3007
- "installation-source": "dist",
3008
- "autoload": {
3009
- "classmap": [
3010
- "src/"
3011
- ]
3012
- },
3013
- "notification-url": "https://packagist.org/downloads/",
3014
- "license": [
3015
- "BSD-3-Clause"
3016
- ],
3017
- "authors": [
3018
- {
3019
- "name": "Jeff Welch",
3020
- "email": "whatthejeff@gmail.com"
3021
- },
3022
- {
3023
- "name": "Sebastian Bergmann",
3024
- "email": "sebastian@phpunit.de"
3025
- },
3026
- {
3027
- "name": "Adam Harvey",
3028
- "email": "aharvey@php.net"
3029
- }
3030
- ],
3031
- "description": "Provides functionality to recursively process PHP variables",
3032
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
3033
- "support": {
3034
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
3035
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
3036
- },
3037
- "install-path": "../sebastian/recursion-context"
3038
- },
3039
- {
3040
- "name": "sebastian/resource-operations",
3041
- "version": "1.0.0",
3042
- "version_normalized": "1.0.0.0",
3043
- "source": {
3044
- "type": "git",
3045
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
3046
- "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
3047
- },
3048
- "dist": {
3049
- "type": "zip",
3050
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
3051
- "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
3052
- "shasum": ""
3053
- },
3054
- "require": {
3055
- "php": ">=5.6.0"
3056
- },
3057
- "time": "2015-07-28T20:34:47+00:00",
3058
- "type": "library",
3059
- "extra": {
3060
- "branch-alias": {
3061
- "dev-master": "1.0.x-dev"
3062
- }
3063
- },
3064
- "installation-source": "dist",
3065
- "autoload": {
3066
- "classmap": [
3067
- "src/"
3068
- ]
3069
- },
3070
- "notification-url": "https://packagist.org/downloads/",
3071
- "license": [
3072
- "BSD-3-Clause"
3073
- ],
3074
- "authors": [
3075
- {
3076
- "name": "Sebastian Bergmann",
3077
- "email": "sebastian@phpunit.de"
3078
- }
3079
- ],
3080
- "description": "Provides a list of PHP built-in functions that operate on resources",
3081
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
3082
- "support": {
3083
- "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
3084
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
3085
- },
3086
- "install-path": "../sebastian/resource-operations"
3087
- },
3088
- {
3089
- "name": "sebastian/version",
3090
- "version": "2.0.1",
3091
- "version_normalized": "2.0.1.0",
3092
- "source": {
3093
- "type": "git",
3094
- "url": "https://github.com/sebastianbergmann/version.git",
3095
- "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
3096
- },
3097
- "dist": {
3098
- "type": "zip",
3099
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
3100
- "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
3101
- "shasum": ""
3102
- },
3103
- "require": {
3104
- "php": ">=5.6"
3105
- },
3106
- "time": "2016-10-03T07:35:21+00:00",
3107
- "type": "library",
3108
- "extra": {
3109
- "branch-alias": {
3110
- "dev-master": "2.0.x-dev"
3111
- }
3112
- },
3113
- "installation-source": "dist",
3114
- "autoload": {
3115
- "classmap": [
3116
- "src/"
3117
- ]
3118
- },
3119
- "notification-url": "https://packagist.org/downloads/",
3120
- "license": [
3121
- "BSD-3-Clause"
3122
- ],
3123
- "authors": [
3124
- {
3125
- "name": "Sebastian Bergmann",
3126
- "email": "sebastian@phpunit.de",
3127
- "role": "lead"
3128
- }
3129
- ],
3130
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
3131
- "homepage": "https://github.com/sebastianbergmann/version",
3132
- "support": {
3133
- "issues": "https://github.com/sebastianbergmann/version/issues",
3134
- "source": "https://github.com/sebastianbergmann/version/tree/master"
3135
- },
3136
- "install-path": "../sebastian/version"
3137
- },
3138
- {
3139
- "name": "seld/jsonlint",
3140
- "version": "1.8.3",
3141
- "version_normalized": "1.8.3.0",
3142
- "source": {
3143
- "type": "git",
3144
- "url": "https://github.com/Seldaek/jsonlint.git",
3145
- "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
3146
- },
3147
- "dist": {
3148
- "type": "zip",
3149
- "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
3150
- "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
3151
- "shasum": ""
3152
- },
3153
- "require": {
3154
- "php": "^5.3 || ^7.0 || ^8.0"
3155
- },
3156
- "require-dev": {
3157
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
3158
- },
3159
- "time": "2020-11-11T09:19:24+00:00",
3160
- "bin": [
3161
- "bin/jsonlint"
3162
- ],
3163
- "type": "library",
3164
- "installation-source": "dist",
3165
- "autoload": {
3166
- "psr-4": {
3167
- "Seld\\JsonLint\\": "src/Seld/JsonLint/"
3168
- }
3169
- },
3170
- "notification-url": "https://packagist.org/downloads/",
3171
- "license": [
3172
- "MIT"
3173
- ],
3174
- "authors": [
3175
- {
3176
- "name": "Jordi Boggiano",
3177
- "email": "j.boggiano@seld.be",
3178
- "homepage": "http://seld.be"
3179
- }
3180
- ],
3181
- "description": "JSON Linter",
3182
- "keywords": [
3183
- "json",
3184
- "linter",
3185
- "parser",
3186
- "validator"
3187
- ],
3188
- "support": {
3189
- "issues": "https://github.com/Seldaek/jsonlint/issues",
3190
- "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
3191
- },
3192
- "funding": [
3193
- {
3194
- "url": "https://github.com/Seldaek",
3195
- "type": "github"
3196
- },
3197
- {
3198
- "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
3199
- "type": "tidelift"
3200
- }
3201
- ],
3202
- "install-path": "../seld/jsonlint"
3203
- },
3204
- {
3205
- "name": "seld/phar-utils",
3206
- "version": "1.1.1",
3207
- "version_normalized": "1.1.1.0",
3208
- "source": {
3209
- "type": "git",
3210
- "url": "https://github.com/Seldaek/phar-utils.git",
3211
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
3212
- },
3213
- "dist": {
3214
- "type": "zip",
3215
- "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
3216
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
3217
- "shasum": ""
3218
- },
3219
- "require": {
3220
- "php": ">=5.3"
3221
- },
3222
- "time": "2020-07-07T18:42:57+00:00",
3223
- "type": "library",
3224
- "extra": {
3225
- "branch-alias": {
3226
- "dev-master": "1.x-dev"
3227
- }
3228
- },
3229
- "installation-source": "dist",
3230
- "autoload": {
3231
- "psr-4": {
3232
- "Seld\\PharUtils\\": "src/"
3233
- }
3234
- },
3235
- "notification-url": "https://packagist.org/downloads/",
3236
- "license": [
3237
- "MIT"
3238
- ],
3239
- "authors": [
3240
- {
3241
- "name": "Jordi Boggiano",
3242
- "email": "j.boggiano@seld.be"
3243
- }
3244
- ],
3245
- "description": "PHAR file format utilities, for when PHP phars you up",
3246
- "keywords": [
3247
- "phar"
3248
- ],
3249
- "support": {
3250
- "issues": "https://github.com/Seldaek/phar-utils/issues",
3251
- "source": "https://github.com/Seldaek/phar-utils/tree/master"
3252
- },
3253
- "install-path": "../seld/phar-utils"
3254
- },
3255
- {
3256
- "name": "squizlabs/php_codesniffer",
3257
- "version": "2.9.2",
3258
- "version_normalized": "2.9.2.0",
3259
- "source": {
3260
- "type": "git",
3261
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
3262
- "reference": "2acf168de78487db620ab4bc524135a13cfe6745"
3263
- },
3264
- "dist": {
3265
- "type": "zip",
3266
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/2acf168de78487db620ab4bc524135a13cfe6745",
3267
- "reference": "2acf168de78487db620ab4bc524135a13cfe6745",
3268
- "shasum": ""
3269
- },
3270
- "require": {
3271
- "ext-simplexml": "*",
3272
- "ext-tokenizer": "*",
3273
- "ext-xmlwriter": "*",
3274
- "php": ">=5.1.2"
3275
- },
3276
- "require-dev": {
3277
- "phpunit/phpunit": "~4.0"
3278
- },
3279
- "time": "2018-11-07T22:31:41+00:00",
3280
- "bin": [
3281
- "scripts/phpcs",
3282
- "scripts/phpcbf"
3283
- ],
3284
- "type": "library",
3285
- "extra": {
3286
- "branch-alias": {
3287
- "dev-master": "2.x-dev"
3288
- }
3289
- },
3290
- "installation-source": "dist",
3291
- "autoload": {
3292
- "classmap": [
3293
- "CodeSniffer.php",
3294
- "CodeSniffer/CLI.php",
3295
- "CodeSniffer/Exception.php",
3296
- "CodeSniffer/File.php",
3297
- "CodeSniffer/Fixer.php",
3298
- "CodeSniffer/Report.php",
3299
- "CodeSniffer/Reporting.php",
3300
- "CodeSniffer/Sniff.php",
3301
- "CodeSniffer/Tokens.php",
3302
- "CodeSniffer/Reports/",
3303
- "CodeSniffer/Tokenizers/",
3304
- "CodeSniffer/DocGenerators/",
3305
- "CodeSniffer/Standards/AbstractPatternSniff.php",
3306
- "CodeSniffer/Standards/AbstractScopeSniff.php",
3307
- "CodeSniffer/Standards/AbstractVariableSniff.php",
3308
- "CodeSniffer/Standards/IncorrectPatternException.php",
3309
- "CodeSniffer/Standards/Generic/Sniffs/",
3310
- "CodeSniffer/Standards/MySource/Sniffs/",
3311
- "CodeSniffer/Standards/PEAR/Sniffs/",
3312
- "CodeSniffer/Standards/PSR1/Sniffs/",
3313
- "CodeSniffer/Standards/PSR2/Sniffs/",
3314
- "CodeSniffer/Standards/Squiz/Sniffs/",
3315
- "CodeSniffer/Standards/Zend/Sniffs/"
3316
- ]
3317
- },
3318
- "notification-url": "https://packagist.org/downloads/",
3319
- "license": [
3320
- "BSD-3-Clause"
3321
- ],
3322
- "authors": [
3323
- {
3324
- "name": "Greg Sherwood",
3325
- "role": "lead"
3326
- }
3327
- ],
3328
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
3329
- "homepage": "http://www.squizlabs.com/php-codesniffer",
3330
- "keywords": [
3331
- "phpcs",
3332
- "standards"
3333
- ],
3334
- "support": {
3335
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
3336
- "source": "https://github.com/squizlabs/PHP_CodeSniffer",
3337
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
3338
- },
3339
- "install-path": "../squizlabs/php_codesniffer"
3340
- },
3341
- {
3342
- "name": "symfony/console",
3343
- "version": "v3.4.47",
3344
- "version_normalized": "3.4.47.0",
3345
- "source": {
3346
- "type": "git",
3347
- "url": "https://github.com/symfony/console.git",
3348
- "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
3349
- },
3350
- "dist": {
3351
- "type": "zip",
3352
- "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
3353
- "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
3354
- "shasum": ""
3355
- },
3356
- "require": {
3357
- "php": "^5.5.9|>=7.0.8",
3358
- "symfony/debug": "~2.8|~3.0|~4.0",
3359
- "symfony/polyfill-mbstring": "~1.0"
3360
- },
3361
- "conflict": {
3362
- "symfony/dependency-injection": "<3.4",
3363
- "symfony/process": "<3.3"
3364
- },
3365
- "provide": {
3366
- "psr/log-implementation": "1.0"
3367
- },
3368
- "require-dev": {
3369
- "psr/log": "~1.0",
3370
- "symfony/config": "~3.3|~4.0",
3371
- "symfony/dependency-injection": "~3.4|~4.0",
3372
- "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
3373
- "symfony/lock": "~3.4|~4.0",
3374
- "symfony/process": "~3.3|~4.0"
3375
- },
3376
- "suggest": {
3377
- "psr/log": "For using the console logger",
3378
- "symfony/event-dispatcher": "",
3379
- "symfony/lock": "",
3380
- "symfony/process": ""
3381
- },
3382
- "time": "2020-10-24T10:57:07+00:00",
3383
- "type": "library",
3384
- "installation-source": "dist",
3385
- "autoload": {
3386
- "psr-4": {
3387
- "Symfony\\Component\\Console\\": ""
3388
- },
3389
- "exclude-from-classmap": [
3390
- "/Tests/"
3391
- ]
3392
- },
3393
- "notification-url": "https://packagist.org/downloads/",
3394
- "license": [
3395
- "MIT"
3396
- ],
3397
- "authors": [
3398
- {
3399
- "name": "Fabien Potencier",
3400
- "email": "fabien@symfony.com"
3401
- },
3402
- {
3403
- "name": "Symfony Community",
3404
- "homepage": "https://symfony.com/contributors"
3405
- }
3406
- ],
3407
- "description": "Symfony Console Component",
3408
- "homepage": "https://symfony.com",
3409
- "support": {
3410
- "source": "https://github.com/symfony/console/tree/v3.4.47"
3411
- },
3412
- "funding": [
3413
- {
3414
- "url": "https://symfony.com/sponsor",
3415
- "type": "custom"
3416
- },
3417
- {
3418
- "url": "https://github.com/fabpot",
3419
- "type": "github"
3420
- },
3421
- {
3422
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3423
- "type": "tidelift"
3424
- }
3425
- ],
3426
- "install-path": "../symfony/console"
3427
- },
3428
- {
3429
- "name": "symfony/css-selector",
3430
- "version": "v2.8.52",
3431
- "version_normalized": "2.8.52.0",
3432
- "source": {
3433
- "type": "git",
3434
- "url": "https://github.com/symfony/css-selector.git",
3435
- "reference": "7b1692e418d7ccac24c373528453bc90e42797de"
3436
- },
3437
- "dist": {
3438
- "type": "zip",
3439
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/7b1692e418d7ccac24c373528453bc90e42797de",
3440
- "reference": "7b1692e418d7ccac24c373528453bc90e42797de",
3441
- "shasum": ""
3442
- },
3443
- "require": {
3444
- "php": ">=5.3.9"
3445
- },
3446
- "time": "2018-11-11T11:18:13+00:00",
3447
- "type": "library",
3448
- "extra": {
3449
- "branch-alias": {
3450
- "dev-master": "2.8-dev"
3451
- }
3452
- },
3453
- "installation-source": "dist",
3454
- "autoload": {
3455
- "psr-4": {
3456
- "Symfony\\Component\\CssSelector\\": ""
3457
- },
3458
- "exclude-from-classmap": [
3459
- "/Tests/"
3460
- ]
3461
- },
3462
- "notification-url": "https://packagist.org/downloads/",
3463
- "license": [
3464
- "MIT"
3465
- ],
3466
- "authors": [
3467
- {
3468
- "name": "Fabien Potencier",
3469
- "email": "fabien@symfony.com"
3470
- },
3471
- {
3472
- "name": "Jean-François Simon",
3473
- "email": "jeanfrancois.simon@sensiolabs.com"
3474
- },
3475
- {
3476
- "name": "Symfony Community",
3477
- "homepage": "https://symfony.com/contributors"
3478
- }
3479
- ],
3480
- "description": "Symfony CssSelector Component",
3481
- "homepage": "https://symfony.com",
3482
- "support": {
3483
- "source": "https://github.com/symfony/css-selector/tree/v2.8.52"
3484
- },
3485
- "install-path": "../symfony/css-selector"
3486
- },
3487
- {
3488
- "name": "symfony/debug",
3489
- "version": "v3.4.47",
3490
- "version_normalized": "3.4.47.0",
3491
- "source": {
3492
- "type": "git",
3493
- "url": "https://github.com/symfony/debug.git",
3494
- "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae"
3495
- },
3496
- "dist": {
3497
- "type": "zip",
3498
- "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
3499
- "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae",
3500
- "shasum": ""
3501
- },
3502
- "require": {
3503
- "php": "^5.5.9|>=7.0.8",
3504
- "psr/log": "~1.0"
3505
- },
3506
- "conflict": {
3507
- "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
3508
- },
3509
- "require-dev": {
3510
- "symfony/http-kernel": "~2.8|~3.0|~4.0"
3511
- },
3512
- "time": "2020-10-24T10:57:07+00:00",
3513
- "type": "library",
3514
- "installation-source": "dist",
3515
- "autoload": {
3516
- "psr-4": {
3517
- "Symfony\\Component\\Debug\\": ""
3518
- },
3519
- "exclude-from-classmap": [
3520
- "/Tests/"
3521
- ]
3522
- },
3523
- "notification-url": "https://packagist.org/downloads/",
3524
- "license": [
3525
- "MIT"
3526
- ],
3527
- "authors": [
3528
- {
3529
- "name": "Fabien Potencier",
3530
- "email": "fabien@symfony.com"
3531
- },
3532
- {
3533
- "name": "Symfony Community",
3534
- "homepage": "https://symfony.com/contributors"
3535
- }
3536
- ],
3537
- "description": "Symfony Debug Component",
3538
- "homepage": "https://symfony.com",
3539
- "support": {
3540
- "source": "https://github.com/symfony/debug/tree/v3.4.47"
3541
- },
3542
- "funding": [
3543
- {
3544
- "url": "https://symfony.com/sponsor",
3545
- "type": "custom"
3546
- },
3547
- {
3548
- "url": "https://github.com/fabpot",
3549
- "type": "github"
3550
- },
3551
- {
3552
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3553
- "type": "tidelift"
3554
- }
3555
- ],
3556
- "install-path": "../symfony/debug"
3557
- },
3558
- {
3559
- "name": "symfony/dom-crawler",
3560
- "version": "v2.8.52",
3561
- "version_normalized": "2.8.52.0",
3562
- "source": {
3563
- "type": "git",
3564
- "url": "https://github.com/symfony/dom-crawler.git",
3565
- "reference": "2cdc7d3909eea6f982a6298d2e9ab7db01b6403c"
3566
- },
3567
- "dist": {
3568
- "type": "zip",
3569
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2cdc7d3909eea6f982a6298d2e9ab7db01b6403c",
3570
- "reference": "2cdc7d3909eea6f982a6298d2e9ab7db01b6403c",
3571
- "shasum": ""
3572
- },
3573
- "require": {
3574
- "php": ">=5.3.9",
3575
- "symfony/polyfill-ctype": "~1.8",
3576
- "symfony/polyfill-mbstring": "~1.0"
3577
- },
3578
- "require-dev": {
3579
- "symfony/css-selector": "~2.8|~3.0.0"
3580
- },
3581
- "suggest": {
3582
- "symfony/css-selector": ""
3583
- },
3584
- "time": "2018-11-24T22:30:19+00:00",
3585
- "type": "library",
3586
- "extra": {
3587
- "branch-alias": {
3588
- "dev-master": "2.8-dev"
3589
- }
3590
- },
3591
- "installation-source": "dist",
3592
- "autoload": {
3593
- "psr-4": {
3594
- "Symfony\\Component\\DomCrawler\\": ""
3595
- },
3596
- "exclude-from-classmap": [
3597
- "/Tests/"
3598
- ]
3599
- },
3600
- "notification-url": "https://packagist.org/downloads/",
3601
- "license": [
3602
- "MIT"
3603
- ],
3604
- "authors": [
3605
- {
3606
- "name": "Fabien Potencier",
3607
- "email": "fabien@symfony.com"
3608
  },
3609
  {
3610
- "name": "Symfony Community",
3611
- "homepage": "https://symfony.com/contributors"
 
 
3612
  }
3613
  ],
3614
- "description": "Symfony DomCrawler Component",
3615
- "homepage": "https://symfony.com",
3616
- "support": {
3617
- "source": "https://github.com/symfony/dom-crawler/tree/v2.8.50"
3618
- },
3619
- "install-path": "../symfony/dom-crawler"
3620
- },
3621
- {
3622
- "name": "symfony/filesystem",
3623
- "version": "v3.4.47",
3624
- "version_normalized": "3.4.47.0",
3625
- "source": {
3626
- "type": "git",
3627
- "url": "https://github.com/symfony/filesystem.git",
3628
- "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3"
3629
- },
3630
- "dist": {
3631
- "type": "zip",
3632
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/e58d7841cddfed6e846829040dca2cca0ebbbbb3",
3633
- "reference": "e58d7841cddfed6e846829040dca2cca0ebbbbb3",
3634
- "shasum": ""
3635
- },
3636
- "require": {
3637
- "php": "^5.5.9|>=7.0.8",
3638
- "symfony/polyfill-ctype": "~1.8"
3639
- },
3640
- "time": "2020-10-24T10:57:07+00:00",
3641
- "type": "library",
3642
- "installation-source": "dist",
3643
- "autoload": {
3644
- "psr-4": {
3645
- "Symfony\\Component\\Filesystem\\": ""
3646
- },
3647
- "exclude-from-classmap": [
3648
- "/Tests/"
3649
- ]
3650
- },
3651
- "notification-url": "https://packagist.org/downloads/",
3652
- "license": [
3653
- "MIT"
3654
- ],
3655
- "authors": [
3656
- {
3657
- "name": "Fabien Potencier",
3658
- "email": "fabien@symfony.com"
3659
- },
3660
- {
3661
- "name": "Symfony Community",
3662
- "homepage": "https://symfony.com/contributors"
3663
- }
3664
  ],
3665
- "description": "Symfony Filesystem Component",
3666
- "homepage": "https://symfony.com",
3667
  "support": {
3668
- "source": "https://github.com/symfony/filesystem/tree/v3.4.47"
 
 
3669
  },
3670
- "funding": [
3671
- {
3672
- "url": "https://symfony.com/sponsor",
3673
- "type": "custom"
3674
- },
3675
- {
3676
- "url": "https://github.com/fabpot",
3677
- "type": "github"
3678
- },
3679
- {
3680
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3681
- "type": "tidelift"
3682
- }
3683
- ],
3684
- "install-path": "../symfony/filesystem"
3685
  },
3686
  {
3687
- "name": "symfony/finder",
3688
- "version": "v3.4.47",
3689
- "version_normalized": "3.4.47.0",
3690
  "source": {
3691
  "type": "git",
3692
- "url": "https://github.com/symfony/finder.git",
3693
- "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e"
3694
  },
3695
  "dist": {
3696
  "type": "zip",
3697
- "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
3698
- "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e",
3699
  "shasum": ""
3700
  },
3701
  "require": {
3702
- "php": "^5.5.9|>=7.0.8"
3703
- },
3704
- "time": "2020-11-16T17:02:08+00:00",
3705
- "type": "library",
3706
- "installation-source": "dist",
3707
- "autoload": {
3708
- "psr-4": {
3709
- "Symfony\\Component\\Finder\\": ""
3710
- },
3711
- "exclude-from-classmap": [
3712
- "/Tests/"
3713
- ]
3714
- },
3715
- "notification-url": "https://packagist.org/downloads/",
3716
- "license": [
3717
- "MIT"
3718
- ],
3719
- "authors": [
3720
- {
3721
- "name": "Fabien Potencier",
3722
- "email": "fabien@symfony.com"
3723
- },
3724
- {
3725
- "name": "Symfony Community",
3726
- "homepage": "https://symfony.com/contributors"
3727
- }
3728
- ],
3729
- "description": "Symfony Finder Component",
3730
- "homepage": "https://symfony.com",
3731
- "support": {
3732
- "source": "https://github.com/symfony/finder/tree/v3.4.47"
3733
- },
3734
- "funding": [
3735
- {
3736
- "url": "https://symfony.com/sponsor",
3737
- "type": "custom"
3738
- },
3739
- {
3740
- "url": "https://github.com/fabpot",
3741
- "type": "github"
3742
- },
3743
- {
3744
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3745
- "type": "tidelift"
3746
- }
3747
- ],
3748
- "install-path": "../symfony/finder"
3749
- },
3750
- {
3751
- "name": "symfony/polyfill-ctype",
3752
- "version": "v1.19.0",
3753
- "version_normalized": "1.19.0.0",
3754
- "source": {
3755
- "type": "git",
3756
- "url": "https://github.com/symfony/polyfill-ctype.git",
3757
- "reference": "aed596913b70fae57be53d86faa2e9ef85a2297b"
3758
- },
3759
- "dist": {
3760
- "type": "zip",
3761
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/aed596913b70fae57be53d86faa2e9ef85a2297b",
3762
- "reference": "aed596913b70fae57be53d86faa2e9ef85a2297b",
3763
- "shasum": ""
3764
  },
3765
- "require": {
3766
- "php": ">=5.3.3"
 
3767
  },
3768
  "suggest": {
3769
- "ext-ctype": "For best performance"
3770
  },
3771
- "time": "2020-10-23T09:01:57+00:00",
3772
  "type": "library",
3773
- "extra": {
3774
- "branch-alias": {
3775
- "dev-main": "1.19-dev"
3776
- },
3777
- "thanks": {
3778
- "name": "symfony/polyfill",
3779
- "url": "https://github.com/symfony/polyfill"
3780
- }
3781
- },
3782
  "installation-source": "dist",
3783
- "autoload": {
3784
- "psr-4": {
3785
- "Symfony\\Polyfill\\Ctype\\": ""
3786
- },
3787
- "files": [
3788
- "bootstrap.php"
3789
- ]
3790
- },
3791
  "notification-url": "https://packagist.org/downloads/",
3792
  "license": [
3793
  "MIT"
3794
  ],
3795
  "authors": [
3796
  {
3797
- "name": "Gert de Pagter",
3798
- "email": "BackEndTea@gmail.com"
3799
- },
3800
- {
3801
- "name": "Symfony Community",
3802
- "homepage": "https://symfony.com/contributors"
3803
  }
3804
  ],
3805
- "description": "Symfony polyfill for ctype functions",
3806
- "homepage": "https://symfony.com",
3807
  "keywords": [
3808
- "compatibility",
3809
- "ctype",
3810
  "polyfill",
3811
- "portable"
 
3812
  ],
3813
  "support": {
3814
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.19.0"
 
 
3815
  },
3816
- "funding": [
3817
- {
3818
- "url": "https://symfony.com/sponsor",
3819
- "type": "custom"
3820
- },
3821
- {
3822
- "url": "https://github.com/fabpot",
3823
- "type": "github"
3824
- },
3825
- {
3826
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3827
- "type": "tidelift"
3828
- }
3829
- ],
3830
- "install-path": "../symfony/polyfill-ctype"
3831
  },
3832
  {
3833
- "name": "symfony/polyfill-intl-idn",
3834
- "version": "v1.19.0",
3835
- "version_normalized": "1.19.0.0",
3836
  "source": {
3837
  "type": "git",
3838
- "url": "https://github.com/symfony/polyfill-intl-idn.git",
3839
- "reference": "4ad5115c0f5d5172a9fe8147675ec6de266d8826"
3840
  },
3841
  "dist": {
3842
  "type": "zip",
3843
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/4ad5115c0f5d5172a9fe8147675ec6de266d8826",
3844
- "reference": "4ad5115c0f5d5172a9fe8147675ec6de266d8826",
3845
  "shasum": ""
3846
  },
3847
  "require": {
3848
- "php": ">=5.3.3",
3849
- "symfony/polyfill-intl-normalizer": "^1.10",
3850
- "symfony/polyfill-php70": "^1.10",
3851
- "symfony/polyfill-php72": "^1.10"
 
 
 
 
3852
  },
3853
  "suggest": {
3854
- "ext-intl": "For best performance"
 
 
 
3855
  },
3856
- "time": "2020-10-21T09:57:48+00:00",
3857
  "type": "library",
3858
- "extra": {
3859
- "branch-alias": {
3860
- "dev-main": "1.19-dev"
3861
- },
3862
- "thanks": {
3863
- "name": "symfony/polyfill",
3864
- "url": "https://github.com/symfony/polyfill"
3865
- }
3866
- },
3867
  "installation-source": "dist",
3868
  "autoload": {
3869
- "psr-4": {
3870
- "Symfony\\Polyfill\\Intl\\Idn\\": ""
3871
- },
3872
  "files": [
3873
- "bootstrap.php"
3874
- ]
 
 
 
3875
  },
3876
  "notification-url": "https://packagist.org/downloads/",
3877
  "license": [
@@ -3879,90 +766,102 @@
3879
  ],
3880
  "authors": [
3881
  {
3882
- "name": "Laurent Bassin",
3883
- "email": "laurent@bassin.info"
 
 
 
 
 
 
3884
  },
3885
  {
3886
- "name": "Trevor Rowbotham",
3887
- "email": "trevor.rowbotham@pm.me"
 
3888
  },
3889
  {
3890
- "name": "Symfony Community",
3891
- "homepage": "https://symfony.com/contributors"
 
 
 
 
 
 
3892
  }
3893
  ],
3894
- "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
3895
- "homepage": "https://symfony.com",
3896
  "keywords": [
3897
- "compatibility",
3898
- "idn",
3899
- "intl",
3900
- "polyfill",
3901
- "portable",
3902
- "shim"
 
 
 
 
 
 
 
 
 
 
 
3903
  ],
3904
  "support": {
3905
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.19.0"
 
3906
  },
3907
  "funding": [
3908
  {
3909
- "url": "https://symfony.com/sponsor",
3910
- "type": "custom"
3911
  },
3912
  {
3913
- "url": "https://github.com/fabpot",
3914
- "type": "github"
3915
  },
3916
  {
3917
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
3918
  "type": "tidelift"
3919
  }
3920
  ],
3921
- "install-path": "../symfony/polyfill-intl-idn"
3922
  },
3923
  {
3924
- "name": "symfony/polyfill-intl-normalizer",
3925
- "version": "v1.19.0",
3926
- "version_normalized": "1.19.0.0",
3927
  "source": {
3928
  "type": "git",
3929
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
3930
- "reference": "8db0ae7936b42feb370840cf24de1a144fb0ef27"
3931
  },
3932
  "dist": {
3933
  "type": "zip",
3934
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8db0ae7936b42feb370840cf24de1a144fb0ef27",
3935
- "reference": "8db0ae7936b42feb370840cf24de1a144fb0ef27",
3936
  "shasum": ""
3937
  },
3938
  "require": {
3939
- "php": ">=5.3.3"
3940
- },
3941
- "suggest": {
3942
- "ext-intl": "For best performance"
3943
  },
3944
- "time": "2020-10-23T09:01:57+00:00",
3945
  "type": "library",
3946
  "extra": {
3947
  "branch-alias": {
3948
- "dev-main": "1.19-dev"
3949
- },
3950
- "thanks": {
3951
- "name": "symfony/polyfill",
3952
- "url": "https://github.com/symfony/polyfill"
3953
  }
3954
  },
3955
  "installation-source": "dist",
3956
  "autoload": {
3957
  "psr-4": {
3958
- "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
3959
- },
3960
- "files": [
3961
- "bootstrap.php"
3962
- ],
3963
- "classmap": [
3964
- "Resources/stubs"
3965
- ]
3966
  },
3967
  "notification-url": "https://packagist.org/downloads/",
3968
  "license": [
@@ -3970,83 +869,52 @@
3970
  ],
3971
  "authors": [
3972
  {
3973
- "name": "Nicolas Grekas",
3974
- "email": "p@tchwork.com"
3975
- },
3976
- {
3977
- "name": "Symfony Community",
3978
- "homepage": "https://symfony.com/contributors"
3979
  }
3980
  ],
3981
- "description": "Symfony polyfill for intl's Normalizer class and related functions",
3982
- "homepage": "https://symfony.com",
3983
  "keywords": [
3984
- "compatibility",
3985
- "intl",
3986
- "normalizer",
3987
- "polyfill",
3988
- "portable",
3989
- "shim"
3990
  ],
3991
  "support": {
3992
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.19.0"
3993
  },
3994
- "funding": [
3995
- {
3996
- "url": "https://symfony.com/sponsor",
3997
- "type": "custom"
3998
- },
3999
- {
4000
- "url": "https://github.com/fabpot",
4001
- "type": "github"
4002
- },
4003
- {
4004
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4005
- "type": "tidelift"
4006
- }
4007
- ],
4008
- "install-path": "../symfony/polyfill-intl-normalizer"
4009
  },
4010
  {
4011
- "name": "symfony/polyfill-mbstring",
4012
- "version": "v1.19.0",
4013
- "version_normalized": "1.19.0.0",
4014
  "source": {
4015
  "type": "git",
4016
- "url": "https://github.com/symfony/polyfill-mbstring.git",
4017
- "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce"
4018
  },
4019
  "dist": {
4020
  "type": "zip",
4021
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b5f7b932ee6fa802fc792eabd77c4c88084517ce",
4022
- "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce",
4023
  "shasum": ""
4024
  },
4025
  "require": {
4026
- "php": ">=5.3.3"
4027
- },
4028
- "suggest": {
4029
- "ext-mbstring": "For best performance"
4030
  },
4031
- "time": "2020-10-23T09:01:57+00:00",
4032
  "type": "library",
4033
  "extra": {
4034
  "branch-alias": {
4035
- "dev-main": "1.19-dev"
4036
- },
4037
- "thanks": {
4038
- "name": "symfony/polyfill",
4039
- "url": "https://github.com/symfony/polyfill"
4040
  }
4041
  },
4042
  "installation-source": "dist",
4043
  "autoload": {
4044
  "psr-4": {
4045
- "Symfony\\Polyfill\\Mbstring\\": ""
4046
- },
4047
- "files": [
4048
- "bootstrap.php"
4049
- ]
4050
  },
4051
  "notification-url": "https://packagist.org/downloads/",
4052
  "license": [
@@ -4054,83 +922,53 @@
4054
  ],
4055
  "authors": [
4056
  {
4057
- "name": "Nicolas Grekas",
4058
- "email": "p@tchwork.com"
4059
- },
4060
- {
4061
- "name": "Symfony Community",
4062
- "homepage": "https://symfony.com/contributors"
4063
  }
4064
  ],
4065
- "description": "Symfony polyfill for the Mbstring extension",
4066
- "homepage": "https://symfony.com",
4067
  "keywords": [
4068
- "compatibility",
4069
- "mbstring",
4070
- "polyfill",
4071
- "portable",
4072
- "shim"
4073
  ],
4074
  "support": {
4075
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.19.0"
4076
  },
4077
- "funding": [
4078
- {
4079
- "url": "https://symfony.com/sponsor",
4080
- "type": "custom"
4081
- },
4082
- {
4083
- "url": "https://github.com/fabpot",
4084
- "type": "github"
4085
- },
4086
- {
4087
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4088
- "type": "tidelift"
4089
- }
4090
- ],
4091
- "install-path": "../symfony/polyfill-mbstring"
4092
  },
4093
  {
4094
- "name": "symfony/polyfill-php70",
4095
- "version": "v1.19.0",
4096
- "version_normalized": "1.19.0.0",
4097
  "source": {
4098
  "type": "git",
4099
- "url": "https://github.com/symfony/polyfill-php70.git",
4100
- "reference": "3fe414077251a81a1b15b1c709faf5c2fbae3d4e"
4101
  },
4102
  "dist": {
4103
  "type": "zip",
4104
- "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3fe414077251a81a1b15b1c709faf5c2fbae3d4e",
4105
- "reference": "3fe414077251a81a1b15b1c709faf5c2fbae3d4e",
4106
  "shasum": ""
4107
  },
4108
  "require": {
4109
- "paragonie/random_compat": "~1.0|~2.0|~9.99",
4110
- "php": ">=5.3.3"
4111
  },
4112
- "time": "2020-10-23T09:01:57+00:00",
4113
  "type": "library",
4114
  "extra": {
4115
  "branch-alias": {
4116
- "dev-main": "1.19-dev"
4117
- },
4118
- "thanks": {
4119
- "name": "symfony/polyfill",
4120
- "url": "https://github.com/symfony/polyfill"
4121
  }
4122
  },
4123
  "installation-source": "dist",
4124
  "autoload": {
4125
  "psr-4": {
4126
- "Symfony\\Polyfill\\Php70\\": ""
4127
- },
4128
- "files": [
4129
- "bootstrap.php"
4130
- ],
4131
- "classmap": [
4132
- "Resources/stubs"
4133
- ]
4134
  },
4135
  "notification-url": "https://packagist.org/downloads/",
4136
  "license": [
@@ -4138,78 +976,55 @@
4138
  ],
4139
  "authors": [
4140
  {
4141
- "name": "Nicolas Grekas",
4142
- "email": "p@tchwork.com"
4143
- },
4144
- {
4145
- "name": "Symfony Community",
4146
- "homepage": "https://symfony.com/contributors"
4147
  }
4148
  ],
4149
- "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
4150
- "homepage": "https://symfony.com",
4151
  "keywords": [
4152
- "compatibility",
4153
- "polyfill",
4154
- "portable",
4155
- "shim"
 
 
4156
  ],
4157
  "support": {
4158
- "source": "https://github.com/symfony/polyfill-php70/tree/v1.19.0"
4159
  },
4160
- "funding": [
4161
- {
4162
- "url": "https://symfony.com/sponsor",
4163
- "type": "custom"
4164
- },
4165
- {
4166
- "url": "https://github.com/fabpot",
4167
- "type": "github"
4168
- },
4169
- {
4170
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4171
- "type": "tidelift"
4172
- }
4173
- ],
4174
- "install-path": "../symfony/polyfill-php70"
4175
  },
4176
  {
4177
- "name": "symfony/polyfill-php72",
4178
- "version": "v1.19.0",
4179
- "version_normalized": "1.19.0.0",
4180
  "source": {
4181
  "type": "git",
4182
- "url": "https://github.com/symfony/polyfill-php72.git",
4183
- "reference": "beecef6b463b06954638f02378f52496cb84bacc"
4184
  },
4185
  "dist": {
4186
  "type": "zip",
4187
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/beecef6b463b06954638f02378f52496cb84bacc",
4188
- "reference": "beecef6b463b06954638f02378f52496cb84bacc",
4189
  "shasum": ""
4190
  },
4191
  "require": {
4192
- "php": ">=5.3.3"
4193
  },
4194
- "time": "2020-10-23T09:01:57+00:00",
4195
  "type": "library",
4196
  "extra": {
4197
  "branch-alias": {
4198
- "dev-main": "1.19-dev"
4199
- },
4200
- "thanks": {
4201
- "name": "symfony/polyfill",
4202
- "url": "https://github.com/symfony/polyfill"
4203
  }
4204
  },
4205
  "installation-source": "dist",
4206
  "autoload": {
4207
  "psr-4": {
4208
- "Symfony\\Polyfill\\Php72\\": ""
4209
- },
4210
- "files": [
4211
- "bootstrap.php"
4212
- ]
4213
  },
4214
  "notification-url": "https://packagist.org/downloads/",
4215
  "license": [
@@ -4217,68 +1032,50 @@
4217
  ],
4218
  "authors": [
4219
  {
4220
- "name": "Nicolas Grekas",
4221
- "email": "p@tchwork.com"
4222
- },
4223
- {
4224
- "name": "Symfony Community",
4225
- "homepage": "https://symfony.com/contributors"
4226
  }
4227
  ],
4228
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
4229
- "homepage": "https://symfony.com",
4230
  "keywords": [
4231
- "compatibility",
4232
- "polyfill",
4233
- "portable",
4234
- "shim"
4235
  ],
4236
  "support": {
4237
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.19.0"
4238
  },
4239
- "funding": [
4240
- {
4241
- "url": "https://symfony.com/sponsor",
4242
- "type": "custom"
4243
- },
4244
- {
4245
- "url": "https://github.com/fabpot",
4246
- "type": "github"
4247
- },
4248
- {
4249
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4250
- "type": "tidelift"
4251
- }
4252
- ],
4253
- "install-path": "../symfony/polyfill-php72"
4254
  },
4255
  {
4256
- "name": "symfony/process",
4257
- "version": "v3.4.47",
4258
- "version_normalized": "3.4.47.0",
4259
  "source": {
4260
  "type": "git",
4261
- "url": "https://github.com/symfony/process.git",
4262
- "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
4263
  },
4264
  "dist": {
4265
  "type": "zip",
4266
- "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
4267
- "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
4268
  "shasum": ""
4269
  },
4270
  "require": {
4271
- "php": "^5.5.9|>=7.0.8"
 
 
 
 
4272
  },
4273
- "time": "2020-10-24T10:57:07+00:00",
4274
  "type": "library",
4275
  "installation-source": "dist",
4276
  "autoload": {
4277
- "psr-4": {
4278
- "Symfony\\Component\\Process\\": ""
4279
- },
4280
- "exclude-from-classmap": [
4281
- "/Tests/"
4282
  ]
4283
  },
4284
  "notification-url": "https://packagist.org/downloads/",
@@ -4287,72 +1084,50 @@
4287
  ],
4288
  "authors": [
4289
  {
4290
- "name": "Fabien Potencier",
4291
- "email": "fabien@symfony.com"
4292
- },
4293
- {
4294
- "name": "Symfony Community",
4295
- "homepage": "https://symfony.com/contributors"
4296
  }
4297
  ],
4298
- "description": "Symfony Process Component",
4299
- "homepage": "https://symfony.com",
4300
  "support": {
4301
- "source": "https://github.com/symfony/process/tree/v3.4.47"
 
4302
  },
4303
- "funding": [
4304
- {
4305
- "url": "https://symfony.com/sponsor",
4306
- "type": "custom"
4307
- },
4308
- {
4309
- "url": "https://github.com/fabpot",
4310
- "type": "github"
4311
- },
4312
- {
4313
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
4314
- "type": "tidelift"
4315
- }
4316
- ],
4317
- "install-path": "../symfony/process"
4318
  },
4319
  {
4320
- "name": "symfony/yaml",
4321
- "version": "v3.4.47",
4322
- "version_normalized": "3.4.47.0",
4323
  "source": {
4324
  "type": "git",
4325
- "url": "https://github.com/symfony/yaml.git",
4326
- "reference": "88289caa3c166321883f67fe5130188ebbb47094"
4327
  },
4328
  "dist": {
4329
  "type": "zip",
4330
- "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094",
4331
- "reference": "88289caa3c166321883f67fe5130188ebbb47094",
4332
  "shasum": ""
4333
  },
4334
  "require": {
4335
- "php": "^5.5.9|>=7.0.8",
4336
- "symfony/polyfill-ctype": "~1.8"
4337
  },
4338
- "conflict": {
4339
- "symfony/console": "<3.4"
4340
- },
4341
- "require-dev": {
4342
- "symfony/console": "~3.4|~4.0"
4343
- },
4344
- "suggest": {
4345
- "symfony/console": "For validating YAML files using the lint command"
4346
- },
4347
- "time": "2020-10-24T10:57:07+00:00",
4348
  "type": "library",
 
 
 
 
 
 
 
 
 
4349
  "installation-source": "dist",
4350
  "autoload": {
4351
- "psr-4": {
4352
- "Symfony\\Component\\Yaml\\": ""
4353
- },
4354
- "exclude-from-classmap": [
4355
- "/Tests/"
4356
  ]
4357
  },
4358
  "notification-url": "https://packagist.org/downloads/",
@@ -4361,18 +1136,18 @@
4361
  ],
4362
  "authors": [
4363
  {
4364
- "name": "Fabien Potencier",
4365
- "email": "fabien@symfony.com"
4366
  },
4367
  {
4368
  "name": "Symfony Community",
4369
  "homepage": "https://symfony.com/contributors"
4370
  }
4371
  ],
4372
- "description": "Symfony Yaml Component",
4373
  "homepage": "https://symfony.com",
4374
  "support": {
4375
- "source": "https://github.com/symfony/yaml/tree/v3.4.47"
4376
  },
4377
  "funding": [
4378
  {
@@ -4388,115 +1163,9 @@
4388
  "type": "tidelift"
4389
  }
4390
  ],
4391
- "install-path": "../symfony/yaml"
4392
- },
4393
- {
4394
- "name": "webmozart/assert",
4395
- "version": "1.9.1",
4396
- "version_normalized": "1.9.1.0",
4397
- "source": {
4398
- "type": "git",
4399
- "url": "https://github.com/webmozarts/assert.git",
4400
- "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
4401
- },
4402
- "dist": {
4403
- "type": "zip",
4404
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
4405
- "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
4406
- "shasum": ""
4407
- },
4408
- "require": {
4409
- "php": "^5.3.3 || ^7.0 || ^8.0",
4410
- "symfony/polyfill-ctype": "^1.8"
4411
- },
4412
- "conflict": {
4413
- "phpstan/phpstan": "<0.12.20",
4414
- "vimeo/psalm": "<3.9.1"
4415
- },
4416
- "require-dev": {
4417
- "phpunit/phpunit": "^4.8.36 || ^7.5.13"
4418
- },
4419
- "time": "2020-07-08T17:02:28+00:00",
4420
- "type": "library",
4421
- "installation-source": "dist",
4422
- "autoload": {
4423
- "psr-4": {
4424
- "Webmozart\\Assert\\": "src/"
4425
- }
4426
- },
4427
- "notification-url": "https://packagist.org/downloads/",
4428
- "license": [
4429
- "MIT"
4430
- ],
4431
- "authors": [
4432
- {
4433
- "name": "Bernhard Schussek",
4434
- "email": "bschussek@gmail.com"
4435
- }
4436
- ],
4437
- "description": "Assertions to validate method input/output with nice error messages.",
4438
- "keywords": [
4439
- "assert",
4440
- "check",
4441
- "validate"
4442
- ],
4443
- "support": {
4444
- "issues": "https://github.com/webmozarts/assert/issues",
4445
- "source": "https://github.com/webmozarts/assert/tree/1.9.1"
4446
- },
4447
- "install-path": "../webmozart/assert"
4448
  }
4449
  ],
4450
- "dev": true,
4451
- "dev-package-names": [
4452
- "cache/adapter-common",
4453
- "cache/filesystem-adapter",
4454
- "cache/taggable-cache",
4455
- "composer/ca-bundle",
4456
- "composer/composer",
4457
- "composer/semver",
4458
- "composer/spdx-licenses",
4459
- "composer/xdebug-handler",
4460
- "dealerdirect/phpcodesniffer-composer-installer",
4461
- "doctrine/instantiator",
4462
- "justinrainbow/json-schema",
4463
- "league/flysystem",
4464
- "myclabs/deep-copy",
4465
- "phpcompatibility/php-compatibility",
4466
- "phpdocumentor/reflection-common",
4467
- "phpdocumentor/reflection-docblock",
4468
- "phpdocumentor/type-resolver",
4469
- "phpspec/prophecy",
4470
- "phpunit/php-code-coverage",
4471
- "phpunit/php-file-iterator",
4472
- "phpunit/php-text-template",
4473
- "phpunit/php-timer",
4474
- "phpunit/php-token-stream",
4475
- "phpunit/phpunit",
4476
- "phpunit/phpunit-mock-objects",
4477
- "sebastian/code-unit-reverse-lookup",
4478
- "sebastian/comparator",
4479
- "sebastian/diff",
4480
- "sebastian/environment",
4481
- "sebastian/exporter",
4482
- "sebastian/global-state",
4483
- "sebastian/object-enumerator",
4484
- "sebastian/recursion-context",
4485
- "sebastian/resource-operations",
4486
- "sebastian/version",
4487
- "seld/jsonlint",
4488
- "seld/phar-utils",
4489
- "squizlabs/php_codesniffer",
4490
- "symfony/console",
4491
- "symfony/css-selector",
4492
- "symfony/debug",
4493
- "symfony/dom-crawler",
4494
- "symfony/filesystem",
4495
- "symfony/finder",
4496
- "symfony/polyfill-ctype",
4497
- "symfony/polyfill-mbstring",
4498
- "symfony/process",
4499
- "symfony/yaml",
4500
- "webmozart/assert"
4501
- ]
4502
  }
1
  {
2
  "packages": [
3
  {
4
+ "name": "firebase/php-jwt",
5
+ "version": "v5.5.1",
6
+ "version_normalized": "5.5.1.0",
7
  "source": {
8
  "type": "git",
9
+ "url": "https://github.com/firebase/php-jwt.git",
10
+ "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
11
  },
12
  "dist": {
13
  "type": "zip",
14
+ "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
15
+ "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
16
  "shasum": ""
17
  },
18
  "require": {
19
+ "php": ">=5.3.0"
 
 
 
20
  },
21
  "require-dev": {
22
+ "phpunit/phpunit": ">=4.8 <=9"
 
23
  },
24
+ "suggest": {
25
+ "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
26
+ },
27
+ "time": "2021-11-08T20:18:51+00:00",
28
  "type": "library",
29
  "installation-source": "dist",
30
  "autoload": {
31
  "psr-4": {
32
+ "Firebase\\JWT\\": "src"
33
  }
34
  },
35
  "notification-url": "https://packagist.org/downloads/",
36
  "license": [
37
+ "BSD-3-Clause"
38
  ],
39
  "authors": [
40
  {
41
+ "name": "Neuman Vong",
42
+ "email": "neuman+pear@twilio.com",
43
+ "role": "Developer"
44
  },
45
  {
46
+ "name": "Anant Narayanan",
47
+ "email": "anant@php.net",
48
+ "role": "Developer"
49
  }
50
  ],
51
+ "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
52
+ "homepage": "https://github.com/firebase/php-jwt",
53
  "keywords": [
54
+ "jwt",
55
+ "php"
 
56
  ],
57
  "support": {
58
+ "issues": "https://github.com/firebase/php-jwt/issues",
59
+ "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
60
  },
61
+ "install-path": "../firebase/php-jwt"
62
  },
63
  {
64
+ "name": "google/apiclient-services",
65
+ "version": "v0.224.0",
66
+ "version_normalized": "0.224.0.0",
67
  "source": {
68
  "type": "git",
69
+ "url": "https://github.com/googleapis/google-api-php-client-services.git",
70
+ "reference": "2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1"
71
  },
72
  "dist": {
73
  "type": "zip",
74
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1",
75
+ "reference": "2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1",
76
  "shasum": ""
77
  },
78
  "require": {
79
+ "php": ">=5.6"
 
 
 
 
 
 
 
80
  },
81
  "require-dev": {
82
+ "phpunit/phpunit": "^5.7||^8.5.13"
 
83
  },
84
+ "time": "2021-11-24T12:26:12+00:00",
85
  "type": "library",
86
  "installation-source": "dist",
87
  "autoload": {
88
  "psr-4": {
89
+ "WPMSGoogle\\Service\\": "src"
90
  },
91
+ "files": [
92
+ "autoload.php"
93
  ]
94
  },
95
  "notification-url": "https://packagist.org/downloads/",
96
  "license": [
97
+ "Apache-2.0"
 
 
 
 
 
 
 
 
 
 
 
 
98
  ],
99
+ "description": "Client library for Google APIs",
100
+ "homepage": "http://developers.google.com/api-client-library/php",
101
  "keywords": [
102
+ "google"
 
 
 
103
  ],
104
  "support": {
105
+ "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
106
+ "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.224.0"
107
  },
108
+ "install-path": "../google/apiclient-services"
109
  },
110
  {
111
+ "name": "google/auth",
112
+ "version": "v1.18.0",
113
+ "version_normalized": "1.18.0.0",
114
  "source": {
115
  "type": "git",
116
+ "url": "https://github.com/googleapis/google-auth-library-php.git",
117
+ "reference": "21dd478e77b0634ed9e3a68613f74ed250ca9347"
118
  },
119
  "dist": {
120
  "type": "zip",
121
+ "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/21dd478e77b0634ed9e3a68613f74ed250ca9347",
122
+ "reference": "21dd478e77b0634ed9e3a68613f74ed250ca9347",
123
  "shasum": ""
124
  },
125
  "require": {
126
+ "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
127
+ "guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
128
+ "guzzlehttp/psr7": "^1.7|^2.0",
129
+ "php": ">=5.4",
130
+ "psr/cache": "^1.0|^2.0",
131
+ "psr/http-message": "^1.0"
132
  },
133
  "require-dev": {
134
+ "guzzlehttp/promises": "0.1.1|^1.3",
135
+ "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
136
+ "phpseclib/phpseclib": "^2.0.31",
137
+ "phpunit/phpunit": "^4.8.36|^5.7",
138
+ "sebastian/comparator": ">=1.2.3"
139
+ },
140
+ "suggest": {
141
+ "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
142
  },
143
+ "time": "2021-08-24T18:03:18+00:00",
144
  "type": "library",
145
  "installation-source": "dist",
146
  "autoload": {
147
  "psr-4": {
148
+ "WPMSGoogle\\Auth\\": "src"
149
+ }
 
 
 
150
  },
151
  "notification-url": "https://packagist.org/downloads/",
152
  "license": [
153
+ "Apache-2.0"
 
 
 
 
 
 
 
 
 
 
 
 
154
  ],
155
+ "description": "Google Auth Library for PHP",
156
+ "homepage": "http://github.com/google/google-auth-library-php",
157
  "keywords": [
158
+ "Authentication",
159
+ "google",
160
+ "oauth2"
 
161
  ],
162
  "support": {
163
+ "docs": "https://googleapis.github.io/google-auth-library-php/master/",
164
+ "issues": "https://github.com/googleapis/google-auth-library-php/issues",
165
+ "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.18.0"
166
  },
167
+ "install-path": "../google/auth"
168
  },
169
  {
170
+ "name": "guzzlehttp/guzzle",
171
+ "version": "7.4.0",
172
+ "version_normalized": "7.4.0.0",
173
  "source": {
174
  "type": "git",
175
+ "url": "https://github.com/guzzle/guzzle.git",
176
+ "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94"
177
  },
178
  "dist": {
179
  "type": "zip",
180
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/868b3571a039f0ebc11ac8f344f4080babe2cb94",
181
+ "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94",
182
  "shasum": ""
183
  },
184
  "require": {
185
+ "ext-json": "*",
186
+ "guzzlehttp/promises": "^1.5",
187
+ "guzzlehttp/psr7": "^1.8.3 || ^2.1",
188
+ "php": "^7.2.5 || ^8.0",
189
+ "psr/http-client": "^1.0",
190
+ "symfony/deprecation-contracts": "^2.2"
191
+ },
192
+ "provide": {
193
+ "psr/http-client-implementation": "1.0"
194
  },
195
  "require-dev": {
196
+ "bamarni/composer-bin-plugin": "^1.4.1",
197
+ "ext-curl": "*",
198
+ "php-http/client-integration-tests": "^3.0",
199
+ "phpunit/phpunit": "^8.5.5 || ^9.3.5",
200
+ "psr/log": "^1.1 || ^2.0 || ^3.0"
201
+ },
202
+ "suggest": {
203
+ "ext-curl": "Required for CURL handler support",
204
+ "ext-intl": "Required for Internationalized Domain Name (IDN) support",
205
+ "psr/log": "Required for using the Log middleware"
206
  },
207
+ "time": "2021-10-18T09:52:00+00:00",
208
  "type": "library",
209
  "extra": {
210
  "branch-alias": {
211
+ "dev-master": "7.4-dev"
212
  }
213
  },
214
  "installation-source": "dist",
215
  "autoload": {
216
  "psr-4": {
217
+ "GuzzleHttp\\": "src/"
218
+ },
219
+ "files": [
220
+ "src/functions_include.php"
221
+ ]
222
  },
223
  "notification-url": "https://packagist.org/downloads/",
224
  "license": [
226
  ],
227
  "authors": [
228
  {
229
+ "name": "Graham Campbell",
230
+ "email": "hello@gjcampbell.co.uk",
231
+ "homepage": "https://github.com/GrahamCampbell"
232
+ },
233
+ {
234
+ "name": "Michael Dowling",
235
+ "email": "mtdowling@gmail.com",
236
+ "homepage": "https://github.com/mtdowling"
237
+ },
238
+ {
239
+ "name": "Jeremy Lindblom",
240
+ "email": "jeremeamia@gmail.com",
241
+ "homepage": "https://github.com/jeremeamia"
242
+ },
243
+ {
244
+ "name": "George Mponos",
245
+ "email": "gmponos@gmail.com",
246
+ "homepage": "https://github.com/gmponos"
247
+ },
248
+ {
249
+ "name": "Tobias Nyholm",
250
+ "email": "tobias.nyholm@gmail.com",
251
+ "homepage": "https://github.com/Nyholm"
252
+ },
253
+ {
254
+ "name": "Márk Sági-Kazár",
255
+ "email": "mark.sagikazar@gmail.com",
256
+ "homepage": "https://github.com/sagikazarmark"
257
+ },
258
+ {
259
+ "name": "Tobias Schultze",
260
+ "email": "webmaster@tubo-world.de",
261
+ "homepage": "https://github.com/Tobion"
262
  }
263
  ],
264
+ "description": "Guzzle is a PHP HTTP client library",
265
  "keywords": [
266
+ "client",
267
+ "curl",
268
+ "framework",
269
+ "http",
270
+ "http client",
271
+ "psr-18",
272
+ "psr-7",
273
+ "rest",
274
+ "web service"
275
  ],
276
  "support": {
277
+ "issues": "https://github.com/guzzle/guzzle/issues",
278
+ "source": "https://github.com/guzzle/guzzle/tree/7.4.0"
 
279
  },
280
  "funding": [
281
  {
282
+ "url": "https://github.com/GrahamCampbell",
283
+ "type": "github"
284
  },
285
  {
286
+ "url": "https://github.com/Nyholm",
287
  "type": "github"
288
  },
289
  {
290
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
291
  "type": "tidelift"
292
  }
293
  ],
294
+ "install-path": "../guzzlehttp/guzzle"
295
  },
296
  {
297
+ "name": "guzzlehttp/promises",
298
+ "version": "1.5.1",
299
+ "version_normalized": "1.5.1.0",
300
  "source": {
301
  "type": "git",
302
+ "url": "https://github.com/guzzle/promises.git",
303
+ "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
304
  },
305
  "dist": {
306
  "type": "zip",
307
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
308
+ "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
309
  "shasum": ""
310
  },
311
  "require": {
312
+ "php": ">=5.5"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  },
314
  "require-dev": {
315
+ "symfony/phpunit-bridge": "^4.4 || ^5.1"
 
 
 
 
 
 
316
  },
317
+ "time": "2021-10-22T20:56:57+00:00",
 
 
 
318
  "type": "library",
319
  "extra": {
320
  "branch-alias": {
321
+ "dev-master": "1.5-dev"
322
  }
323
  },
324
  "installation-source": "dist",
325
  "autoload": {
326
  "psr-4": {
327
+ "GuzzleHttp\\Promise\\": "src/"
328
+ },
329
+ "files": [
330
+ "src/functions_include.php"
331
+ ]
332
  },
333
  "notification-url": "https://packagist.org/downloads/",
334
  "license": [
336
  ],
337
  "authors": [
338
  {
339
+ "name": "Graham Campbell",
340
+ "email": "hello@gjcampbell.co.uk",
341
+ "homepage": "https://github.com/GrahamCampbell"
342
  },
343
  {
344
+ "name": "Michael Dowling",
345
+ "email": "mtdowling@gmail.com",
346
+ "homepage": "https://github.com/mtdowling"
347
+ },
348
+ {
349
+ "name": "Tobias Nyholm",
350
+ "email": "tobias.nyholm@gmail.com",
351
+ "homepage": "https://github.com/Nyholm"
352
+ },
353
+ {
354
+ "name": "Tobias Schultze",
355
+ "email": "webmaster@tubo-world.de",
356
+ "homepage": "https://github.com/Tobion"
357
  }
358
  ],
359
+ "description": "Guzzle promises library",
 
360
  "keywords": [
361
+ "promise"
 
 
362
  ],
363
  "support": {
364
+ "issues": "https://github.com/guzzle/promises/issues",
365
+ "source": "https://github.com/guzzle/promises/tree/1.5.1"
 
366
  },
367
  "funding": [
368
  {
369
+ "url": "https://github.com/GrahamCampbell",
370
+ "type": "github"
371
  },
372
  {
373
+ "url": "https://github.com/Nyholm",
374
  "type": "github"
375
  },
376
  {
377
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
378
  "type": "tidelift"
379
  }
380
  ],
381
+ "install-path": "../guzzlehttp/promises"
382
  },
383
  {
384
+ "name": "guzzlehttp/psr7",
385
+ "version": "1.8.3",
386
+ "version_normalized": "1.8.3.0",
387
  "source": {
388
  "type": "git",
389
+ "url": "https://github.com/guzzle/psr7.git",
390
+ "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
391
  },
392
  "dist": {
393
  "type": "zip",
394
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
395
+ "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
396
  "shasum": ""
397
  },
398
  "require": {
399
+ "php": ">=5.4.0",
400
+ "psr/http-message": "~1.0",
401
+ "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
402
+ },
403
+ "provide": {
404
+ "psr/http-message-implementation": "1.0"
405
  },
406
  "require-dev": {
407
+ "ext-zlib": "*",
408
+ "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
409
+ },
410
+ "suggest": {
411
+ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
412
  },
413
+ "time": "2021-10-05T13:56:00+00:00",
414
  "type": "library",
415
  "extra": {
416
  "branch-alias": {
417
+ "dev-master": "1.7-dev"
418
  }
419
  },
420
  "installation-source": "dist",
421
  "autoload": {
422
  "psr-4": {
423
+ "GuzzleHttp\\Psr7\\": "src/"
424
+ },
425
+ "files": [
426
+ "src/functions_include.php"
427
+ ]
428
  },
429
  "notification-url": "https://packagist.org/downloads/",
430
  "license": [
432
  ],
433
  "authors": [
434
  {
435
+ "name": "Graham Campbell",
436
+ "email": "hello@gjcampbell.co.uk",
437
+ "homepage": "https://github.com/GrahamCampbell"
438
  },
439
  {
440
+ "name": "Michael Dowling",
441
+ "email": "mtdowling@gmail.com",
442
+ "homepage": "https://github.com/mtdowling"
443
+ },
444
+ {
445
+ "name": "George Mponos",
446
+ "email": "gmponos@gmail.com",
447
+ "homepage": "https://github.com/gmponos"
448
+ },
449
+ {
450
+ "name": "Tobias Nyholm",
451
+ "email": "tobias.nyholm@gmail.com",
452
+ "homepage": "https://github.com/Nyholm"
453
+ },
454
+ {
455
+ "name": "Márk Sági-Kazár",
456
+ "email": "mark.sagikazar@gmail.com",
457
+ "homepage": "https://github.com/sagikazarmark"
458
  },
459
  {
460
+ "name": "Tobias Schultze",
461
+ "email": "webmaster@tubo-world.de",
462
+ "homepage": "https://github.com/Tobion"
463
  }
464
  ],
465
+ "description": "PSR-7 message implementation that also provides common utility methods",
466
  "keywords": [
467
+ "http",
468
+ "message",
469
+ "psr-7",
470
+ "request",
471
+ "response",
472
+ "stream",
473
+ "uri",
474
+ "url"
475
  ],
476
  "support": {
477
+ "issues": "https://github.com/guzzle/psr7/issues",
478
+ "source": "https://github.com/guzzle/psr7/tree/1.8.3"
 
479
  },
480
  "funding": [
481
  {
482
+ "url": "https://github.com/GrahamCampbell",
483
+ "type": "github"
484
  },
485
  {
486
+ "url": "https://github.com/Nyholm",
487
  "type": "github"
488
  },
489
  {
490
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
491
  "type": "tidelift"
492
  }
493
  ],
494
+ "install-path": "../guzzlehttp/psr7"
495
  },
496
  {
497
+ "name": "monolog/monolog",
498
+ "version": "2.3.5",
499
+ "version_normalized": "2.3.5.0",
500
  "source": {
501
  "type": "git",
502
+ "url": "https://github.com/Seldaek/monolog.git",
503
+ "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
504
  },
505
  "dist": {
506
  "type": "zip",
507
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
508
+ "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
509
  "shasum": ""
510
  },
511
  "require": {
512
+ "php": ">=7.2",
513
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
514
+ },
515
+ "provide": {
516
+ "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
517
  },
518
  "require-dev": {
519
+ "aws/aws-sdk-php": "^2.4.9 || ^3.0",
520
+ "doctrine/couchdb": "~1.0@dev",
521
+ "elasticsearch/elasticsearch": "^7",
522
+ "graylog2/gelf-php": "^1.4.2",
523
+ "mongodb/mongodb": "^1.8",
524
+ "php-amqplib/php-amqplib": "~2.4 || ^3",
525
+ "php-console/php-console": "^3.1.3",
526
+ "phpspec/prophecy": "^1.6.1",
527
+ "phpstan/phpstan": "^0.12.91",
528
+ "phpunit/phpunit": "^8.5",
529
+ "predis/predis": "^1.1",
530
+ "rollbar/rollbar": "^1.3",
531
+ "ruflin/elastica": ">=0.90@dev",
532
+ "swiftmailer/swiftmailer": "^5.3|^6.0"
533
+ },
534
+ "suggest": {
535
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
536
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
537
+ "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
538
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
539
+ "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
540
+ "ext-mbstring": "Allow to work properly with unicode symbols",
541
+ "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
542
+ "ext-openssl": "Required to send log messages using SSL",
543
+ "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
544
+ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
545
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
546
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
547
+ "php-console/php-console": "Allow sending log messages to Google Chrome",
548
+ "rollbar/rollbar": "Allow sending log messages to Rollbar",
549
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
550
  },
551
+ "time": "2021-10-01T21:08:31+00:00",
552
  "type": "library",
553
  "extra": {
554
  "branch-alias": {
555
+ "dev-main": "2.x-dev"
556
  }
557
  },
558
  "installation-source": "dist",
559
  "autoload": {
560
  "psr-4": {
561
+ "Monolog\\": "src/Monolog"
562
  }
563
  },
564
  "notification-url": "https://packagist.org/downloads/",
566
  "MIT"
567
  ],
568
  "authors": [
 
 
 
 
 
569
  {
570
  "name": "Jordi Boggiano",
571
  "email": "j.boggiano@seld.be",
572
+ "homepage": "https://seld.be"
 
 
 
 
 
573
  }
574
  ],
575
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
576
+ "homepage": "https://github.com/Seldaek/monolog",
577
  "keywords": [
578
+ "log",
579
+ "logging",
580
+ "psr-3"
581
  ],
582
  "support": {
583
+ "issues": "https://github.com/Seldaek/monolog/issues",
584
+ "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
 
585
  },
586
  "funding": [
587
  {
588
+ "url": "https://github.com/Seldaek",
 
 
 
 
589
  "type": "github"
590
  },
591
  {
592
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
593
  "type": "tidelift"
594
  }
595
  ],
596
+ "install-path": "../monolog/monolog"
597
  },
598
  {
599
+ "name": "paragonie/constant_time_encoding",
600
+ "version": "v2.4.0",
601
+ "version_normalized": "2.4.0.0",
602
  "source": {
603
  "type": "git",
604
+ "url": "https://github.com/paragonie/constant_time_encoding.git",
605
+ "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
606
  },
607
  "dist": {
608
  "type": "zip",
609
+ "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
610
+ "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
611
  "shasum": ""
612
  },
613
  "require": {
614
+ "php": "^7|^8"
 
615
  },
616
  "require-dev": {
617
+ "phpunit/phpunit": "^6|^7|^8|^9",
618
+ "vimeo/psalm": "^1|^2|^3|^4"
619
  },
620
+ "time": "2020-12-06T15:14:20+00:00",
621
  "type": "library",
622
  "installation-source": "dist",
623
  "autoload": {
624
  "psr-4": {
625
+ "ParagonIE\\ConstantTime\\": "src/"
626
  }
627
  },
628
  "notification-url": "https://packagist.org/downloads/",
631
  ],
632
  "authors": [
633
  {
634
+ "name": "Paragon Initiative Enterprises",
635
+ "email": "security@paragonie.com",
636
+ "homepage": "https://paragonie.com",
637
+ "role": "Maintainer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
638
  },
639
  {
640
+ "name": "Steve 'Sc00bz' Thomas",
641
+ "email": "steve@tobtu.com",
642
+ "homepage": "https://www.tobtu.com",
643
+ "role": "Original Developer"
644
  }
645
  ],
646
+ "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
647
+ "keywords": [
648
+ "base16",
649
+ "base32",
650
+ "base32_decode",
651
+ "base32_encode",
652
+ "base64",
653
+ "base64_decode",
654
+ "base64_encode",
655
+ "bin2hex",
656
+ "encoding",
657
+ "hex",
658
+ "hex2bin",
659
+ "rfc4648"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
660
  ],
 
 
661
  "support": {
662
+ "email": "info@paragonie.com",
663
+ "issues": "https://github.com/paragonie/constant_time_encoding/issues",
664
+ "source": "https://github.com/paragonie/constant_time_encoding"
665
  },
666
+ "install-path": "../paragonie/constant_time_encoding"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  },
668
  {
669
+ "name": "paragonie/random_compat",
670
+ "version": "v9.99.100",
671
+ "version_normalized": "9.99.100.0",
672
  "source": {
673
  "type": "git",
674
+ "url": "https://github.com/paragonie/random_compat.git",
675
+ "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
676
  },
677
  "dist": {
678
  "type": "zip",
679
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
680
+ "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
681
  "shasum": ""
682
  },
683
  "require": {
684
+ "php": ">= 7"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
685
  },
686
+ "require-dev": {
687
+ "phpunit/phpunit": "4.*|5.*",
688
+ "vimeo/psalm": "^1"
689
  },
690
  "suggest": {
691
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
692
  },
693
+ "time": "2020-10-15T08:29:30+00:00",
694
  "type": "library",
 
 
 
 
 
 
 
 
 
695
  "installation-source": "dist",
 
 
 
 
 
 
 
 
696
  "notification-url": "https://packagist.org/downloads/",
697
  "license": [
698
  "MIT"
699
  ],
700
  "authors": [
701
  {
702
+ "name": "Paragon Initiative Enterprises",
703
+ "email": "security@paragonie.com",
704
+ "homepage": "https://paragonie.com"
 
 
 
705
  }
706
  ],
707
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
 
708
  "keywords": [
709
+ "csprng",
 
710
  "polyfill",
711
+ "pseudorandom",
712
+ "random"
713
  ],
714
  "support": {
715
+ "email": "info@paragonie.com",
716
+ "issues": "https://github.com/paragonie/random_compat/issues",
717
+ "source": "https://github.com/paragonie/random_compat"
718
  },
719
+ "install-path": "../paragonie/random_compat"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  },
721
  {
722
+ "name": "phpseclib/phpseclib",
723
+ "version": "3.0.12",
724
+ "version_normalized": "3.0.12.0",
725
  "source": {
726
  "type": "git",
727
+ "url": "https://github.com/phpseclib/phpseclib.git",
728
+ "reference": "89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb"
729
  },
730
  "dist": {
731
  "type": "zip",
732
+ "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb",
733
+ "reference": "89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb",
734
  "shasum": ""
735
  },
736
  "require": {
737
+ "paragonie/constant_time_encoding": "^1|^2",
738
+ "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
739
+ "php": ">=5.6.1"
740
+ },
741
+ "require-dev": {
742
+ "phing/phing": "~2.7",
743
+ "phpunit/phpunit": "^5.7|^6.0|^9.4",
744
+ "squizlabs/php_codesniffer": "~2.0"
745
  },
746
  "suggest": {
747
+ "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
748
+ "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
749
+ "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
750
+ "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
751
  },
752
+ "time": "2021-11-28T23:46:03+00:00",
753
  "type": "library",
 
 
 
 
 
 
 
 
 
754
  "installation-source": "dist",
755
  "autoload": {
 
 
 
756
  "files": [
757
+ "phpseclib/bootstrap.php"
758
+ ],
759
+ "psr-4": {
760
+ "phpseclib3\\": "phpseclib/"
761
+ }
762
  },
763
  "notification-url": "https://packagist.org/downloads/",
764
  "license": [
766
  ],
767
  "authors": [
768
  {
769
+ "name": "Jim Wigginton",
770
+ "email": "terrafrost@php.net",
771
+ "role": "Lead Developer"
772
+ },
773
+ {
774
+ "name": "Patrick Monnerat",
775
+ "email": "pm@datasphere.ch",
776
+ "role": "Developer"
777
  },
778
  {
779
+ "name": "Andreas Fischer",
780
+ "email": "bantu@phpbb.com",
781
+ "role": "Developer"
782
  },
783
  {
784
+ "name": "Hans-Jürgen Petrich",
785
+ "email": "petrich@tronic-media.com",
786
+ "role": "Developer"
787
+ },
788
+ {
789
+ "name": "Graham Campbell",
790
+ "email": "graham@alt-three.com",
791
+ "role": "Developer"
792
  }
793
  ],
794
+ "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
795
+ "homepage": "http://phpseclib.sourceforge.net",
796
  "keywords": [
797
+ "BigInteger",
798
+ "aes",
799
+ "asn.1",
800
+ "asn1",
801
+ "blowfish",
802
+ "crypto",
803
+ "cryptography",
804
+ "encryption",
805
+ "rsa",
806
+ "security",
807
+ "sftp",
808
+ "signature",
809
+ "signing",
810
+ "ssh",
811
+ "twofish",
812
+ "x.509",
813
+ "x509"
814
  ],
815
  "support": {
816
+ "issues": "https://github.com/phpseclib/phpseclib/issues",
817
+ "source": "https://github.com/phpseclib/phpseclib/tree/3.0.12"
818
  },
819
  "funding": [
820
  {
821
+ "url": "https://github.com/terrafrost",
822
+ "type": "github"
823
  },
824
  {
825
+ "url": "https://www.patreon.com/phpseclib",
826
+ "type": "patreon"
827
  },
828
  {
829
+ "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
830
  "type": "tidelift"
831
  }
832
  ],
833
+ "install-path": "../phpseclib/phpseclib"
834
  },
835
  {
836
+ "name": "psr/cache",
837
+ "version": "1.0.1",
838
+ "version_normalized": "1.0.1.0",
839
  "source": {
840
  "type": "git",
841
+ "url": "https://github.com/php-fig/cache.git",
842
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
843
  },
844
  "dist": {
845
  "type": "zip",
846
+ "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
847
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
848
  "shasum": ""
849
  },
850
  "require": {
851
+ "php": ">=5.3.0"
 
 
 
852
  },
853
+ "time": "2016-08-06T20:24:11+00:00",
854
  "type": "library",
855
  "extra": {
856
  "branch-alias": {
857
+ "dev-master": "1.0.x-dev"
 
 
 
 
858
  }
859
  },
860
  "installation-source": "dist",
861
  "autoload": {
862
  "psr-4": {
863
+ "Psr\\Cache\\": "src/"
864
+ }
 
 
 
 
 
 
865
  },
866
  "notification-url": "https://packagist.org/downloads/",
867
  "license": [
869
  ],
870
  "authors": [
871
  {
872
+ "name": "PHP-FIG",
873
+ "homepage": "http://www.php-fig.org/"
 
 
 
 
874
  }
875
  ],
876
+ "description": "Common interface for caching libraries",
 
877
  "keywords": [
878
+ "cache",
879
+ "psr",
880
+ "psr-6"
 
 
 
881
  ],
882
  "support": {
883
+ "source": "https://github.com/php-fig/cache/tree/master"
884
  },
885
+ "install-path": "../psr/cache"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
886
  },
887
  {
888
+ "name": "psr/http-client",
889
+ "version": "1.0.1",
890
+ "version_normalized": "1.0.1.0",
891
  "source": {
892
  "type": "git",
893
+ "url": "https://github.com/php-fig/http-client.git",
894
+ "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
895
  },
896
  "dist": {
897
  "type": "zip",
898
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
899
+ "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
900
  "shasum": ""
901
  },
902
  "require": {
903
+ "php": "^7.0 || ^8.0",
904
+ "psr/http-message": "^1.0"
 
 
905
  },
906
+ "time": "2020-06-29T06:28:15+00:00",
907
  "type": "library",
908
  "extra": {
909
  "branch-alias": {
910
+ "dev-master": "1.0.x-dev"
 
 
 
 
911
  }
912
  },
913
  "installation-source": "dist",
914
  "autoload": {
915
  "psr-4": {
916
+ "Psr\\Http\\Client\\": "src/"
917
+ }
 
 
 
918
  },
919
  "notification-url": "https://packagist.org/downloads/",
920
  "license": [
922
  ],
923
  "authors": [
924
  {
925
+ "name": "PHP-FIG",
926
+ "homepage": "http://www.php-fig.org/"
 
 
 
 
927
  }
928
  ],
929
+ "description": "Common interface for HTTP clients",
930
+ "homepage": "https://github.com/php-fig/http-client",
931
  "keywords": [
932
+ "http",
933
+ "http-client",
934
+ "psr",
935
+ "psr-18"
 
936
  ],
937
  "support": {
938
+ "source": "https://github.com/php-fig/http-client/tree/master"
939
  },
940
+ "install-path": "../psr/http-client"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
941
  },
942
  {
943
+ "name": "psr/http-message",
944
+ "version": "1.0.1",
945
+ "version_normalized": "1.0.1.0",
946
  "source": {
947
  "type": "git",
948
+ "url": "https://github.com/php-fig/http-message.git",
949
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
950
  },
951
  "dist": {
952
  "type": "zip",
953
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
954
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
955
  "shasum": ""
956
  },
957
  "require": {
958
+ "php": ">=5.3.0"
 
959
  },
960
+ "time": "2016-08-06T14:39:51+00:00",
961
  "type": "library",
962
  "extra": {
963
  "branch-alias": {
964
+ "dev-master": "1.0.x-dev"
 
 
 
 
965
  }
966
  },
967
  "installation-source": "dist",
968
  "autoload": {
969
  "psr-4": {
970
+ "Psr\\Http\\Message\\": "src/"
971
+ }
 
 
 
 
 
 
972
  },
973
  "notification-url": "https://packagist.org/downloads/",
974
  "license": [
976
  ],
977
  "authors": [
978
  {
979
+ "name": "PHP-FIG",
980
+ "homepage": "http://www.php-fig.org/"
 
 
 
 
981
  }
982
  ],
983
+ "description": "Common interface for HTTP messages",
984
+ "homepage": "https://github.com/php-fig/http-message",
985
  "keywords": [
986
+ "http",
987
+ "http-message",
988
+ "psr",
989
+ "psr-7",
990
+ "request",
991
+ "response"
992
  ],
993
  "support": {
994
+ "source": "https://github.com/php-fig/http-message/tree/master"
995
  },
996
+ "install-path": "../psr/http-message"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
997
  },
998
  {
999
+ "name": "psr/log",
1000
+ "version": "1.1.4",
1001
+ "version_normalized": "1.1.4.0",
1002
  "source": {
1003
  "type": "git",
1004
+ "url": "https://github.com/php-fig/log.git",
1005
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
1006
  },
1007
  "dist": {
1008
  "type": "zip",
1009
+ "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
1010
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
1011
  "shasum": ""
1012
  },
1013
  "require": {
1014
+ "php": ">=5.3.0"
1015
  },
1016
+ "time": "2021-05-03T11:20:27+00:00",
1017
  "type": "library",
1018
  "extra": {
1019
  "branch-alias": {
1020
+ "dev-master": "1.1.x-dev"
 
 
 
 
1021
  }
1022
  },
1023
  "installation-source": "dist",
1024
  "autoload": {
1025
  "psr-4": {
1026
+ "Psr\\Log\\": "Psr/Log/"
1027
+ }
 
 
 
1028
  },
1029
  "notification-url": "https://packagist.org/downloads/",
1030
  "license": [
1032
  ],
1033
  "authors": [
1034
  {
1035
+ "name": "PHP-FIG",
1036
+ "homepage": "https://www.php-fig.org/"
 
 
 
 
1037
  }
1038
  ],
1039
+ "description": "Common interface for logging libraries",
1040
+ "homepage": "https://github.com/php-fig/log",
1041
  "keywords": [
1042
+ "log",
1043
+ "psr",
1044
+ "psr-3"
 
1045
  ],
1046
  "support": {
1047
+ "source": "https://github.com/php-fig/log/tree/1.1.4"
1048
  },
1049
+ "install-path": "../psr/log"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1050
  },
1051
  {
1052
+ "name": "ralouphie/getallheaders",
1053
+ "version": "3.0.3",
1054
+ "version_normalized": "3.0.3.0",
1055
  "source": {
1056
  "type": "git",
1057
+ "url": "https://github.com/ralouphie/getallheaders.git",
1058
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
1059
  },
1060
  "dist": {
1061
  "type": "zip",
1062
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
1063
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
1064
  "shasum": ""
1065
  },
1066
  "require": {
1067
+ "php": ">=5.6"
1068
+ },
1069
+ "require-dev": {
1070
+ "php-coveralls/php-coveralls": "^2.1",
1071
+ "phpunit/phpunit": "^5 || ^6.5"
1072
  },
1073
+ "time": "2019-03-08T08:55:37+00:00",
1074
  "type": "library",
1075
  "installation-source": "dist",
1076
  "autoload": {
1077
+ "files": [
1078
+ "src/getallheaders.php"
 
 
 
1079
  ]
1080
  },
1081
  "notification-url": "https://packagist.org/downloads/",
1084
  ],
1085
  "authors": [
1086
  {
1087
+ "name": "Ralph Khattar",
1088
+ "email": "ralph.khattar@gmail.com"
 
 
 
 
1089
  }
1090
  ],
1091
+ "description": "A polyfill for getallheaders.",
 
1092
  "support": {
1093
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
1094
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
1095
  },
1096
+ "install-path": "../ralouphie/getallheaders"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1097
  },
1098
  {
1099
+ "name": "symfony/deprecation-contracts",
1100
+ "version": "v2.5.0",
1101
+ "version_normalized": "2.5.0.0",
1102
  "source": {
1103
  "type": "git",
1104
+ "url": "https://github.com/symfony/deprecation-contracts.git",
1105
+ "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
1106
  },
1107
  "dist": {
1108
  "type": "zip",
1109
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
1110
+ "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
1111
  "shasum": ""
1112
  },
1113
  "require": {
1114
+ "php": ">=7.1"
 
1115
  },
1116
+ "time": "2021-07-12T14:48:14+00:00",
 
 
 
 
 
 
 
 
 
1117
  "type": "library",
1118
+ "extra": {
1119
+ "branch-alias": {
1120
+ "dev-main": "2.5-dev"
1121
+ },
1122
+ "thanks": {
1123
+ "name": "symfony/contracts",
1124
+ "url": "https://github.com/symfony/contracts"
1125
+ }
1126
+ },
1127
  "installation-source": "dist",
1128
  "autoload": {
1129
+ "files": [
1130
+ "function.php"
 
 
 
1131
  ]
1132
  },
1133
  "notification-url": "https://packagist.org/downloads/",
1136
  ],
1137
  "authors": [
1138
  {
1139
+ "name": "Nicolas Grekas",
1140
+ "email": "p@tchwork.com"
1141
  },
1142
  {
1143
  "name": "Symfony Community",
1144
  "homepage": "https://symfony.com/contributors"
1145
  }
1146
  ],
1147
+ "description": "A generic function and convention to trigger deprecation notices",
1148
  "homepage": "https://symfony.com",
1149
  "support": {
1150
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
1151
  },
1152
  "funding": [
1153
  {
1163
  "type": "tidelift"
1164
  }
1165
  ],
1166
+ "install-path": "../symfony/deprecation-contracts"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1167
  }
1168
  ],
1169
+ "dev": false,
1170
+ "dev-package-names": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1171
  }
inc/lib/google-api/vendor/composer/installed.php CHANGED
@@ -1,640 +1,189 @@
1
- <?php return array (
2
- 'root' =>
3
- array (
4
- 'pretty_version' => '1.0.0+no-version-set',
5
- 'version' => '1.0.0.0',
6
- 'aliases' =>
7
- array (
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ),
9
- 'reference' => NULL,
10
- 'name' => 'google/apiclient',
11
- ),
12
- 'versions' =>
13
- array (
14
- 'cache/adapter-common' =>
15
- array (
16
- 'pretty_version' => '0.3.3',
17
- 'version' => '0.3.3.0',
18
- 'aliases' =>
19
- array (
20
- ),
21
- 'reference' => '874256105aefaa52b60599ab02858a4575e61095',
22
- ),
23
- 'cache/filesystem-adapter' =>
24
- array (
25
- 'pretty_version' => '0.3.3',
26
- 'version' => '0.3.3.0',
27
- 'aliases' =>
28
- array (
29
- ),
30
- 'reference' => 'b05c31ea76dbe2650817e92265952a5d8b7fb070',
31
- ),
32
- 'cache/taggable-cache' =>
33
- array (
34
- 'pretty_version' => '0.4.3',
35
- 'version' => '0.4.3.0',
36
- 'aliases' =>
37
- array (
38
- ),
39
- 'reference' => '8ae3042edd1ac9546c9eae1020dc2b438ef10742',
40
- ),
41
- 'composer/ca-bundle' =>
42
- array (
43
- 'pretty_version' => '1.2.9',
44
- 'version' => '1.2.9.0',
45
- 'aliases' =>
46
- array (
47
- ),
48
- 'reference' => '78a0e288fdcebf92aa2318a8d3656168da6ac1a5',
49
- ),
50
- 'composer/composer' =>
51
- array (
52
- 'pretty_version' => '1.10.22',
53
- 'version' => '1.10.22.0',
54
- 'aliases' =>
55
- array (
56
- ),
57
- 'reference' => '28c9dfbe2351635961f670773e8d7b17bc5eda25',
58
- ),
59
- 'composer/semver' =>
60
- array (
61
- 'pretty_version' => '1.7.2',
62
- 'version' => '1.7.2.0',
63
- 'aliases' =>
64
- array (
65
- ),
66
- 'reference' => '647490bbcaf7fc4891c58f47b825eb99d19c377a',
67
- ),
68
- 'composer/spdx-licenses' =>
69
- array (
70
- 'pretty_version' => '1.5.5',
71
- 'version' => '1.5.5.0',
72
- 'aliases' =>
73
- array (
74
- ),
75
- 'reference' => 'de30328a7af8680efdc03e396aad24befd513200',
76
- ),
77
- 'composer/xdebug-handler' =>
78
- array (
79
- 'pretty_version' => '1.4.6',
80
- 'version' => '1.4.6.0',
81
- 'aliases' =>
82
- array (
83
- ),
84
- 'reference' => 'f27e06cd9675801df441b3656569b328e04aa37c',
85
- ),
86
- 'dealerdirect/phpcodesniffer-composer-installer' =>
87
- array (
88
- 'pretty_version' => 'v0.7.1',
89
- 'version' => '0.7.1.0',
90
- 'aliases' =>
91
- array (
92
- ),
93
- 'reference' => 'fe390591e0241955f22eb9ba327d137e501c771c',
94
- ),
95
- 'doctrine/instantiator' =>
96
- array (
97
- 'pretty_version' => '1.0.5',
98
- 'version' => '1.0.5.0',
99
- 'aliases' =>
100
- array (
101
- ),
102
- 'reference' => '8e884e78f9f0eb1329e445619e04456e64d8051d',
103
- ),
104
- 'firebase/php-jwt' =>
105
- array (
106
- 'pretty_version' => 'v5.2.1',
107
- 'version' => '5.2.1.0',
108
- 'aliases' =>
109
- array (
110
- ),
111
- 'reference' => 'f42c9110abe98dd6cfe9053c49bc86acc70b2d23',
112
- ),
113
- 'google/apiclient' =>
114
- array (
115
- 'pretty_version' => '1.0.0+no-version-set',
116
- 'version' => '1.0.0.0',
117
- 'aliases' =>
118
- array (
119
- ),
120
- 'reference' => NULL,
121
- ),
122
- 'google/apiclient-services' =>
123
- array (
124
- 'pretty_version' => 'v0.172.0',
125
- 'version' => '0.172.0.0',
126
- 'aliases' =>
127
- array (
128
- ),
129
- 'reference' => '85e8a9f0062a9e1aba3cdc0f499968bc8de78b7d',
130
- ),
131
- 'google/auth' =>
132
- array (
133
- 'pretty_version' => 'v1.15.1',
134
- 'version' => '1.15.1.0',
135
- 'aliases' =>
136
- array (
137
- ),
138
- 'reference' => '4e0c9367719df9703e96f5ad613041b87742471c',
139
- ),
140
- 'guzzlehttp/guzzle' =>
141
- array (
142
- 'pretty_version' => '6.5.5',
143
- 'version' => '6.5.5.0',
144
- 'aliases' =>
145
- array (
146
- ),
147
- 'reference' => '9d4290de1cfd701f38099ef7e183b64b4b7b0c5e',
148
- ),
149
- 'guzzlehttp/promises' =>
150
- array (
151
- 'pretty_version' => '1.4.1',
152
- 'version' => '1.4.1.0',
153
- 'aliases' =>
154
- array (
155
- ),
156
- 'reference' => '8e7d04f1f6450fef59366c399cfad4b9383aa30d',
157
- ),
158
- 'guzzlehttp/psr7' =>
159
- array (
160
- 'pretty_version' => '1.8.2',
161
- 'version' => '1.8.2.0',
162
- 'aliases' =>
163
- array (
164
- ),
165
- 'reference' => 'dc960a912984efb74d0a90222870c72c87f10c91',
166
- ),
167
- 'justinrainbow/json-schema' =>
168
- array (
169
- 'pretty_version' => '5.2.10',
170
- 'version' => '5.2.10.0',
171
- 'aliases' =>
172
- array (
173
- ),
174
- 'reference' => '2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b',
175
- ),
176
- 'league/flysystem' =>
177
- array (
178
- 'pretty_version' => '1.0.70',
179
- 'version' => '1.0.70.0',
180
- 'aliases' =>
181
- array (
182
- ),
183
- 'reference' => '585824702f534f8d3cf7fab7225e8466cc4b7493',
184
- ),
185
- 'monolog/monolog' =>
186
- array (
187
- 'pretty_version' => '1.26.0',
188
- 'version' => '1.26.0.0',
189
- 'aliases' =>
190
- array (
191
- ),
192
- 'reference' => '2209ddd84e7ef1256b7af205d0717fb62cfc9c33',
193
- ),
194
- 'myclabs/deep-copy' =>
195
- array (
196
- 'pretty_version' => '1.7.0',
197
- 'version' => '1.7.0.0',
198
- 'aliases' =>
199
- array (
200
- ),
201
- 'reference' => '3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e',
202
- ),
203
- 'paragonie/random_compat' =>
204
- array (
205
- 'pretty_version' => 'v2.0.20',
206
- 'version' => '2.0.20.0',
207
- 'aliases' =>
208
- array (
209
- ),
210
- 'reference' => '0f1f60250fccffeaf5dda91eea1c018aed1adc2a',
211
- ),
212
- 'phpcompatibility/php-compatibility' =>
213
- array (
214
- 'pretty_version' => '9.3.5',
215
- 'version' => '9.3.5.0',
216
- 'aliases' =>
217
- array (
218
- ),
219
- 'reference' => '9fb324479acf6f39452e0655d2429cc0d3914243',
220
- ),
221
- 'phpdocumentor/reflection-common' =>
222
- array (
223
- 'pretty_version' => '1.0.1',
224
- 'version' => '1.0.1.0',
225
- 'aliases' =>
226
- array (
227
- ),
228
- 'reference' => '21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6',
229
- ),
230
- 'phpdocumentor/reflection-docblock' =>
231
- array (
232
- 'pretty_version' => '3.3.2',
233
- 'version' => '3.3.2.0',
234
- 'aliases' =>
235
- array (
236
- ),
237
- 'reference' => 'bf329f6c1aadea3299f08ee804682b7c45b326a2',
238
- ),
239
- 'phpdocumentor/type-resolver' =>
240
- array (
241
- 'pretty_version' => '0.4.0',
242
- 'version' => '0.4.0.0',
243
- 'aliases' =>
244
- array (
245
- ),
246
- 'reference' => '9c977708995954784726e25d0cd1dddf4e65b0f7',
247
- ),
248
- 'phpseclib/phpseclib' =>
249
- array (
250
- 'pretty_version' => '2.0.31',
251
- 'version' => '2.0.31.0',
252
- 'aliases' =>
253
- array (
254
- ),
255
- 'reference' => '233a920cb38636a43b18d428f9a8db1f0a1a08f4',
256
- ),
257
- 'phpspec/prophecy' =>
258
- array (
259
- 'pretty_version' => 'v1.10.3',
260
- 'version' => '1.10.3.0',
261
- 'aliases' =>
262
- array (
263
- ),
264
- 'reference' => '451c3cd1418cf640de218914901e51b064abb093',
265
- ),
266
- 'phpunit/php-code-coverage' =>
267
- array (
268
- 'pretty_version' => '4.0.8',
269
- 'version' => '4.0.8.0',
270
- 'aliases' =>
271
- array (
272
- ),
273
- 'reference' => 'ef7b2f56815df854e66ceaee8ebe9393ae36a40d',
274
- ),
275
- 'phpunit/php-file-iterator' =>
276
- array (
277
- 'pretty_version' => '1.4.5',
278
- 'version' => '1.4.5.0',
279
- 'aliases' =>
280
- array (
281
- ),
282
- 'reference' => '730b01bc3e867237eaac355e06a36b85dd93a8b4',
283
- ),
284
- 'phpunit/php-text-template' =>
285
- array (
286
- 'pretty_version' => '1.2.1',
287
- 'version' => '1.2.1.0',
288
- 'aliases' =>
289
- array (
290
- ),
291
- 'reference' => '31f8b717e51d9a2afca6c9f046f5d69fc27c8686',
292
- ),
293
- 'phpunit/php-timer' =>
294
- array (
295
- 'pretty_version' => '1.0.9',
296
- 'version' => '1.0.9.0',
297
- 'aliases' =>
298
- array (
299
- ),
300
- 'reference' => '3dcf38ca72b158baf0bc245e9184d3fdffa9c46f',
301
- ),
302
- 'phpunit/php-token-stream' =>
303
- array (
304
- 'pretty_version' => '1.4.12',
305
- 'version' => '1.4.12.0',
306
- 'aliases' =>
307
- array (
308
- ),
309
- 'reference' => '1ce90ba27c42e4e44e6d8458241466380b51fa16',
310
- ),
311
- 'phpunit/phpunit' =>
312
- array (
313
- 'pretty_version' => '5.7.27',
314
- 'version' => '5.7.27.0',
315
- 'aliases' =>
316
- array (
317
- ),
318
- 'reference' => 'b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c',
319
- ),
320
- 'phpunit/phpunit-mock-objects' =>
321
- array (
322
- 'pretty_version' => '3.4.4',
323
- 'version' => '3.4.4.0',
324
- 'aliases' =>
325
- array (
326
- ),
327
- 'reference' => 'a23b761686d50a560cc56233b9ecf49597cc9118',
328
- ),
329
- 'psr/cache' =>
330
- array (
331
- 'pretty_version' => '1.0.1',
332
- 'version' => '1.0.1.0',
333
- 'aliases' =>
334
- array (
335
- ),
336
- 'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
337
- ),
338
- 'psr/cache-implementation' =>
339
- array (
340
- 'provided' =>
341
- array (
342
- 0 => '^1.0',
343
- ),
344
- ),
345
- 'psr/http-message' =>
346
- array (
347
- 'pretty_version' => '1.0.1',
348
- 'version' => '1.0.1.0',
349
- 'aliases' =>
350
- array (
351
- ),
352
- 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
353
- ),
354
- 'psr/http-message-implementation' =>
355
- array (
356
- 'provided' =>
357
- array (
358
- 0 => '1.0',
359
- ),
360
- ),
361
- 'psr/log' =>
362
- array (
363
- 'pretty_version' => '1.1.3',
364
- 'version' => '1.1.3.0',
365
- 'aliases' =>
366
- array (
367
- ),
368
- 'reference' => '0f73288fd15629204f9d42b7055f72dacbe811fc',
369
- ),
370
- 'psr/log-implementation' =>
371
- array (
372
- 'provided' =>
373
- array (
374
- 0 => '1.0',
375
- 1 => '1.0.0',
376
- ),
377
- ),
378
- 'ralouphie/getallheaders' =>
379
- array (
380
- 'pretty_version' => '3.0.3',
381
- 'version' => '3.0.3.0',
382
- 'aliases' =>
383
- array (
384
- ),
385
- 'reference' => '120b605dfeb996808c31b6477290a714d356e822',
386
- ),
387
- 'sebastian/code-unit-reverse-lookup' =>
388
- array (
389
- 'pretty_version' => '1.0.2',
390
- 'version' => '1.0.2.0',
391
- 'aliases' =>
392
- array (
393
- ),
394
- 'reference' => '1de8cd5c010cb153fcd68b8d0f64606f523f7619',
395
- ),
396
- 'sebastian/comparator' =>
397
- array (
398
- 'pretty_version' => '1.2.4',
399
- 'version' => '1.2.4.0',
400
- 'aliases' =>
401
- array (
402
- ),
403
- 'reference' => '2b7424b55f5047b47ac6e5ccb20b2aea4011d9be',
404
- ),
405
- 'sebastian/diff' =>
406
- array (
407
- 'pretty_version' => '1.4.3',
408
- 'version' => '1.4.3.0',
409
- 'aliases' =>
410
- array (
411
- ),
412
- 'reference' => '7f066a26a962dbe58ddea9f72a4e82874a3975a4',
413
- ),
414
- 'sebastian/environment' =>
415
- array (
416
- 'pretty_version' => '2.0.0',
417
- 'version' => '2.0.0.0',
418
- 'aliases' =>
419
- array (
420
- ),
421
- 'reference' => '5795ffe5dc5b02460c3e34222fee8cbe245d8fac',
422
- ),
423
- 'sebastian/exporter' =>
424
- array (
425
- 'pretty_version' => '2.0.0',
426
- 'version' => '2.0.0.0',
427
- 'aliases' =>
428
- array (
429
- ),
430
- 'reference' => 'ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4',
431
- ),
432
- 'sebastian/global-state' =>
433
- array (
434
- 'pretty_version' => '1.1.1',
435
- 'version' => '1.1.1.0',
436
- 'aliases' =>
437
- array (
438
- ),
439
- 'reference' => 'bc37d50fea7d017d3d340f230811c9f1d7280af4',
440
- ),
441
- 'sebastian/object-enumerator' =>
442
- array (
443
- 'pretty_version' => '2.0.1',
444
- 'version' => '2.0.1.0',
445
- 'aliases' =>
446
- array (
447
- ),
448
- 'reference' => '1311872ac850040a79c3c058bea3e22d0f09cbb7',
449
- ),
450
- 'sebastian/recursion-context' =>
451
- array (
452
- 'pretty_version' => '2.0.0',
453
- 'version' => '2.0.0.0',
454
- 'aliases' =>
455
- array (
456
- ),
457
- 'reference' => '2c3ba150cbec723aa057506e73a8d33bdb286c9a',
458
- ),
459
- 'sebastian/resource-operations' =>
460
- array (
461
- 'pretty_version' => '1.0.0',
462
- 'version' => '1.0.0.0',
463
- 'aliases' =>
464
- array (
465
- ),
466
- 'reference' => 'ce990bb21759f94aeafd30209e8cfcdfa8bc3f52',
467
- ),
468
- 'sebastian/version' =>
469
- array (
470
- 'pretty_version' => '2.0.1',
471
- 'version' => '2.0.1.0',
472
- 'aliases' =>
473
- array (
474
- ),
475
- 'reference' => '99732be0ddb3361e16ad77b68ba41efc8e979019',
476
- ),
477
- 'seld/jsonlint' =>
478
- array (
479
- 'pretty_version' => '1.8.3',
480
- 'version' => '1.8.3.0',
481
- 'aliases' =>
482
- array (
483
- ),
484
- 'reference' => '9ad6ce79c342fbd44df10ea95511a1b24dee5b57',
485
- ),
486
- 'seld/phar-utils' =>
487
- array (
488
- 'pretty_version' => '1.1.1',
489
- 'version' => '1.1.1.0',
490
- 'aliases' =>
491
- array (
492
- ),
493
- 'reference' => '8674b1d84ffb47cc59a101f5d5a3b61e87d23796',
494
- ),
495
- 'squizlabs/php_codesniffer' =>
496
- array (
497
- 'pretty_version' => '2.9.2',
498
- 'version' => '2.9.2.0',
499
- 'aliases' =>
500
- array (
501
- ),
502
- 'reference' => '2acf168de78487db620ab4bc524135a13cfe6745',
503
- ),
504
- 'symfony/console' =>
505
- array (
506
- 'pretty_version' => 'v3.4.47',
507
- 'version' => '3.4.47.0',
508
- 'aliases' =>
509
- array (
510
- ),
511
- 'reference' => 'a10b1da6fc93080c180bba7219b5ff5b7518fe81',
512
- ),
513
- 'symfony/css-selector' =>
514
- array (
515
- 'pretty_version' => 'v2.8.52',
516
- 'version' => '2.8.52.0',
517
- 'aliases' =>
518
- array (
519
- ),
520
- 'reference' => '7b1692e418d7ccac24c373528453bc90e42797de',
521
- ),
522
- 'symfony/debug' =>
523
- array (
524
- 'pretty_version' => 'v3.4.47',
525
- 'version' => '3.4.47.0',
526
- 'aliases' =>
527
- array (
528
- ),
529
- 'reference' => 'ab42889de57fdfcfcc0759ab102e2fd4ea72dcae',
530
- ),
531
- 'symfony/dom-crawler' =>
532
- array (
533
- 'pretty_version' => 'v2.8.52',
534
- 'version' => '2.8.52.0',
535
- 'aliases' =>
536
- array (
537
- ),
538
- 'reference' => '2cdc7d3909eea6f982a6298d2e9ab7db01b6403c',
539
- ),
540
- 'symfony/filesystem' =>
541
- array (
542
- 'pretty_version' => 'v3.4.47',
543
- 'version' => '3.4.47.0',
544
- 'aliases' =>
545
- array (
546
- ),
547
- 'reference' => 'e58d7841cddfed6e846829040dca2cca0ebbbbb3',
548
- ),
549
- 'symfony/finder' =>
550
- array (
551
- 'pretty_version' => 'v3.4.47',
552
- 'version' => '3.4.47.0',
553
- 'aliases' =>
554
- array (
555
- ),
556
- 'reference' => 'b6b6ad3db3edb1b4b1c1896b1975fb684994de6e',
557
- ),
558
- 'symfony/polyfill-ctype' =>
559
- array (
560
- 'pretty_version' => 'v1.19.0',
561
- 'version' => '1.19.0.0',
562
- 'aliases' =>
563
- array (
564
- ),
565
- 'reference' => 'aed596913b70fae57be53d86faa2e9ef85a2297b',
566
- ),
567
- 'symfony/polyfill-intl-idn' =>
568
- array (
569
- 'pretty_version' => 'v1.19.0',
570
- 'version' => '1.19.0.0',
571
- 'aliases' =>
572
- array (
573
- ),
574
- 'reference' => '4ad5115c0f5d5172a9fe8147675ec6de266d8826',
575
- ),
576
- 'symfony/polyfill-intl-normalizer' =>
577
- array (
578
- 'pretty_version' => 'v1.19.0',
579
- 'version' => '1.19.0.0',
580
- 'aliases' =>
581
- array (
582
- ),
583
- 'reference' => '8db0ae7936b42feb370840cf24de1a144fb0ef27',
584
- ),
585
- 'symfony/polyfill-mbstring' =>
586
- array (
587
- 'pretty_version' => 'v1.19.0',
588
- 'version' => '1.19.0.0',
589
- 'aliases' =>
590
- array (
591
- ),
592
- 'reference' => 'b5f7b932ee6fa802fc792eabd77c4c88084517ce',
593
- ),
594
- 'symfony/polyfill-php70' =>
595
- array (
596
- 'pretty_version' => 'v1.19.0',
597
- 'version' => '1.19.0.0',
598
- 'aliases' =>
599
- array (
600
- ),
601
- 'reference' => '3fe414077251a81a1b15b1c709faf5c2fbae3d4e',
602
- ),
603
- 'symfony/polyfill-php72' =>
604
- array (
605
- 'pretty_version' => 'v1.19.0',
606
- 'version' => '1.19.0.0',
607
- 'aliases' =>
608
- array (
609
- ),
610
- 'reference' => 'beecef6b463b06954638f02378f52496cb84bacc',
611
- ),
612
- 'symfony/process' =>
613
- array (
614
- 'pretty_version' => 'v3.4.47',
615
- 'version' => '3.4.47.0',
616
- 'aliases' =>
617
- array (
618
- ),
619
- 'reference' => 'b8648cf1d5af12a44a51d07ef9bf980921f15fca',
620
- ),
621
- 'symfony/yaml' =>
622
- array (
623
- 'pretty_version' => 'v3.4.47',
624
- 'version' => '3.4.47.0',
625
- 'aliases' =>
626
- array (
627
- ),
628
- 'reference' => '88289caa3c166321883f67fe5130188ebbb47094',
629
- ),
630
- 'webmozart/assert' =>
631
- array (
632
- 'pretty_version' => '1.9.1',
633
- 'version' => '1.9.1.0',
634
- 'aliases' =>
635
- array (
636
- ),
637
- 'reference' => 'bafc69caeb4d49c39fd0779086c03a3738cbb389',
638
- ),
639
- ),
640
  );
1
+ <?php return array(
2
+ 'root' => array(
3
+ 'pretty_version' => 'dev-master',
4
+ 'version' => 'dev-master',
5
+ 'type' => 'library',
6
+ 'install_path' => __DIR__ . '/../../',
7
+ 'aliases' => array(
8
+ 0 => '2.x-dev',
9
+ ),
10
+ 'reference' => 'ad1e7fbeb908b2563a6db5e3543b09449ad7535b',
11
+ 'name' => 'google/apiclient',
12
+ 'dev' => false,
13
+ ),
14
+ 'versions' => array(
15
+ 'firebase/php-jwt' => array(
16
+ 'pretty_version' => 'v5.5.1',
17
+ 'version' => '5.5.1.0',
18
+ 'type' => 'library',
19
+ 'install_path' => __DIR__ . '/../firebase/php-jwt',
20
+ 'aliases' => array(),
21
+ 'reference' => '83b609028194aa042ea33b5af2d41a7427de80e6',
22
+ 'dev_requirement' => false,
23
+ ),
24
+ 'google/apiclient' => array(
25
+ 'pretty_version' => 'dev-master',
26
+ 'version' => 'dev-master',
27
+ 'type' => 'library',
28
+ 'install_path' => __DIR__ . '/../../',
29
+ 'aliases' => array(
30
+ 0 => '2.x-dev',
31
+ ),
32
+ 'reference' => 'ad1e7fbeb908b2563a6db5e3543b09449ad7535b',
33
+ 'dev_requirement' => false,
34
+ ),
35
+ 'google/apiclient-services' => array(
36
+ 'pretty_version' => 'v0.224.0',
37
+ 'version' => '0.224.0.0',
38
+ 'type' => 'library',
39
+ 'install_path' => __DIR__ . '/../google/apiclient-services',
40
+ 'aliases' => array(),
41
+ 'reference' => '2dfd8e7fc063b9228e8d9ccf9ffdeb6dace7e6b1',
42
+ 'dev_requirement' => false,
43
+ ),
44
+ 'google/auth' => array(
45
+ 'pretty_version' => 'v1.18.0',
46
+ 'version' => '1.18.0.0',
47
+ 'type' => 'library',
48
+ 'install_path' => __DIR__ . '/../google/auth',
49
+ 'aliases' => array(),
50
+ 'reference' => '21dd478e77b0634ed9e3a68613f74ed250ca9347',
51
+ 'dev_requirement' => false,
52
+ ),
53
+ 'guzzlehttp/guzzle' => array(
54
+ 'pretty_version' => '7.4.0',
55
+ 'version' => '7.4.0.0',
56
+ 'type' => 'library',
57
+ 'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
58
+ 'aliases' => array(),
59
+ 'reference' => '868b3571a039f0ebc11ac8f344f4080babe2cb94',
60
+ 'dev_requirement' => false,
61
+ ),
62
+ 'guzzlehttp/promises' => array(
63
+ 'pretty_version' => '1.5.1',
64
+ 'version' => '1.5.1.0',
65
+ 'type' => 'library',
66
+ 'install_path' => __DIR__ . '/../guzzlehttp/promises',
67
+ 'aliases' => array(),
68
+ 'reference' => 'fe752aedc9fd8fcca3fe7ad05d419d32998a06da',
69
+ 'dev_requirement' => false,
70
+ ),
71
+ 'guzzlehttp/psr7' => array(
72
+ 'pretty_version' => '1.8.3',
73
+ 'version' => '1.8.3.0',
74
+ 'type' => 'library',
75
+ 'install_path' => __DIR__ . '/../guzzlehttp/psr7',
76
+ 'aliases' => array(),
77
+ 'reference' => '1afdd860a2566ed3c2b0b4a3de6e23434a79ec85',
78
+ 'dev_requirement' => false,
79
+ ),
80
+ 'monolog/monolog' => array(
81
+ 'pretty_version' => '2.3.5',
82
+ 'version' => '2.3.5.0',
83
+ 'type' => 'library',
84
+ 'install_path' => __DIR__ . '/../monolog/monolog',
85
+ 'aliases' => array(),
86
+ 'reference' => 'fd4380d6fc37626e2f799f29d91195040137eba9',
87
+ 'dev_requirement' => false,
88
+ ),
89
+ 'paragonie/constant_time_encoding' => array(
90
+ 'pretty_version' => 'v2.4.0',
91
+ 'version' => '2.4.0.0',
92
+ 'type' => 'library',
93
+ 'install_path' => __DIR__ . '/../paragonie/constant_time_encoding',
94
+ 'aliases' => array(),
95
+ 'reference' => 'f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c',
96
+ 'dev_requirement' => false,
97
+ ),
98
+ 'paragonie/random_compat' => array(
99
+ 'pretty_version' => 'v9.99.100',
100
+ 'version' => '9.99.100.0',
101
+ 'type' => 'library',
102
+ 'install_path' => __DIR__ . '/../paragonie/random_compat',
103
+ 'aliases' => array(),
104
+ 'reference' => '996434e5492cb4c3edcb9168db6fbb1359ef965a',
105
+ 'dev_requirement' => false,
106
+ ),
107
+ 'phpseclib/phpseclib' => array(
108
+ 'pretty_version' => '3.0.12',
109
+ 'version' => '3.0.12.0',
110
+ 'type' => 'library',
111
+ 'install_path' => __DIR__ . '/../phpseclib/phpseclib',
112
+ 'aliases' => array(),
113
+ 'reference' => '89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb',
114
+ 'dev_requirement' => false,
115
+ ),
116
+ 'psr/cache' => array(
117
+ 'pretty_version' => '1.0.1',
118
+ 'version' => '1.0.1.0',
119
+ 'type' => 'library',
120
+ 'install_path' => __DIR__ . '/../psr/cache',
121
+ 'aliases' => array(),
122
+ 'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
123
+ 'dev_requirement' => false,
124
+ ),
125
+ 'psr/http-client' => array(
126
+ 'pretty_version' => '1.0.1',
127
+ 'version' => '1.0.1.0',
128
+ 'type' => 'library',
129
+ 'install_path' => __DIR__ . '/../psr/http-client',
130
+ 'aliases' => array(),
131
+ 'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
132
+ 'dev_requirement' => false,
133
+ ),
134
+ 'psr/http-client-implementation' => array(
135
+ 'dev_requirement' => false,
136
+ 'provided' => array(
137
+ 0 => '1.0',
138
+ ),
139
+ ),
140
+ 'psr/http-message' => array(
141
+ 'pretty_version' => '1.0.1',
142
+ 'version' => '1.0.1.0',
143
+ 'type' => 'library',
144
+ 'install_path' => __DIR__ . '/../psr/http-message',
145
+ 'aliases' => array(),
146
+ 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
147
+ 'dev_requirement' => false,
148
+ ),
149
+ 'psr/http-message-implementation' => array(
150
+ 'dev_requirement' => false,
151
+ 'provided' => array(
152
+ 0 => '1.0',
153
+ ),
154
+ ),
155
+ 'psr/log' => array(
156
+ 'pretty_version' => '1.1.4',
157
+ 'version' => '1.1.4.0',
158
+ 'type' => 'library',
159
+ 'install_path' => __DIR__ . '/../psr/log',
160
+ 'aliases' => array(),
161
+ 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
162
+ 'dev_requirement' => false,
163
+ ),
164
+ 'psr/log-implementation' => array(
165
+ 'dev_requirement' => false,
166
+ 'provided' => array(
167
+ 0 => '1.0.0 || 2.0.0 || 3.0.0',
168
+ ),
169
+ ),
170
+ 'ralouphie/getallheaders' => array(
171
+ 'pretty_version' => '3.0.3',
172
+ 'version' => '3.0.3.0',
173
+ 'type' => 'library',
174
+ 'install_path' => __DIR__ . '/../ralouphie/getallheaders',
175
+ 'aliases' => array(),
176
+ 'reference' => '120b605dfeb996808c31b6477290a714d356e822',
177
+ 'dev_requirement' => false,
178
+ ),
179
+ 'symfony/deprecation-contracts' => array(
180
+ 'pretty_version' => 'v2.5.0',
181
+ 'version' => '2.5.0.0',
182
+ 'type' => 'library',
183
+ 'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
184
+ 'aliases' => array(),
185
+ 'reference' => '6f981ee24cf69ee7ce9736146d1c57c2780598a8',
186
+ 'dev_requirement' => false,
187
+ ),
188
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  );
inc/lib/google-api/vendor/composer/platform_check.php CHANGED
@@ -4,8 +4,8 @@
4
 
5
  $issues = array();
6
 
7
- if (!(PHP_VERSION_ID >= 50600)) {
8
- $issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running ' . PHP_VERSION . '.';
9
  }
10
 
11
  if ($issues) {
4
 
5
  $issues = array();
6
 
7
+ if (!(PHP_VERSION_ID >= 70205)) {
8
+ $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.';
9
  }
10
 
11
  if ($issues) {
inc/lib/google-api/vendor/firebase/php-jwt/LICENSE CHANGED
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met:
13
  disclaimer in the documentation and/or other materials provided
14
  with the distribution.
15
 
16
- * Neither the name of Neuman Vong nor the names of other
17
  contributors may be used to endorse or promote products derived
18
  from this software without specific prior written permission.
19
 
13
  disclaimer in the documentation and/or other materials provided
14
  with the distribution.
15
 
16
+ * Neither the name of the copyright holder nor the names of other
17
  contributors may be used to endorse or promote products derived
18
  from this software without specific prior written permission.
19
 
inc/lib/google-api/vendor/firebase/php-jwt/README.md CHANGED
@@ -16,11 +16,18 @@ Use composer to manage your dependencies and download PHP-JWT:
16
  composer require firebase/php-jwt
17
  ```
18
 
 
 
 
 
 
 
 
19
  Example
20
  -------
21
  ```php
22
- <?php
23
- use \Firebase\JWT\JWT;
24
 
25
  $key = "example_key";
26
  $payload = array(
@@ -36,8 +43,8 @@ $payload = array(
36
  * https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40
37
  * for a list of spec-compliant algorithms.
38
  */
39
- $jwt = JWT::encode($payload, $key);
40
- $decoded = JWT::decode($jwt, $key, array('HS256'));
41
 
42
  print_r($decoded);
43
 
@@ -56,15 +63,13 @@ $decoded_array = (array) $decoded;
56
  * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
57
  */
58
  JWT::$leeway = 60; // $leeway in seconds
59
- $decoded = JWT::decode($jwt, $key, array('HS256'));
60
-
61
- ?>
62
  ```
63
  Example with RS256 (openssl)
64
  ----------------------------
65
  ```php
66
- <?php
67
- use \Firebase\JWT\JWT;
68
 
69
  $privateKey = <<<EOD
70
  -----BEGIN RSA PRIVATE KEY-----
@@ -103,7 +108,7 @@ $payload = array(
103
  $jwt = JWT::encode($payload, $privateKey, 'RS256');
104
  echo "Encode:\n" . print_r($jwt, true) . "\n";
105
 
106
- $decoded = JWT::decode($jwt, $publicKey, array('RS256'));
107
 
108
  /*
109
  NOTE: This will now be an object instead of an associative array. To get
@@ -112,19 +117,90 @@ $decoded = JWT::decode($jwt, $publicKey, array('RS256'));
112
 
113
  $decoded_array = (array) $decoded;
114
  echo "Decode:\n" . print_r($decoded_array, true) . "\n";
115
- ?>
116
  ```
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  Using JWKs
119
  ----------
120
 
121
  ```php
 
 
 
122
  // Set of keys. The "keys" key is required. For example, the JSON response to
123
  // this endpoint: https://www.gstatic.com/iap/verify/public_key-jwk
124
  $jwks = ['keys' => []];
125
 
126
  // JWK::parseKeySet($jwks) returns an associative array of **kid** to private
127
  // key. Pass this as the second parameter to JWT::decode.
 
128
  JWT::decode($payload, JWK::parseKeySet($jwks), $supportedAlgorithm);
129
  ```
130
 
16
  composer require firebase/php-jwt
17
  ```
18
 
19
+ Optionally, install the `paragonie/sodium_compat` package from composer if your
20
+ php is < 7.2 or does not have libsodium installed:
21
+
22
+ ```bash
23
+ composer require paragonie/sodium_compat
24
+ ```
25
+
26
  Example
27
  -------
28
  ```php
29
+ use Firebase\JWT\JWT;
30
+ use Firebase\JWT\Key;
31
 
32
  $key = "example_key";
33
  $payload = array(
43
  * https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40
44
  * for a list of spec-compliant algorithms.
45
  */
46
+ $jwt = JWT::encode($payload, $key, 'HS256');
47
+ $decoded = JWT::decode($jwt, new Key($key, 'HS256'));
48
 
49
  print_r($decoded);
50
 
63
  * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
64
  */
65
  JWT::$leeway = 60; // $leeway in seconds
66
+ $decoded = JWT::decode($jwt, new Key($key, 'HS256'));
 
 
67
  ```
68
  Example with RS256 (openssl)
69
  ----------------------------
70
  ```php
71
+ use Firebase\JWT\JWT;
72
+ use Firebase\JWT\Key;
73
 
74
  $privateKey = <<<EOD
75
  -----BEGIN RSA PRIVATE KEY-----
108
  $jwt = JWT::encode($payload, $privateKey, 'RS256');
109
  echo "Encode:\n" . print_r($jwt, true) . "\n";
110
 
111
+ $decoded = JWT::decode($jwt, new Key($publicKey, 'RS256'));
112
 
113
  /*
114
  NOTE: This will now be an object instead of an associative array. To get
117
 
118
  $decoded_array = (array) $decoded;
119
  echo "Decode:\n" . print_r($decoded_array, true) . "\n";
 
120
  ```
121
 
122
+ Example with a passphrase
123
+ -------------------------
124
+
125
+ ```php
126
+ use Firebase\JWT\JWT;
127
+ use Firebase\JWT\Key;
128
+
129
+ // Your passphrase
130
+ $passphrase = '[YOUR_PASSPHRASE]';
131
+
132
+ // Your private key file with passphrase
133
+ // Can be generated with "ssh-keygen -t rsa -m pem"
134
+ $privateKeyFile = '/path/to/key-with-passphrase.pem';
135
+
136
+ // Create a private key of type "resource"
137
+ $privateKey = openssl_pkey_get_private(
138
+ file_get_contents($privateKeyFile),
139
+ $passphrase
140
+ );
141
+
142
+ $payload = array(
143
+ "iss" => "example.org",
144
+ "aud" => "example.com",
145
+ "iat" => 1356999524,
146
+ "nbf" => 1357000000
147
+ );
148
+
149
+ $jwt = JWT::encode($payload, $privateKey, 'RS256');
150
+ echo "Encode:\n" . print_r($jwt, true) . "\n";
151
+
152
+ // Get public key from the private key, or pull from from a file.
153
+ $publicKey = openssl_pkey_get_details($privateKey)['key'];
154
+
155
+ $decoded = JWT::decode($jwt, new Key($publicKey, 'RS256'));
156
+ echo "Decode:\n" . print_r((array) $decoded, true) . "\n";
157
+ ```
158
+
159
+ Example with EdDSA (libsodium and Ed25519 signature)
160
+ ----------------------------
161
+ ```php
162
+ use Firebase\JWT\JWT;
163
+ use Firebase\JWT\Key;
164
+
165
+ // Public and private keys are expected to be Base64 encoded. The last
166
+ // non-empty line is used so that keys can be generated with
167
+ // sodium_crypto_sign_keypair(). The secret keys generated by other tools may
168
+ // need to be adjusted to match the input expected by libsodium.
169
+
170
+ $keyPair = sodium_crypto_sign_keypair();
171
+
172
+ $privateKey = base64_encode(sodium_crypto_sign_secretkey($keyPair));
173
+
174
+ $publicKey = base64_encode(sodium_crypto_sign_publickey($keyPair));
175
+
176
+ $payload = array(
177
+ "iss" => "example.org",
178
+ "aud" => "example.com",
179
+ "iat" => 1356999524,
180
+ "nbf" => 1357000000
181
+ );
182
+
183
+ $jwt = JWT::encode($payload, $privateKey, 'EdDSA');
184
+ echo "Encode:\n" . print_r($jwt, true) . "\n";
185
+
186
+ $decoded = JWT::decode($jwt, new Key($publicKey, 'EdDSA'));
187
+ echo "Decode:\n" . print_r((array) $decoded, true) . "\n";
188
+ ````
189
+
190
  Using JWKs
191
  ----------
192
 
193
  ```php
194
+ use Firebase\JWT\JWK;
195
+ use Firebase\JWT\JWT;
196
+
197
  // Set of keys. The "keys" key is required. For example, the JSON response to
198
  // this endpoint: https://www.gstatic.com/iap/verify/public_key-jwk
199
  $jwks = ['keys' => []];
200
 
201
  // JWK::parseKeySet($jwks) returns an associative array of **kid** to private
202
  // key. Pass this as the second parameter to JWT::decode.
203
+ // NOTE: The deprecated $supportedAlgorithm must be supplied when parsing from JWK.
204
  JWT::decode($payload, JWK::parseKeySet($jwks), $supportedAlgorithm);
205
  ```
206
 
inc/lib/google-api/vendor/firebase/php-jwt/composer.json CHANGED
@@ -22,6 +22,9 @@
22
  "require": {
23
  "php": ">=5.3.0"
24
  },
 
 
 
25
  "autoload": {
26
  "psr-4": {
27
  "Firebase\\JWT\\": "src"
22
  "require": {
23
  "php": ">=5.3.0"
24
  },
25
+ "suggest": {
26
+ "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
27
+ },
28
  "autoload": {
29
  "psr-4": {
30
  "Firebase\\JWT\\": "src"
inc/lib/google-api/vendor/firebase/php-jwt/src/BeforeValidException.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace Firebase\JWT;
3
 
4
  class BeforeValidException extends \UnexpectedValueException
1
  <?php
2
+
3
  namespace Firebase\JWT;
4
 
5
  class BeforeValidException extends \UnexpectedValueException
inc/lib/google-api/vendor/firebase/php-jwt/src/ExpiredException.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace Firebase\JWT;
3
 
4
  class ExpiredException extends \UnexpectedValueException
1
  <?php
2
+
3
  namespace Firebase\JWT;
4
 
5
  class ExpiredException extends \UnexpectedValueException
inc/lib/google-api/vendor/firebase/php-jwt/src/JWK.php CHANGED
@@ -71,7 +71,7 @@ class JWK
71
  *
72
  * @uses createPemFromModulusAndExponent
73
  */
74
- private static function parseKey(array $jwk)
75
  {
76
  if (empty($jwk)) {
77
  throw new InvalidArgumentException('JWK must not be empty');
@@ -82,7 +82,7 @@ class JWK
82
 
83
  switch ($jwk['kty']) {
84
  case 'RSA':
85
- if (\array_key_exists('d', $jwk)) {
86
  throw new UnexpectedValueException('RSA private keys are not supported');
87
  }
88
  if (!isset($jwk['n']) || !isset($jwk['e'])) {
71
  *
72
  * @uses createPemFromModulusAndExponent
73
  */
74
+ public static function parseKey(array $jwk)
75
  {
76
  if (empty($jwk)) {
77
  throw new InvalidArgumentException('JWK must not be empty');
82
 
83
  switch ($jwk['kty']) {
84
  case 'RSA':
85
+ if (!empty($jwk['d'])) {
86
  throw new UnexpectedValueException('RSA private keys are not supported');
87
  }
88
  if (!isset($jwk['n']) || !isset($jwk['e'])) {
inc/lib/google-api/vendor/firebase/php-jwt/src/JWT.php CHANGED
@@ -2,10 +2,13 @@
2
 
3
  namespace Firebase\JWT;
4
 
5
- use \DomainException;
6
- use \InvalidArgumentException;
7
- use \UnexpectedValueException;
8
- use \DateTime;
 
 
 
9
 
10
  /**
11
  * JSON Web Token implementation, based on this spec:
@@ -42,6 +45,7 @@ class JWT
42
  public static $timestamp = null;
43
 
44
  public static $supported_algs = array(
 
45
  'ES256' => array('openssl', 'SHA256'),
46
  'HS256' => array('hash_hmac', 'SHA256'),
47
  'HS384' => array('hash_hmac', 'SHA384'),
@@ -49,19 +53,24 @@ class JWT
49
  'RS256' => array('openssl', 'SHA256'),
50
  'RS384' => array('openssl', 'SHA384'),
51
  'RS512' => array('openssl', 'SHA512'),
 
52
  );
53
 
54
  /**
55
  * Decodes a JWT string into a PHP object.
56
  *
57
  * @param string $jwt The JWT
58
- * @param string|array|resource $key The key, or map of keys.
59
  * If the algorithm used is asymmetric, this is the public key
60
- * @param array $allowed_algs List of supported verification algorithms
61
- * Supported algorithms are 'ES256', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', and 'RS512'
 
 
 
62
  *
63
  * @return object The JWT's payload as a PHP object
64
  *
 
65
  * @throws UnexpectedValueException Provided JWT was invalid
66
  * @throws SignatureInvalidException Provided JWT was invalid because the signature verification failed
67
  * @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf'
@@ -71,11 +80,11 @@ class JWT
71
  * @uses jsonDecode
72
  * @uses urlsafeB64Decode
73
  */
74
- public static function decode($jwt, $key, array $allowed_algs = array())
75
  {
76
  $timestamp = \is_null(static::$timestamp) ? \time() : static::$timestamp;
77
 
78
- if (empty($key)) {
79
  throw new InvalidArgumentException('Key may not be empty');
80
  }
81
  $tks = \explode('.', $jwt);
@@ -98,27 +107,32 @@ class JWT
98
  if (empty(static::$supported_algs[$header->alg])) {
99
  throw new UnexpectedValueException('Algorithm not supported');
100
  }
101
- if (!\in_array($header->alg, $allowed_algs)) {
102
- throw new UnexpectedValueException('Algorithm not allowed');
103
- }
104
- if ($header->alg === 'ES256') {
105
- // OpenSSL expects an ASN.1 DER sequence for ES256 signatures
106
- $sig = self::signatureToDER($sig);
107
- }
108
 
109
- if (\is_array($key) || $key instanceof \ArrayAccess) {
110
- if (isset($header->kid)) {
111
- if (!isset($key[$header->kid])) {
112
- throw new UnexpectedValueException('"kid" invalid, unable to lookup correct key');
113
- }
114
- $key = $key[$header->kid];
115
- } else {
116
- throw new UnexpectedValueException('"kid" empty, unable to lookup correct key');
 
 
 
117
  }
 
 
 
 
 
 
 
 
 
 
118
  }
119
 
120
- // Check the signature
121
- if (!static::verify("$headb64.$bodyb64", $sig, $key, $header->alg)) {
122
  throw new SignatureInvalidException('Signature verification failed');
123
  }
124
 
@@ -150,13 +164,14 @@ class JWT
150
  /**
151
  * Converts and signs a PHP object or array into a JWT string.
152
  *
153
- * @param object|array $payload PHP object or array
154
- * @param string $key The secret key.
155
- * If the algorithm used is asymmetric, this is the private key
156
- * @param string $alg The signing algorithm.
157
- * Supported algorithms are 'ES256', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', and 'RS512'
158
- * @param mixed $keyId
159
- * @param array $head An array with header elements to attach
 
160
  *
161
  * @return string A signed JWT
162
  *
@@ -189,11 +204,12 @@ class JWT
189
  * @param string $msg The message to sign
190
  * @param string|resource $key The secret key
191
  * @param string $alg The signing algorithm.
192
- * Supported algorithms are 'ES256', 'HS256', 'HS384', 'HS512', 'RS256', 'RS384', and 'RS512'
 
193
  *
194
  * @return string An encrypted message
195
  *
196
- * @throws DomainException Unsupported algorithm was specified
197
  */
198
  public static function sign($msg, $key, $alg = 'HS256')
199
  {
@@ -209,11 +225,24 @@ class JWT
209
  $success = \openssl_sign($msg, $signature, $key, $algorithm);
210
  if (!$success) {
211
  throw new DomainException("OpenSSL unable to sign data");
212
- } else {
213
- if ($alg === 'ES256') {
214
- $signature = self::signatureFromDER($signature, 256);
215
- }
216
- return $signature;
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  }
218
  }
219
  }
@@ -229,7 +258,7 @@ class JWT
229
  *
230
  * @return bool
231
  *
232
- * @throws DomainException Invalid Algorithm or OpenSSL failure
233
  */
234
  private static function verify($msg, $signature, $key, $alg)
235
  {
@@ -250,21 +279,22 @@ class JWT
250
  throw new DomainException(
251
  'OpenSSL error: ' . \openssl_error_string()
252
  );
 
 
 
 
 
 
 
 
 
 
 
 
253
  case 'hash_hmac':
254
  default:
255
  $hash = \hash_hmac($algorithm, $msg, $key, true);
256
- if (\function_exists('hash_equals')) {
257
- return \hash_equals($signature, $hash);
258
- }
259
- $len = \min(static::safeStrlen($signature), static::safeStrlen($hash));
260
-
261
- $status = 0;
262
- for ($i = 0; $i < $len; $i++) {
263
- $status |= (\ord($signature[$i]) ^ \ord($hash[$i]));
264
- }
265
- $status |= (static::safeStrlen($signature) ^ static::safeStrlen($hash));
266
-
267
- return ($status === 0);
268
  }
269
  }
270
 
@@ -352,6 +382,75 @@ class JWT
352
  return \str_replace('=', '', \strtr(\base64_encode($input), '+/', '-_'));
353
  }
354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  /**
356
  * Helper method to create a JSON error.
357
  *
2
 
3
  namespace Firebase\JWT;
4
 
5
+ use ArrayAccess;
6
+ use DomainException;
7
+ use Exception;
8
+ use InvalidArgumentException;
9
+ use OpenSSLAsymmetricKey;
10
+ use UnexpectedValueException;
11
+ use DateTime;
12
 
13
  /**
14
  * JSON Web Token implementation, based on this spec:
45
  public static $timestamp = null;
46
 
47
  public static $supported_algs = array(
48
+ 'ES384' => array('openssl', 'SHA384'),
49
  'ES256' => array('openssl', 'SHA256'),
50
  'HS256' => array('hash_hmac', 'SHA256'),
51
  'HS384' => array('hash_hmac', 'SHA384'),
53
  'RS256' => array('openssl', 'SHA256'),
54
  'RS384' => array('openssl', 'SHA384'),
55
  'RS512' => array('openssl', 'SHA512'),
56
+ 'EdDSA' => array('sodium_crypto', 'EdDSA'),
57
  );
58
 
59
  /**
60
  * Decodes a JWT string into a PHP object.
61
  *
62
  * @param string $jwt The JWT
63
+ * @param Key|array<Key>|mixed $keyOrKeyArray The Key or array of Key objects.
64
  * If the algorithm used is asymmetric, this is the public key
65
+ * Each Key object contains an algorithm and matching key.
66
+ * Supported algorithms are 'ES384','ES256', 'HS256', 'HS384',
67
+ * 'HS512', 'RS256', 'RS384', and 'RS512'
68
+ * @param array $allowed_algs [DEPRECATED] List of supported verification algorithms. Only
69
+ * should be used for backwards compatibility.
70
  *
71
  * @return object The JWT's payload as a PHP object
72
  *
73
+ * @throws InvalidArgumentException Provided JWT was empty
74
  * @throws UnexpectedValueException Provided JWT was invalid
75
  * @throws SignatureInvalidException Provided JWT was invalid because the signature verification failed
76
  * @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf'
80
  * @uses jsonDecode
81
  * @uses urlsafeB64Decode
82
  */
83
+ public static function decode($jwt, $keyOrKeyArray, array $allowed_algs = array())
84
  {
85
  $timestamp = \is_null(static::$timestamp) ? \time() : static::$timestamp;
86
 
87
+ if (empty($keyOrKeyArray)) {
88
  throw new InvalidArgumentException('Key may not be empty');
89
  }
90
  $tks = \explode('.', $jwt);
107
  if (empty(static::$supported_algs[$header->alg])) {
108
  throw new UnexpectedValueException('Algorithm not supported');
109
  }
 
 
 
 
 
 
 
110
 
111
+ list($keyMaterial, $algorithm) = self::getKeyMaterialAndAlgorithm(
112
+ $keyOrKeyArray,
113
+ empty($header->kid) ? null : $header->kid
114
+ );
115
+
116
+ if (empty($algorithm)) {
117
+ // Use deprecated "allowed_algs" to determine if the algorithm is supported.
118
+ // This opens up the possibility of an attack in some implementations.
119
+ // @see https://github.com/firebase/php-jwt/issues/351
120
+ if (!\in_array($header->alg, $allowed_algs)) {
121
+ throw new UnexpectedValueException('Algorithm not allowed');
122
  }
123
+ } else {
124
+ // Check the algorithm
125
+ if (!self::constantTimeEquals($algorithm, $header->alg)) {
126
+ // See issue #351
127
+ throw new UnexpectedValueException('Incorrect key for this algorithm');
128
+ }
129
+ }
130
+ if ($header->alg === 'ES256' || $header->alg === 'ES384') {
131
+ // OpenSSL expects an ASN.1 DER sequence for ES256/ES384 signatures
132
+ $sig = self::signatureToDER($sig);
133
  }
134
 
135
+ if (!static::verify("$headb64.$bodyb64", $sig, $keyMaterial, $header->alg)) {
 
136
  throw new SignatureInvalidException('Signature verification failed');
137
  }
138
 
164
  /**
165
  * Converts and signs a PHP object or array into a JWT string.
166
  *
167
+ * @param object|array $payload PHP object or array
168
+ * @param string|resource $key The secret key.
169
+ * If the algorithm used is asymmetric, this is the private key
170
+ * @param string $alg The signing algorithm.
171
+ * Supported algorithms are 'ES384','ES256', 'HS256', 'HS384',
172
+ * 'HS512', 'RS256', 'RS384', and 'RS512'
173
+ * @param mixed $keyId
174
+ * @param array $head An array with header elements to attach
175
  *
176
  * @return string A signed JWT
177
  *
204
  * @param string $msg The message to sign
205
  * @param string|resource $key The secret key
206
  * @param string $alg The signing algorithm.
207
+ * Supported algorithms are 'ES384','ES256', 'HS256', 'HS384',
208
+ * 'HS512', 'RS256', 'RS384', and 'RS512'
209
  *
210
  * @return string An encrypted message
211
  *
212
+ * @throws DomainException Unsupported algorithm or bad key was specified
213
  */
214
  public static function sign($msg, $key, $alg = 'HS256')
215
  {
225
  $success = \openssl_sign($msg, $signature, $key, $algorithm);
226
  if (!$success) {
227
  throw new DomainException("OpenSSL unable to sign data");
228
+ }
229
+ if ($alg === 'ES256') {
230
+ $signature = self::signatureFromDER($signature, 256);
231
+ } elseif ($alg === 'ES384') {
232
+ $signature = self::signatureFromDER($signature, 384);
233
+ }
234
+ return $signature;
235
+ case 'sodium_crypto':
236
+ if (!function_exists('sodium_crypto_sign_detached')) {
237
+ throw new DomainException('libsodium is not available');
238
+ }
239
+ try {
240
+ // The last non-empty line is used as the key.
241
+ $lines = array_filter(explode("\n", $key));
242
+ $key = base64_decode(end($lines));
243
+ return sodium_crypto_sign_detached($msg, $key);
244
+ } catch (Exception $e) {
245
+ throw new DomainException($e->getMessage(), 0, $e);
246
  }
247
  }
248
  }
258
  *
259
  * @return bool
260
  *
261
+ * @throws DomainException Invalid Algorithm, bad key, or OpenSSL failure
262
  */
263
  private static function verify($msg, $signature, $key, $alg)
264
  {
279
  throw new DomainException(
280
  'OpenSSL error: ' . \openssl_error_string()
281
  );
282
+ case 'sodium_crypto':
283
+ if (!function_exists('sodium_crypto_sign_verify_detached')) {
284
+ throw new DomainException('libsodium is not available');
285
+ }
286
+ try {
287
+ // The last non-empty line is used as the key.
288
+ $lines = array_filter(explode("\n", $key));
289
+ $key = base64_decode(end($lines));
290
+ return sodium_crypto_sign_verify_detached($signature, $msg, $key);
291
+ } catch (Exception $e) {
292
+ throw new DomainException($e->getMessage(), 0, $e);
293
+ }
294
  case 'hash_hmac':
295
  default:
296
  $hash = \hash_hmac($algorithm, $msg, $key, true);
297
+ return self::constantTimeEquals($signature, $hash);
 
 
 
 
 
 
 
 
 
 
 
298
  }
299
  }
300
 
382
  return \str_replace('=', '', \strtr(\base64_encode($input), '+/', '-_'));
383
  }
384
 
385
+
386
+ /**
387
+ * Determine if an algorithm has been provided for each Key
388
+ *
389
+ * @param Key|array<Key>|mixed $keyOrKeyArray
390
+ * @param string|null $kid
391
+ *
392
+ * @throws UnexpectedValueException
393
+ *
394
+ * @return array containing the keyMaterial and algorithm
395
+ */
396
+ private static function getKeyMaterialAndAlgorithm($keyOrKeyArray, $kid = null)
397
+ {
398
+ if (
399
+ is_string($keyOrKeyArray)
400
+ || is_resource($keyOrKeyArray)
401
+ || $keyOrKeyArray instanceof OpenSSLAsymmetricKey
402
+ ) {
403
+ return array($keyOrKeyArray, null);
404
+ }
405
+
406
+ if ($keyOrKeyArray instanceof Key) {
407
+ return array($keyOrKeyArray->getKeyMaterial(), $keyOrKeyArray->getAlgorithm());
408
+ }
409
+
410
+ if (is_array($keyOrKeyArray) || $keyOrKeyArray instanceof ArrayAccess) {
411
+ if (!isset($kid)) {
412
+ throw new UnexpectedValueException('"kid" empty, unable to lookup correct key');
413
+ }
414
+ if (!isset($keyOrKeyArray[$kid])) {
415
+ throw new UnexpectedValueException('"kid" invalid, unable to lookup correct key');
416
+ }
417
+
418
+ $key = $keyOrKeyArray[$kid];
419
+
420
+ if ($key instanceof Key) {
421
+ return array($key->getKeyMaterial(), $key->getAlgorithm());
422
+ }
423
+
424
+ return array($key, null);
425
+ }
426
+
427
+ throw new UnexpectedValueException(
428
+ '$keyOrKeyArray must be a string|resource key, an array of string|resource keys, '
429
+ . 'an instance of Firebase\JWT\Key key or an array of Firebase\JWT\Key keys'
430
+ );
431
+ }
432
+
433
+ /**
434
+ * @param string $left
435
+ * @param string $right
436
+ * @return bool
437
+ */
438
+ public static function constantTimeEquals($left, $right)
439
+ {
440
+ if (\function_exists('hash_equals')) {
441
+ return \hash_equals($left, $right);
442
+ }
443
+ $len = \min(static::safeStrlen($left), static::safeStrlen($right));
444
+
445
+ $status = 0;
446
+ for ($i = 0; $i < $len; $i++) {
447
+ $status |= (\ord($left[$i]) ^ \ord($right[$i]));
448
+ }
449
+ $status |= (static::safeStrlen($left) ^ static::safeStrlen($right));
450
+
451
+ return ($status === 0);
452
+ }
453
+
454
  /**
455
  * Helper method to create a JSON error.
456
  *
inc/lib/google-api/vendor/firebase/php-jwt/src/Key.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Firebase\JWT;
4
+
5
+ use InvalidArgumentException;
6
+ use OpenSSLAsymmetricKey;
7
+
8
+ class Key
9
+ {
10
+ /** @var string $algorithm */
11
+ private $algorithm;
12
+
13
+ /** @var string|resource|OpenSSLAsymmetricKey $keyMaterial */
14
+ private $keyMaterial;
15
+
16
+ /**
17
+ * @param string|resource|OpenSSLAsymmetricKey $keyMaterial
18
+ * @param string $algorithm
19
+ */
20
+ public function __construct($keyMaterial, $algorithm)
21
+ {
22
+ if (
23
+ !is_string($keyMaterial)
24
+ && !is_resource($keyMaterial)
25
+ && !$keyMaterial instanceof OpenSSLAsymmetricKey
26
+ ) {
27
+ throw new InvalidArgumentException('Type error: $keyMaterial must be a string, resource, or OpenSSLAsymmetricKey');
28
+ }
29
+
30
+ if (empty($keyMaterial)) {
31
+ throw new InvalidArgumentException('Type error: $keyMaterial must not be empty');
32
+ }
33
+
34
+ if (!is_string($algorithm)|| empty($keyMaterial)) {
35
+ throw new InvalidArgumentException('Type error: $algorithm must be a string');
36
+ }
37
+
38
+ $this->keyMaterial = $keyMaterial;
39
+ $this->algorithm = $algorithm;
40
+ }
41
+
42
+ /**
43
+ * Return the algorithm valid for this key
44
+ *
45
+ * @return string
46
+ */
47
+ public function getAlgorithm()
48
+ {
49
+ return $this->algorithm;
50
+ }
51
+
52
+ /**
53
+ * @return string|resource|OpenSSLAsymmetricKey
54
+ */
55
+ public function getKeyMaterial()
56
+ {
57
+ return $this->keyMaterial;
58
+ }
59
+ }
inc/lib/google-api/vendor/firebase/php-jwt/src/SignatureInvalidException.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  namespace Firebase\JWT;
3
 
4
  class SignatureInvalidException extends \UnexpectedValueException
1
  <?php
2
+
3
  namespace Firebase\JWT;
4
 
5
  class SignatureInvalidException extends \UnexpectedValueException
inc/lib/google-api/vendor/google/apiclient-services/README.md CHANGED
@@ -5,19 +5,9 @@ Google PHP API Client Services
5
 
6
  [Google API PHP Client](https://github.com/googleapis/google-api-php-client/releases)
7
 
8
- ## Usage in v2 of Google API PHP Client
9
 
10
  This library is automatically updated daily with new API changes, and tagged weekly.
11
  It is installed as part of the
12
  [Google API PHP Client](https://github.com/googleapis/google-api-php-client/releases)
13
  library via Composer, which will pull down the most recent tag.
14
-
15
- ## Usage in v1
16
-
17
- If you are currently using the [`v1-master`](https://github.com/googleapis/google-api-php-client/tree/v1-master)
18
- branch of the client library, but want to use the latest API services, you can
19
- do so by requiring this library directly into your project via the same composer command:
20
-
21
- ```sh
22
- composer require google/apiclient-services:dev-master
23
- ```
5
 
6
  [Google API PHP Client](https://github.com/googleapis/google-api-php-client/releases)
7
 
8
+ ## Usage
9
 
10
  This library is automatically updated daily with new API changes, and tagged weekly.
11
  It is installed as part of the
12
  [Google API PHP Client](https://github.com/googleapis/google-api-php-client/releases)
13
  library via Composer, which will pull down the most recent tag.
 
 
 
 
 
 
 
 
 
 
inc/lib/google-api/vendor/google/apiclient-services/SECURITY.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ # Security Policy
2
+
3
+ To report a security issue, please use [g.co/vulnz](https://g.co/vulnz).
4
+
5
+ The Google Security Team will respond within 5 working days of your report on g.co/vulnz.
6
+
7
+ We use g.co/vulnz for our intake, and do coordination and disclosure here using GitHub Security Advisory to privately discuss and fix the issue.
inc/lib/google-api/vendor/google/apiclient-services/autoload.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // For older (pre-2.7.2) verions of google/apiclient
4
+ if (
5
+ file_exists(__DIR__ . '/../apiclient/src/Google/Client.php')
6
+ && !class_exists('WPMSGoogle_Client', false)
7
+ ) {
8
+ require_once(__DIR__ . '/../apiclient/src/Google/Client.php');
9
+ if (
10
+ defined('WPMSGoogle_Client::LIBVER')
11
+ && version_compare(Google_Client::LIBVER, '2.7.2', '<=')
12
+ ) {
13
+ $servicesClassMap = [
14
+ 'WPMSGoogle\\Client' => 'WPMSGoogle_Client',
15
+ 'WPMSGoogle\\Service' => 'WPMSGoogle_Service',
16
+ 'WPMSGoogle\\Service\\Resource' => 'WPMSGoogle_Service_Resource',
17
+ 'WPMSGoogle\\Model' => 'WPMSGoogle_Model',
18
+ 'WPMSGoogle\\Collection' => 'WPMSGoogle_Collection',
19
+ ];
20
+ foreach ($servicesClassMap as $alias => $class) {
21
+ class_alias($class, $alias);
22
+ }
23
+ }
24
+ }
25
+ spl_autoload_register(function ($class) {
26
+ if (0 === strpos($class, 'WPMSGoogle_Service_')) {
27
+ // Autoload the new class, which will also create an alias for the
28
+ // old class by changing underscores to namespaces:
29
+ // Google_Service_Speech_Resource_Operations
30
+ // => WPMSGoogle\Service\Speech\Resource\Operations
31
+ $classExists = class_exists($newClass = str_replace('_', '\\', $class));
32
+ if ($classExists) {
33
+ return true;
34
+ }
35
+ }
36
+ }, true, true);
inc/lib/google-api/vendor/google/apiclient-services/composer.json CHANGED
@@ -6,14 +6,22 @@
6
  "homepage": "http://developers.google.com/api-client-library/php",
7
  "license": "Apache-2.0",
8
  "require": {
9
- "php": ">=5.4"
10
  },
11
  "require-dev": {
12
- "phpunit/phpunit": "^4.8|^5"
13
  },
14
  "autoload": {
15
- "psr-0": {
16
- "Google_Service_": "src"
 
 
 
 
 
 
 
 
17
  }
18
  }
19
  }
6
  "homepage": "http://developers.google.com/api-client-library/php",
7
  "license": "Apache-2.0",
8
  "require": {
9
+ "php": ">=5.6"
10
  },
11
  "require-dev": {
12
+ "phpunit/phpunit": "^5.7||^8.5.13"
13
  },
14
  "autoload": {
15
+ "psr-4": {
16
+ "WPMSGoogle\\Service\\": "src"
17
+ },
18
+ "files": [
19
+ "autoload.php"
20
+ ]
21
+ },
22
+ "autoload-dev": {
23
+ "psr-4": {
24
+ "WPMSGoogle\\": "tests/mocks"
25
  }
26
  }
27
  }
inc/lib/google-api/vendor/google/apiclient-services/renovate.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ {
2
+ "extends": [
3
+ "config:base"
4
+ ],
5
+ "pinVersions": false,
6
+ "rebaseStalePrs": true
7
+ }
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics.php ADDED
@@ -0,0 +1,2170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service;
19
+
20
+ use WPMSGoogle\Client;
21
+
22
+ /**
23
+ * Service definition for Analytics (v3).
24
+ *
25
+ * <p>
26
+ * Views and manages your Google Analytics data.</p>
27
+ *
28
+ * <p>
29
+ * For more information about this service, see the API
30
+ * <a href="https://developers.google.com/analytics/" target="_blank">Documentation</a>
31
+ * </p>
32
+ *
33
+ * @author Google, Inc.
34
+ */
35
+ class Analytics extends \WPMSGoogle\Service
36
+ {
37
+ /** View and manage your Google Analytics data. */
38
+ const ANALYTICS =
39
+ "https://www.googleapis.com/auth/analytics";
40
+ /** Edit Google Analytics management entities. */
41
+ const ANALYTICS_EDIT =
42
+ "https://www.googleapis.com/auth/analytics.edit";
43
+ /** Manage Google Analytics Account users by email address. */
44
+ const ANALYTICS_MANAGE_USERS =
45
+ "https://www.googleapis.com/auth/analytics.manage.users";
46
+ /** View Google Analytics user permissions. */
47
+ const ANALYTICS_MANAGE_USERS_READONLY =
48
+ "https://www.googleapis.com/auth/analytics.manage.users.readonly";
49
+ /** Create a new Google Analytics account along with its default property and view. */
50
+ const ANALYTICS_PROVISION =
51
+ "https://www.googleapis.com/auth/analytics.provision";
52
+ /** View your Google Analytics data. */
53
+ const ANALYTICS_READONLY =
54
+ "https://www.googleapis.com/auth/analytics.readonly";
55
+ /** Manage Google Analytics user deletion requests. */
56
+ const ANALYTICS_USER_DELETION =
57
+ "https://www.googleapis.com/auth/analytics.user.deletion";
58
+
59
+ public $data_ga;
60
+ public $data_mcf;
61
+ public $data_realtime;
62
+ public $management_accountSummaries;
63
+ public $management_accountUserLinks;
64
+ public $management_accounts;
65
+ public $management_clientId;
66
+ public $management_customDataSources;
67
+ public $management_customDimensions;
68
+ public $management_customMetrics;
69
+ public $management_experiments;
70
+ public $management_filters;
71
+ public $management_goals;
72
+ public $management_profileFilterLinks;
73
+ public $management_profileUserLinks;
74
+ public $management_profiles;
75
+ public $management_remarketingAudience;
76
+ public $management_segments;
77
+ public $management_unsampledReports;
78
+ public $management_uploads;
79
+ public $management_webPropertyAdWordsLinks;
80
+ public $management_webproperties;
81
+ public $management_webpropertyUserLinks;
82
+ public $metadata_columns;
83
+ public $provisioning;
84
+ public $userDeletion_userDeletionRequest;
85
+
86
+ /**
87
+ * Constructs the internal representation of the Analytics service.
88
+ *
89
+ * @param Client|array $clientOrConfig The client used to deliver requests, or a
90
+ * config array to pass to a new Client instance.
91
+ * @param string $rootUrl The root URL used for requests to the service.
92
+ */
93
+ public function __construct($clientOrConfig = [], $rootUrl = null)
94
+ {
95
+ parent::__construct($clientOrConfig);
96
+ $this->rootUrl = $rootUrl ?: 'https://analytics.googleapis.com/';
97
+ $this->servicePath = 'analytics/v3/';
98
+ $this->batchPath = 'batch/analytics/v3';
99
+ $this->version = 'v3';
100
+ $this->serviceName = 'analytics';
101
+
102
+ $this->data_ga = new Analytics\Resource\DataGa(
103
+ $this,
104
+ $this->serviceName,
105
+ 'ga',
106
+ [
107
+ 'methods' => [
108
+ 'get' => [
109
+ 'path' => 'data/ga',
110
+ 'httpMethod' => 'GET',
111
+ 'parameters' => [
112
+ 'ids' => [
113
+ 'location' => 'query',
114
+ 'type' => 'string',
115
+ 'required' => true,
116
+ ],
117
+ 'start-date' => [
118
+ 'location' => 'query',
119
+ 'type' => 'string',
120
+ 'required' => true,
121
+ ],
122
+ 'end-date' => [
123
+ 'location' => 'query',
124
+ 'type' => 'string',
125
+ 'required' => true,
126
+ ],
127
+ 'metrics' => [
128
+ 'location' => 'query',
129
+ 'type' => 'string',
130
+ 'required' => true,
131
+ ],
132
+ 'dimensions' => [
133
+ 'location' => 'query',
134
+ 'type' => 'string',
135
+ ],
136
+ 'filters' => [
137
+ 'location' => 'query',
138
+ 'type' => 'string',
139
+ ],
140
+ 'include-empty-rows' => [
141
+ 'location' => 'query',
142
+ 'type' => 'boolean',
143
+ ],
144
+ 'max-results' => [
145
+ 'location' => 'query',
146
+ 'type' => 'integer',
147
+ ],
148
+ 'output' => [
149
+ 'location' => 'query',
150
+ 'type' => 'string',
151
+ ],
152
+ 'samplingLevel' => [
153
+ 'location' => 'query',
154
+ 'type' => 'string',
155
+ ],
156
+ 'segment' => [
157
+ 'location' => 'query',
158
+ 'type' => 'string',
159
+ ],
160
+ 'sort' => [
161
+ 'location' => 'query',
162
+ 'type' => 'string',
163
+ ],
164
+ 'start-index' => [
165
+ 'location' => 'query',
166
+ 'type' => 'integer',
167
+ ],
168
+ ],
169
+ ],
170
+ ]
171
+ ]
172
+ );
173
+ $this->data_mcf = new Analytics\Resource\DataMcf(
174
+ $this,
175
+ $this->serviceName,
176
+ 'mcf',
177
+ [
178
+ 'methods' => [
179
+ 'get' => [
180
+ 'path' => 'data/mcf',
181
+ 'httpMethod' => 'GET',
182
+ 'parameters' => [
183
+ 'ids' => [
184
+ 'location' => 'query',
185
+ 'type' => 'string',
186
+ 'required' => true,
187
+ ],
188
+ 'start-date' => [
189
+ 'location' => 'query',
190
+ 'type' => 'string',
191
+ 'required' => true,
192
+ ],
193
+ 'end-date' => [
194
+ 'location' => 'query',
195
+ 'type' => 'string',
196
+ 'required' => true,
197
+ ],
198
+ 'metrics' => [
199
+ 'location' => 'query',
200
+ 'type' => 'string',
201
+ 'required' => true,
202
+ ],
203
+ 'dimensions' => [
204
+ 'location' => 'query',
205
+ 'type' => 'string',
206
+ ],
207
+ 'filters' => [
208
+ 'location' => 'query',
209
+ 'type' => 'string',
210
+ ],
211
+ 'max-results' => [
212
+ 'location' => 'query',
213
+ 'type' => 'integer',
214
+ ],
215
+ 'samplingLevel' => [
216
+ 'location' => 'query',
217
+ 'type' => 'string',
218
+ ],
219
+ 'sort' => [
220
+ 'location' => 'query',
221
+ 'type' => 'string',
222
+ ],
223
+ 'start-index' => [
224
+ 'location' => 'query',
225
+ 'type' => 'integer',
226
+ ],
227
+ ],
228
+ ],
229
+ ]
230
+ ]
231
+ );
232
+ $this->data_realtime = new Analytics\Resource\DataRealtime(
233
+ $this,
234
+ $this->serviceName,
235
+ 'realtime',
236
+ [
237
+ 'methods' => [
238
+ 'get' => [
239
+ 'path' => 'data/realtime',
240
+ 'httpMethod' => 'GET',
241
+ 'parameters' => [
242
+ 'ids' => [
243
+ 'location' => 'query',
244
+ 'type' => 'string',
245
+ 'required' => true,
246
+ ],
247
+ 'metrics' => [
248
+ 'location' => 'query',
249
+ 'type' => 'string',
250
+ 'required' => true,
251
+ ],
252
+ 'dimensions' => [
253
+ 'location' => 'query',
254
+ 'type' => 'string',
255
+ ],
256
+ 'filters' => [
257
+ 'location' => 'query',
258
+ 'type' => 'string',
259
+ ],
260
+ 'max-results' => [
261
+ 'location' => 'query',
262
+ 'type' => 'integer',
263
+ ],
264
+ 'sort' => [
265
+ 'location' => 'query',
266
+ 'type' => 'string',
267
+ ],
268
+ ],
269
+ ],
270
+ ]
271
+ ]
272
+ );
273
+ $this->management_accountSummaries = new Analytics\Resource\ManagementAccountSummaries(
274
+ $this,
275
+ $this->serviceName,
276
+ 'accountSummaries',
277
+ [
278
+ 'methods' => [
279
+ 'list' => [
280
+ 'path' => 'management/accountSummaries',
281
+ 'httpMethod' => 'GET',
282
+ 'parameters' => [
283
+ 'max-results' => [
284
+ 'location' => 'query',
285
+ 'type' => 'integer',
286
+ ],
287
+ 'start-index' => [
288
+ 'location' => 'query',
289
+ 'type' => 'integer',
290
+ ],
291
+ ],
292
+ ],
293
+ ]
294
+ ]
295
+ );
296
+ $this->management_accountUserLinks = new Analytics\Resource\ManagementAccountUserLinks(
297
+ $this,
298
+ $this->serviceName,
299
+ 'accountUserLinks',
300
+ [
301
+ 'methods' => [
302
+ 'delete' => [
303
+ 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
304
+ 'httpMethod' => 'DELETE',
305
+ 'parameters' => [
306
+ 'accountId' => [
307
+ 'location' => 'path',
308
+ 'type' => 'string',
309
+ 'required' => true,
310
+ ],
311
+ 'linkId' => [
312
+ 'location' => 'path',
313
+ 'type' => 'string',
314
+ 'required' => true,
315
+ ],
316
+ ],
317
+ ],'insert' => [
318
+ 'path' => 'management/accounts/{accountId}/entityUserLinks',
319
+ 'httpMethod' => 'POST',
320
+ 'parameters' => [
321
+ 'accountId' => [
322
+ 'location' => 'path',
323
+ 'type' => 'string',
324
+ 'required' => true,
325
+ ],
326
+ ],
327
+ ],'list' => [
328
+ 'path' => 'management/accounts/{accountId}/entityUserLinks',
329
+ 'httpMethod' => 'GET',
330
+ 'parameters' => [
331
+ 'accountId' => [
332
+ 'location' => 'path',
333
+ 'type' => 'string',
334
+ 'required' => true,
335
+ ],
336
+ 'max-results' => [
337
+ 'location' => 'query',
338
+ 'type' => 'integer',
339
+ ],
340
+ 'start-index' => [
341
+ 'location' => 'query',
342
+ 'type' => 'integer',
343
+ ],
344
+ ],
345
+ ],'update' => [
346
+ 'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
347
+ 'httpMethod' => 'PUT',
348
+ 'parameters' => [
349
+ 'accountId' => [
350
+ 'location' => 'path',
351
+ 'type' => 'string',
352
+ 'required' => true,
353
+ ],
354
+ 'linkId' => [
355
+ 'location' => 'path',
356
+ 'type' => 'string',
357
+ 'required' => true,
358
+ ],
359
+ ],
360
+ ],
361
+ ]
362
+ ]
363
+ );
364
+ $this->management_accounts = new Analytics\Resource\ManagementAccounts(
365
+ $this,
366
+ $this->serviceName,
367
+ 'accounts',
368
+ [
369
+ 'methods' => [
370
+ 'list' => [
371
+ 'path' => 'management/accounts',
372
+ 'httpMethod' => 'GET',
373
+ 'parameters' => [
374
+ 'max-results' => [
375
+ 'location' => 'query',
376
+ 'type' => 'integer',
377
+ ],
378
+ 'start-index' => [
379
+ 'location' => 'query',
380
+ 'type' => 'integer',
381
+ ],
382
+ ],
383
+ ],
384
+ ]
385
+ ]
386
+ );
387
+ $this->management_clientId = new Analytics\Resource\ManagementClientId(
388
+ $this,
389
+ $this->serviceName,
390
+ 'clientId',
391
+ [
392
+ 'methods' => [
393
+ 'hashClientId' => [
394
+ 'path' => 'management/clientId:hashClientId',
395
+ 'httpMethod' => 'POST',
396
+ 'parameters' => [],
397
+ ],
398
+ ]
399
+ ]
400
+ );
401
+ $this->management_customDataSources = new Analytics\Resource\ManagementCustomDataSources(
402
+ $this,
403
+ $this->serviceName,
404
+ 'customDataSources',
405
+ [
406
+ 'methods' => [
407
+ 'list' => [
408
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources',
409
+ 'httpMethod' => 'GET',
410
+ 'parameters' => [
411
+ 'accountId' => [
412
+ 'location' => 'path',
413
+ 'type' => 'string',
414
+ 'required' => true,
415
+ ],
416
+ 'webPropertyId' => [
417
+ 'location' => 'path',
418
+ 'type' => 'string',
419
+ 'required' => true,
420
+ ],
421
+ 'max-results' => [
422
+ 'location' => 'query',
423
+ 'type' => 'integer',
424
+ ],
425
+ 'start-index' => [
426
+ 'location' => 'query',
427
+ 'type' => 'integer',
428
+ ],
429
+ ],
430
+ ],
431
+ ]
432
+ ]
433
+ );
434
+ $this->management_customDimensions = new Analytics\Resource\ManagementCustomDimensions(
435
+ $this,
436
+ $this->serviceName,
437
+ 'customDimensions',
438
+ [
439
+ 'methods' => [
440
+ 'get' => [
441
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
442
+ 'httpMethod' => 'GET',
443
+ 'parameters' => [
444
+ 'accountId' => [
445
+ 'location' => 'path',
446
+ 'type' => 'string',
447
+ 'required' => true,
448
+ ],
449
+ 'webPropertyId' => [
450
+ 'location' => 'path',
451
+ 'type' => 'string',
452
+ 'required' => true,
453
+ ],
454
+ 'customDimensionId' => [
455
+ 'location' => 'path',
456
+ 'type' => 'string',
457
+ 'required' => true,
458
+ ],
459
+ ],
460
+ ],'insert' => [
461
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
462
+ 'httpMethod' => 'POST',
463
+ 'parameters' => [
464
+ 'accountId' => [
465
+ 'location' => 'path',
466
+ 'type' => 'string',
467
+ 'required' => true,
468
+ ],
469
+ 'webPropertyId' => [
470
+ 'location' => 'path',
471
+ 'type' => 'string',
472
+ 'required' => true,
473
+ ],
474
+ ],
475
+ ],'list' => [
476
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
477
+ 'httpMethod' => 'GET',
478
+ 'parameters' => [
479
+ 'accountId' => [
480
+ 'location' => 'path',
481
+ 'type' => 'string',
482
+ 'required' => true,
483
+ ],
484
+ 'webPropertyId' => [
485
+ 'location' => 'path',
486
+ 'type' => 'string',
487
+ 'required' => true,
488
+ ],
489
+ 'max-results' => [
490
+ 'location' => 'query',
491
+ 'type' => 'integer',
492
+ ],
493
+ 'start-index' => [
494
+ 'location' => 'query',
495
+ 'type' => 'integer',
496
+ ],
497
+ ],
498
+ ],'patch' => [
499
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
500
+ 'httpMethod' => 'PATCH',
501
+ 'parameters' => [
502
+ 'accountId' => [
503
+ 'location' => 'path',
504
+ 'type' => 'string',
505
+ 'required' => true,
506
+ ],
507
+ 'webPropertyId' => [
508
+ 'location' => 'path',
509
+ 'type' => 'string',
510
+ 'required' => true,
511
+ ],
512
+ 'customDimensionId' => [
513
+ 'location' => 'path',
514
+ 'type' => 'string',
515
+ 'required' => true,
516
+ ],
517
+ 'ignoreCustomDataSourceLinks' => [
518
+ 'location' => 'query',
519
+ 'type' => 'boolean',
520
+ ],
521
+ ],
522
+ ],'update' => [
523
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
524
+ 'httpMethod' => 'PUT',
525
+ 'parameters' => [
526
+ 'accountId' => [
527
+ 'location' => 'path',
528
+ 'type' => 'string',
529
+ 'required' => true,
530
+ ],
531
+ 'webPropertyId' => [
532
+ 'location' => 'path',
533
+ 'type' => 'string',
534
+ 'required' => true,
535
+ ],
536
+ 'customDimensionId' => [
537
+ 'location' => 'path',
538
+ 'type' => 'string',
539
+ 'required' => true,
540
+ ],
541
+ 'ignoreCustomDataSourceLinks' => [
542
+ 'location' => 'query',
543
+ 'type' => 'boolean',
544
+ ],
545
+ ],
546
+ ],
547
+ ]
548
+ ]
549
+ );
550
+ $this->management_customMetrics = new Analytics\Resource\ManagementCustomMetrics(
551
+ $this,
552
+ $this->serviceName,
553
+ 'customMetrics',
554
+ [
555
+ 'methods' => [
556
+ 'get' => [
557
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
558
+ 'httpMethod' => 'GET',
559
+ 'parameters' => [
560
+ 'accountId' => [
561
+ 'location' => 'path',
562
+ 'type' => 'string',
563
+ 'required' => true,
564
+ ],
565
+ 'webPropertyId' => [
566
+ 'location' => 'path',
567
+ 'type' => 'string',
568
+ 'required' => true,
569
+ ],
570
+ 'customMetricId' => [
571
+ 'location' => 'path',
572
+ 'type' => 'string',
573
+ 'required' => true,
574
+ ],
575
+ ],
576
+ ],'insert' => [
577
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
578
+ 'httpMethod' => 'POST',
579
+ 'parameters' => [
580
+ 'accountId' => [
581
+ 'location' => 'path',
582
+ 'type' => 'string',
583
+ 'required' => true,
584
+ ],
585
+ 'webPropertyId' => [
586
+ 'location' => 'path',
587
+ 'type' => 'string',
588
+ 'required' => true,
589
+ ],
590
+ ],
591
+ ],'list' => [
592
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
593
+ 'httpMethod' => 'GET',
594
+ 'parameters' => [
595
+ 'accountId' => [
596
+ 'location' => 'path',
597
+ 'type' => 'string',
598
+ 'required' => true,
599
+ ],
600
+ 'webPropertyId' => [
601
+ 'location' => 'path',
602
+ 'type' => 'string',
603
+ 'required' => true,
604
+ ],
605
+ 'max-results' => [
606
+ 'location' => 'query',
607
+ 'type' => 'integer',
608
+ ],
609
+ 'start-index' => [
610
+ 'location' => 'query',
611
+ 'type' => 'integer',
612
+ ],
613
+ ],
614
+ ],'patch' => [
615
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
616
+ 'httpMethod' => 'PATCH',
617
+ 'parameters' => [
618
+ 'accountId' => [
619
+ 'location' => 'path',
620
+ 'type' => 'string',
621
+ 'required' => true,
622
+ ],
623
+ 'webPropertyId' => [
624
+ 'location' => 'path',
625
+ 'type' => 'string',
626
+ 'required' => true,
627
+ ],
628
+ 'customMetricId' => [
629
+ 'location' => 'path',
630
+ 'type' => 'string',
631
+ 'required' => true,
632
+ ],
633
+ 'ignoreCustomDataSourceLinks' => [
634
+ 'location' => 'query',
635
+ 'type' => 'boolean',
636
+ ],
637
+ ],
638
+ ],'update' => [
639
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
640
+ 'httpMethod' => 'PUT',
641
+ 'parameters' => [
642
+ 'accountId' => [
643
+ 'location' => 'path',
644
+ 'type' => 'string',
645
+ 'required' => true,
646
+ ],
647
+ 'webPropertyId' => [
648
+ 'location' => 'path',
649
+ 'type' => 'string',
650
+ 'required' => true,
651
+ ],
652
+ 'customMetricId' => [
653
+ 'location' => 'path',
654
+ 'type' => 'string',
655
+ 'required' => true,
656
+ ],
657
+ 'ignoreCustomDataSourceLinks' => [
658
+ 'location' => 'query',
659
+ 'type' => 'boolean',
660
+ ],
661
+ ],
662
+ ],
663
+ ]
664
+ ]
665
+ );
666
+ $this->management_experiments = new Analytics\Resource\ManagementExperiments(
667
+ $this,
668
+ $this->serviceName,
669
+ 'experiments',
670
+ [
671
+ 'methods' => [
672
+ 'delete' => [
673
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
674
+ 'httpMethod' => 'DELETE',
675
+ 'parameters' => [
676
+ 'accountId' => [
677
+ 'location' => 'path',
678
+ 'type' => 'string',
679
+ 'required' => true,
680
+ ],
681
+ 'webPropertyId' => [
682
+ 'location' => 'path',
683
+ 'type' => 'string',
684
+ 'required' => true,
685
+ ],
686
+ 'profileId' => [
687
+ 'location' => 'path',
688
+ 'type' => 'string',
689
+ 'required' => true,
690
+ ],
691
+ 'experimentId' => [
692
+ 'location' => 'path',
693
+ 'type' => 'string',
694
+ 'required' => true,
695
+ ],
696
+ ],
697
+ ],'get' => [
698
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
699
+ 'httpMethod' => 'GET',
700
+ 'parameters' => [
701
+ 'accountId' => [
702
+ 'location' => 'path',
703
+ 'type' => 'string',
704
+ 'required' => true,
705
+ ],
706
+ 'webPropertyId' => [
707
+ 'location' => 'path',
708
+ 'type' => 'string',
709
+ 'required' => true,
710
+ ],
711
+ 'profileId' => [
712
+ 'location' => 'path',
713
+ 'type' => 'string',
714
+ 'required' => true,
715
+ ],
716
+ 'experimentId' => [
717
+ 'location' => 'path',
718
+ 'type' => 'string',
719
+ 'required' => true,
720
+ ],
721
+ ],
722
+ ],'insert' => [
723
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
724
+ 'httpMethod' => 'POST',
725
+ 'parameters' => [
726
+ 'accountId' => [
727
+ 'location' => 'path',
728
+ 'type' => 'string',
729
+ 'required' => true,
730
+ ],
731
+ 'webPropertyId' => [
732
+ 'location' => 'path',
733
+ 'type' => 'string',
734
+ 'required' => true,
735
+ ],
736
+ 'profileId' => [
737
+ 'location' => 'path',
738
+ 'type' => 'string',
739
+ 'required' => true,
740
+ ],
741
+ ],
742
+ ],'list' => [
743
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
744
+ 'httpMethod' => 'GET',
745
+ 'parameters' => [
746
+ 'accountId' => [
747
+ 'location' => 'path',
748
+ 'type' => 'string',
749
+ 'required' => true,
750
+ ],
751
+ 'webPropertyId' => [
752
+ 'location' => 'path',
753
+ 'type' => 'string',
754
+ 'required' => true,
755
+ ],
756
+ 'profileId' => [
757
+ 'location' => 'path',
758
+ 'type' => 'string',
759
+ 'required' => true,
760
+ ],
761
+ 'max-results' => [
762
+ 'location' => 'query',
763
+ 'type' => 'integer',
764
+ ],
765
+ 'start-index' => [
766
+ 'location' => 'query',
767
+ 'type' => 'integer',
768
+ ],
769
+ ],
770
+ ],'patch' => [
771
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
772
+ 'httpMethod' => 'PATCH',
773
+ 'parameters' => [
774
+ 'accountId' => [
775
+ 'location' => 'path',
776
+ 'type' => 'string',
777
+ 'required' => true,
778
+ ],
779
+ 'webPropertyId' => [
780
+ 'location' => 'path',
781
+ 'type' => 'string',
782
+ 'required' => true,
783
+ ],
784
+ 'profileId' => [
785
+ 'location' => 'path',
786
+ 'type' => 'string',
787
+ 'required' => true,
788
+ ],
789
+ 'experimentId' => [
790
+ 'location' => 'path',
791
+ 'type' => 'string',
792
+ 'required' => true,
793
+ ],
794
+ ],
795
+ ],'update' => [
796
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
797
+ 'httpMethod' => 'PUT',
798
+ 'parameters' => [
799
+ 'accountId' => [
800
+ 'location' => 'path',
801
+ 'type' => 'string',
802
+ 'required' => true,
803
+ ],
804
+ 'webPropertyId' => [
805
+ 'location' => 'path',
806
+ 'type' => 'string',
807
+ 'required' => true,
808
+ ],
809
+ 'profileId' => [
810
+ 'location' => 'path',
811
+ 'type' => 'string',
812
+ 'required' => true,
813
+ ],
814
+ 'experimentId' => [
815
+ 'location' => 'path',
816
+ 'type' => 'string',
817
+ 'required' => true,
818
+ ],
819
+ ],
820
+ ],
821
+ ]
822
+ ]
823
+ );
824
+ $this->management_filters = new Analytics\Resource\ManagementFilters(
825
+ $this,
826
+ $this->serviceName,
827
+ 'filters',
828
+ [
829
+ 'methods' => [
830
+ 'delete' => [
831
+ 'path' => 'management/accounts/{accountId}/filters/{filterId}',
832
+ 'httpMethod' => 'DELETE',
833
+ 'parameters' => [
834
+ 'accountId' => [
835
+ 'location' => 'path',
836
+ 'type' => 'string',
837
+ 'required' => true,
838
+ ],
839
+ 'filterId' => [
840
+ 'location' => 'path',
841
+ 'type' => 'string',
842
+ 'required' => true,
843
+ ],
844
+ ],
845
+ ],'get' => [
846
+ 'path' => 'management/accounts/{accountId}/filters/{filterId}',
847
+ 'httpMethod' => 'GET',
848
+ 'parameters' => [
849
+ 'accountId' => [
850
+ 'location' => 'path',
851
+ 'type' => 'string',
852
+ 'required' => true,
853
+ ],
854
+ 'filterId' => [
855
+ 'location' => 'path',
856
+ 'type' => 'string',
857
+ 'required' => true,
858
+ ],
859
+ ],
860
+ ],'insert' => [
861
+ 'path' => 'management/accounts/{accountId}/filters',
862
+ 'httpMethod' => 'POST',
863
+ 'parameters' => [
864
+ 'accountId' => [
865
+ 'location' => 'path',
866
+ 'type' => 'string',
867
+ 'required' => true,
868
+ ],
869
+ ],
870
+ ],'list' => [
871
+ 'path' => 'management/accounts/{accountId}/filters',
872
+ 'httpMethod' => 'GET',
873
+ 'parameters' => [
874
+ 'accountId' => [
875
+ 'location' => 'path',
876
+ 'type' => 'string',
877
+ 'required' => true,
878
+ ],
879
+ 'max-results' => [
880
+ 'location' => 'query',
881
+ 'type' => 'integer',
882
+ ],
883
+ 'start-index' => [
884
+ 'location' => 'query',
885
+ 'type' => 'integer',
886
+ ],
887
+ ],
888
+ ],'patch' => [
889
+ 'path' => 'management/accounts/{accountId}/filters/{filterId}',
890
+ 'httpMethod' => 'PATCH',
891
+ 'parameters' => [
892
+ 'accountId' => [
893
+ 'location' => 'path',
894
+ 'type' => 'string',
895
+ 'required' => true,
896
+ ],
897
+ 'filterId' => [
898
+ 'location' => 'path',
899
+ 'type' => 'string',
900
+ 'required' => true,
901
+ ],
902
+ ],
903
+ ],'update' => [
904
+ 'path' => 'management/accounts/{accountId}/filters/{filterId}',
905
+ 'httpMethod' => 'PUT',
906
+ 'parameters' => [
907
+ 'accountId' => [
908
+ 'location' => 'path',
909
+ 'type' => 'string',
910
+ 'required' => true,
911
+ ],
912
+ 'filterId' => [
913
+ 'location' => 'path',
914
+ 'type' => 'string',
915
+ 'required' => true,
916
+ ],
917
+ ],
918
+ ],
919
+ ]
920
+ ]
921
+ );
922
+ $this->management_goals = new Analytics\Resource\ManagementGoals(
923
+ $this,
924
+ $this->serviceName,
925
+ 'goals',
926
+ [
927
+ 'methods' => [
928
+ 'get' => [
929
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
930
+ 'httpMethod' => 'GET',
931
+ 'parameters' => [
932
+ 'accountId' => [
933
+ 'location' => 'path',
934
+ 'type' => 'string',
935
+ 'required' => true,
936
+ ],
937
+ 'webPropertyId' => [
938
+ 'location' => 'path',
939
+ 'type' => 'string',
940
+ 'required' => true,
941
+ ],
942
+ 'profileId' => [
943
+ 'location' => 'path',
944
+ 'type' => 'string',
945
+ 'required' => true,
946
+ ],
947
+ 'goalId' => [
948
+ 'location' => 'path',
949
+ 'type' => 'string',
950
+ 'required' => true,
951
+ ],
952
+ ],
953
+ ],'insert' => [
954
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
955
+ 'httpMethod' => 'POST',
956
+ 'parameters' => [
957
+ 'accountId' => [
958
+ 'location' => 'path',
959
+ 'type' => 'string',
960
+ 'required' => true,
961
+ ],
962
+ 'webPropertyId' => [
963
+ 'location' => 'path',
964
+ 'type' => 'string',
965
+ 'required' => true,
966
+ ],
967
+ 'profileId' => [
968
+ 'location' => 'path',
969
+ 'type' => 'string',
970
+ 'required' => true,
971
+ ],
972
+ ],
973
+ ],'list' => [
974
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
975
+ 'httpMethod' => 'GET',
976
+ 'parameters' => [
977
+ 'accountId' => [
978
+ 'location' => 'path',
979
+ 'type' => 'string',
980
+ 'required' => true,
981
+ ],
982
+ 'webPropertyId' => [
983
+ 'location' => 'path',
984
+ 'type' => 'string',
985
+ 'required' => true,
986
+ ],
987
+ 'profileId' => [
988
+ 'location' => 'path',
989
+ 'type' => 'string',
990
+ 'required' => true,
991
+ ],
992
+ 'max-results' => [
993
+ 'location' => 'query',
994
+ 'type' => 'integer',
995
+ ],
996
+ 'start-index' => [
997
+ 'location' => 'query',
998
+ 'type' => 'integer',
999
+ ],
1000
+ ],
1001
+ ],'patch' => [
1002
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
1003
+ 'httpMethod' => 'PATCH',
1004
+ 'parameters' => [
1005
+ 'accountId' => [
1006
+ 'location' => 'path',
1007
+ 'type' => 'string',
1008
+ 'required' => true,
1009
+ ],
1010
+ 'webPropertyId' => [
1011
+ 'location' => 'path',
1012
+ 'type' => 'string',
1013
+ 'required' => true,
1014
+ ],
1015
+ 'profileId' => [
1016
+ 'location' => 'path',
1017
+ 'type' => 'string',
1018
+ 'required' => true,
1019
+ ],
1020
+ 'goalId' => [
1021
+ 'location' => 'path',
1022
+ 'type' => 'string',
1023
+ 'required' => true,
1024
+ ],
1025
+ ],
1026
+ ],'update' => [
1027
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
1028
+ 'httpMethod' => 'PUT',
1029
+ 'parameters' => [
1030
+ 'accountId' => [
1031
+ 'location' => 'path',
1032
+ 'type' => 'string',
1033
+ 'required' => true,
1034
+ ],
1035
+ 'webPropertyId' => [
1036
+ 'location' => 'path',
1037
+ 'type' => 'string',
1038
+ 'required' => true,
1039
+ ],
1040
+ 'profileId' => [
1041
+ 'location' => 'path',
1042
+ 'type' => 'string',
1043
+ 'required' => true,
1044
+ ],
1045
+ 'goalId' => [
1046
+ 'location' => 'path',
1047
+ 'type' => 'string',
1048
+ 'required' => true,
1049
+ ],
1050
+ ],
1051
+ ],
1052
+ ]
1053
+ ]
1054
+ );
1055
+ $this->management_profileFilterLinks = new Analytics\Resource\ManagementProfileFilterLinks(
1056
+ $this,
1057
+ $this->serviceName,
1058
+ 'profileFilterLinks',
1059
+ [
1060
+ 'methods' => [
1061
+ 'delete' => [
1062
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1063
+ 'httpMethod' => 'DELETE',
1064
+ 'parameters' => [
1065
+ 'accountId' => [
1066
+ 'location' => 'path',
1067
+ 'type' => 'string',
1068
+ 'required' => true,
1069
+ ],
1070
+ 'webPropertyId' => [
1071
+ 'location' => 'path',
1072
+ 'type' => 'string',
1073
+ 'required' => true,
1074
+ ],
1075
+ 'profileId' => [
1076
+ 'location' => 'path',
1077
+ 'type' => 'string',
1078
+ 'required' => true,
1079
+ ],
1080
+ 'linkId' => [
1081
+ 'location' => 'path',
1082
+ 'type' => 'string',
1083
+ 'required' => true,
1084
+ ],
1085
+ ],
1086
+ ],'get' => [
1087
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1088
+ 'httpMethod' => 'GET',
1089
+ 'parameters' => [
1090
+ 'accountId' => [
1091
+ 'location' => 'path',
1092
+ 'type' => 'string',
1093
+ 'required' => true,
1094
+ ],
1095
+ 'webPropertyId' => [
1096
+ 'location' => 'path',
1097
+ 'type' => 'string',
1098
+ 'required' => true,
1099
+ ],
1100
+ 'profileId' => [
1101
+ 'location' => 'path',
1102
+ 'type' => 'string',
1103
+ 'required' => true,
1104
+ ],
1105
+ 'linkId' => [
1106
+ 'location' => 'path',
1107
+ 'type' => 'string',
1108
+ 'required' => true,
1109
+ ],
1110
+ ],
1111
+ ],'insert' => [
1112
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1113
+ 'httpMethod' => 'POST',
1114
+ 'parameters' => [
1115
+ 'accountId' => [
1116
+ 'location' => 'path',
1117
+ 'type' => 'string',
1118
+ 'required' => true,
1119
+ ],
1120
+ 'webPropertyId' => [
1121
+ 'location' => 'path',
1122
+ 'type' => 'string',
1123
+ 'required' => true,
1124
+ ],
1125
+ 'profileId' => [
1126
+ 'location' => 'path',
1127
+ 'type' => 'string',
1128
+ 'required' => true,
1129
+ ],
1130
+ ],
1131
+ ],'list' => [
1132
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1133
+ 'httpMethod' => 'GET',
1134
+ 'parameters' => [
1135
+ 'accountId' => [
1136
+ 'location' => 'path',
1137
+ 'type' => 'string',
1138
+ 'required' => true,
1139
+ ],
1140
+ 'webPropertyId' => [
1141
+ 'location' => 'path',
1142
+ 'type' => 'string',
1143
+ 'required' => true,
1144
+ ],
1145
+ 'profileId' => [
1146
+ 'location' => 'path',
1147
+ 'type' => 'string',
1148
+ 'required' => true,
1149
+ ],
1150
+ 'max-results' => [
1151
+ 'location' => 'query',
1152
+ 'type' => 'integer',
1153
+ ],
1154
+ 'start-index' => [
1155
+ 'location' => 'query',
1156
+ 'type' => 'integer',
1157
+ ],
1158
+ ],
1159
+ ],'patch' => [
1160
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1161
+ 'httpMethod' => 'PATCH',
1162
+ 'parameters' => [
1163
+ 'accountId' => [
1164
+ 'location' => 'path',
1165
+ 'type' => 'string',
1166
+ 'required' => true,
1167
+ ],
1168
+ 'webPropertyId' => [
1169
+ 'location' => 'path',
1170
+ 'type' => 'string',
1171
+ 'required' => true,
1172
+ ],
1173
+ 'profileId' => [
1174
+ 'location' => 'path',
1175
+ 'type' => 'string',
1176
+ 'required' => true,
1177
+ ],
1178
+ 'linkId' => [
1179
+ 'location' => 'path',
1180
+ 'type' => 'string',
1181
+ 'required' => true,
1182
+ ],
1183
+ ],
1184
+ ],'update' => [
1185
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1186
+ 'httpMethod' => 'PUT',
1187
+ 'parameters' => [
1188
+ 'accountId' => [
1189
+ 'location' => 'path',
1190
+ 'type' => 'string',
1191
+ 'required' => true,
1192
+ ],
1193
+ 'webPropertyId' => [
1194
+ 'location' => 'path',
1195
+ 'type' => 'string',
1196
+ 'required' => true,
1197
+ ],
1198
+ 'profileId' => [
1199
+ 'location' => 'path',
1200
+ 'type' => 'string',
1201
+ 'required' => true,
1202
+ ],
1203
+ 'linkId' => [
1204
+ 'location' => 'path',
1205
+ 'type' => 'string',
1206
+ 'required' => true,
1207
+ ],
1208
+ ],
1209
+ ],
1210
+ ]
1211
+ ]
1212
+ );
1213
+ $this->management_profileUserLinks = new Analytics\Resource\ManagementProfileUserLinks(
1214
+ $this,
1215
+ $this->serviceName,
1216
+ 'profileUserLinks',
1217
+ [
1218
+ 'methods' => [
1219
+ 'delete' => [
1220
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1221
+ 'httpMethod' => 'DELETE',
1222
+ 'parameters' => [
1223
+ 'accountId' => [
1224
+ 'location' => 'path',
1225
+ 'type' => 'string',
1226
+ 'required' => true,
1227
+ ],
1228
+ 'webPropertyId' => [
1229
+ 'location' => 'path',
1230
+ 'type' => 'string',
1231
+ 'required' => true,
1232
+ ],
1233
+ 'profileId' => [
1234
+ 'location' => 'path',
1235
+ 'type' => 'string',
1236
+ 'required' => true,
1237
+ ],
1238
+ 'linkId' => [
1239
+ 'location' => 'path',
1240
+ 'type' => 'string',
1241
+ 'required' => true,
1242
+ ],
1243
+ ],
1244
+ ],'insert' => [
1245
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1246
+ 'httpMethod' => 'POST',
1247
+ 'parameters' => [
1248
+ 'accountId' => [
1249
+ 'location' => 'path',
1250
+ 'type' => 'string',
1251
+ 'required' => true,
1252
+ ],
1253
+ 'webPropertyId' => [
1254
+ 'location' => 'path',
1255
+ 'type' => 'string',
1256
+ 'required' => true,
1257
+ ],
1258
+ 'profileId' => [
1259
+ 'location' => 'path',
1260
+ 'type' => 'string',
1261
+ 'required' => true,
1262
+ ],
1263
+ ],
1264
+ ],'list' => [
1265
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1266
+ 'httpMethod' => 'GET',
1267
+ 'parameters' => [
1268
+ 'accountId' => [
1269
+ 'location' => 'path',
1270
+ 'type' => 'string',
1271
+ 'required' => true,
1272
+ ],
1273
+ 'webPropertyId' => [
1274
+ 'location' => 'path',
1275
+ 'type' => 'string',
1276
+ 'required' => true,
1277
+ ],
1278
+ 'profileId' => [
1279
+ 'location' => 'path',
1280
+ 'type' => 'string',
1281
+ 'required' => true,
1282
+ ],
1283
+ 'max-results' => [
1284
+ 'location' => 'query',
1285
+ 'type' => 'integer',
1286
+ ],
1287
+ 'start-index' => [
1288
+ 'location' => 'query',
1289
+ 'type' => 'integer',
1290
+ ],
1291
+ ],
1292
+ ],'update' => [
1293
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1294
+ 'httpMethod' => 'PUT',
1295
+ 'parameters' => [
1296
+ 'accountId' => [
1297
+ 'location' => 'path',
1298
+ 'type' => 'string',
1299
+ 'required' => true,
1300
+ ],
1301
+ 'webPropertyId' => [
1302
+ 'location' => 'path',
1303
+ 'type' => 'string',
1304
+ 'required' => true,
1305
+ ],
1306
+ 'profileId' => [
1307
+ 'location' => 'path',
1308
+ 'type' => 'string',
1309
+ 'required' => true,
1310
+ ],
1311
+ 'linkId' => [
1312
+ 'location' => 'path',
1313
+ 'type' => 'string',
1314
+ 'required' => true,
1315
+ ],
1316
+ ],
1317
+ ],
1318
+ ]
1319
+ ]
1320
+ );
1321
+ $this->management_profiles = new Analytics\Resource\ManagementProfiles(
1322
+ $this,
1323
+ $this->serviceName,
1324
+ 'profiles',
1325
+ [
1326
+ 'methods' => [
1327
+ 'delete' => [
1328
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1329
+ 'httpMethod' => 'DELETE',
1330
+ 'parameters' => [
1331
+ 'accountId' => [
1332
+ 'location' => 'path',
1333
+ 'type' => 'string',
1334
+ 'required' => true,
1335
+ ],
1336
+ 'webPropertyId' => [
1337
+ 'location' => 'path',
1338
+ 'type' => 'string',
1339
+ 'required' => true,
1340
+ ],
1341
+ 'profileId' => [
1342
+ 'location' => 'path',
1343
+ 'type' => 'string',
1344
+ 'required' => true,
1345
+ ],
1346
+ ],
1347
+ ],'get' => [
1348
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1349
+ 'httpMethod' => 'GET',
1350
+ 'parameters' => [
1351
+ 'accountId' => [
1352
+ 'location' => 'path',
1353
+ 'type' => 'string',
1354
+ 'required' => true,
1355
+ ],
1356
+ 'webPropertyId' => [
1357
+ 'location' => 'path',
1358
+ 'type' => 'string',
1359
+ 'required' => true,
1360
+ ],
1361
+ 'profileId' => [
1362
+ 'location' => 'path',
1363
+ 'type' => 'string',
1364
+ 'required' => true,
1365
+ ],
1366
+ ],
1367
+ ],'insert' => [
1368
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1369
+ 'httpMethod' => 'POST',
1370
+ 'parameters' => [
1371
+ 'accountId' => [
1372
+ 'location' => 'path',
1373
+ 'type' => 'string',
1374
+ 'required' => true,
1375
+ ],
1376
+ 'webPropertyId' => [
1377
+ 'location' => 'path',
1378
+ 'type' => 'string',
1379
+ 'required' => true,
1380
+ ],
1381
+ ],
1382
+ ],'list' => [
1383
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1384
+ 'httpMethod' => 'GET',
1385
+ 'parameters' => [
1386
+ 'accountId' => [
1387
+ 'location' => 'path',
1388
+ 'type' => 'string',
1389
+ 'required' => true,
1390
+ ],
1391
+ 'webPropertyId' => [
1392
+ 'location' => 'path',
1393
+ 'type' => 'string',
1394
+ 'required' => true,
1395
+ ],
1396
+ 'max-results' => [
1397
+ 'location' => 'query',
1398
+ 'type' => 'integer',
1399
+ ],
1400
+ 'start-index' => [
1401
+ 'location' => 'query',
1402
+ 'type' => 'integer',
1403
+ ],
1404
+ ],
1405
+ ],'patch' => [
1406
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1407
+ 'httpMethod' => 'PATCH',
1408
+ 'parameters' => [
1409
+ 'accountId' => [
1410
+ 'location' => 'path',
1411
+ 'type' => 'string',
1412
+ 'required' => true,
1413
+ ],
1414
+ 'webPropertyId' => [
1415
+ 'location' => 'path',
1416
+ 'type' => 'string',
1417
+ 'required' => true,
1418
+ ],
1419
+ 'profileId' => [
1420
+ 'location' => 'path',
1421
+ 'type' => 'string',
1422
+ 'required' => true,
1423
+ ],
1424
+ ],
1425
+ ],'update' => [
1426
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1427
+ 'httpMethod' => 'PUT',
1428
+ 'parameters' => [
1429
+ 'accountId' => [
1430
+ 'location' => 'path',
1431
+ 'type' => 'string',
1432
+ 'required' => true,
1433
+ ],
1434
+ 'webPropertyId' => [
1435
+ 'location' => 'path',
1436
+ 'type' => 'string',
1437
+ 'required' => true,
1438
+ ],
1439
+ 'profileId' => [
1440
+ 'location' => 'path',
1441
+ 'type' => 'string',
1442
+ 'required' => true,
1443
+ ],
1444
+ ],
1445
+ ],
1446
+ ]
1447
+ ]
1448
+ );
1449
+ $this->management_remarketingAudience = new Analytics\Resource\ManagementRemarketingAudience(
1450
+ $this,
1451
+ $this->serviceName,
1452
+ 'remarketingAudience',
1453
+ [
1454
+ 'methods' => [
1455
+ 'delete' => [
1456
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}',
1457
+ 'httpMethod' => 'DELETE',
1458
+ 'parameters' => [
1459
+ 'accountId' => [
1460
+ 'location' => 'path',
1461
+ 'type' => 'string',
1462
+ 'required' => true,
1463
+ ],
1464
+ 'webPropertyId' => [
1465
+ 'location' => 'path',
1466
+ 'type' => 'string',
1467
+ 'required' => true,
1468
+ ],
1469
+ 'remarketingAudienceId' => [
1470
+ 'location' => 'path',
1471
+ 'type' => 'string',
1472
+ 'required' => true,
1473
+ ],
1474
+ ],
1475
+ ],'get' => [
1476
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}',
1477
+ 'httpMethod' => 'GET',
1478
+ 'parameters' => [
1479
+ 'accountId' => [
1480
+ 'location' => 'path',
1481
+ 'type' => 'string',
1482
+ 'required' => true,
1483
+ ],
1484
+ 'webPropertyId' => [
1485
+ 'location' => 'path',
1486
+ 'type' => 'string',
1487
+ 'required' => true,
1488
+ ],
1489
+ 'remarketingAudienceId' => [
1490
+ 'location' => 'path',
1491
+ 'type' => 'string',
1492
+ 'required' => true,
1493
+ ],
1494
+ ],
1495
+ ],'insert' => [
1496
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences',
1497
+ 'httpMethod' => 'POST',
1498
+ 'parameters' => [
1499
+ 'accountId' => [
1500
+ 'location' => 'path',
1501
+ 'type' => 'string',
1502
+ 'required' => true,
1503
+ ],
1504
+ 'webPropertyId' => [
1505
+ 'location' => 'path',
1506
+ 'type' => 'string',
1507
+ 'required' => true,
1508
+ ],
1509
+ ],
1510
+ ],'list' => [
1511
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences',
1512
+ 'httpMethod' => 'GET',
1513
+ 'parameters' => [
1514
+ 'accountId' => [
1515
+ 'location' => 'path',
1516
+ 'type' => 'string',
1517
+ 'required' => true,
1518
+ ],
1519
+ 'webPropertyId' => [
1520
+ 'location' => 'path',
1521
+ 'type' => 'string',
1522
+ 'required' => true,
1523
+ ],
1524
+ 'max-results' => [
1525
+ 'location' => 'query',
1526
+ 'type' => 'integer',
1527
+ ],
1528
+ 'start-index' => [
1529
+ 'location' => 'query',
1530
+ 'type' => 'integer',
1531
+ ],
1532
+ 'type' => [
1533
+ 'location' => 'query',
1534
+ 'type' => 'string',
1535
+ ],
1536
+ ],
1537
+ ],'patch' => [
1538
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}',
1539
+ 'httpMethod' => 'PATCH',
1540
+ 'parameters' => [
1541
+ 'accountId' => [
1542
+ 'location' => 'path',
1543
+ 'type' => 'string',
1544
+ 'required' => true,
1545
+ ],
1546
+ 'webPropertyId' => [
1547
+ 'location' => 'path',
1548
+ 'type' => 'string',
1549
+ 'required' => true,
1550
+ ],
1551
+ 'remarketingAudienceId' => [
1552
+ 'location' => 'path',
1553
+ 'type' => 'string',
1554
+ 'required' => true,
1555
+ ],
1556
+ ],
1557
+ ],'update' => [
1558
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/remarketingAudiences/{remarketingAudienceId}',
1559
+ 'httpMethod' => 'PUT',
1560
+ 'parameters' => [
1561
+ 'accountId' => [
1562
+ 'location' => 'path',
1563
+ 'type' => 'string',
1564
+ 'required' => true,
1565
+ ],
1566
+ 'webPropertyId' => [
1567
+ 'location' => 'path',
1568
+ 'type' => 'string',
1569
+ 'required' => true,
1570
+ ],
1571
+ 'remarketingAudienceId' => [
1572
+ 'location' => 'path',
1573
+ 'type' => 'string',
1574
+ 'required' => true,
1575
+ ],
1576
+ ],
1577
+ ],
1578
+ ]
1579
+ ]
1580
+ );
1581
+ $this->management_segments = new Analytics\Resource\ManagementSegments(
1582
+ $this,
1583
+ $this->serviceName,
1584
+ 'segments',
1585
+ [
1586
+ 'methods' => [
1587
+ 'list' => [
1588
+ 'path' => 'management/segments',
1589
+ 'httpMethod' => 'GET',
1590
+ 'parameters' => [
1591
+ 'max-results' => [
1592
+ 'location' => 'query',
1593
+ 'type' => 'integer',
1594
+ ],
1595
+ 'start-index' => [
1596
+ 'location' => 'query',
1597
+ 'type' => 'integer',
1598
+ ],
1599
+ ],
1600
+ ],
1601
+ ]
1602
+ ]
1603
+ );
1604
+ $this->management_unsampledReports = new Analytics\Resource\ManagementUnsampledReports(
1605
+ $this,
1606
+ $this->serviceName,
1607
+ 'unsampledReports',
1608
+ [
1609
+ 'methods' => [
1610
+ 'delete' => [
1611
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}',
1612
+ 'httpMethod' => 'DELETE',
1613
+ 'parameters' => [
1614
+ 'accountId' => [
1615
+ 'location' => 'path',
1616
+ 'type' => 'string',
1617
+ 'required' => true,
1618
+ ],
1619
+ 'webPropertyId' => [
1620
+ 'location' => 'path',
1621
+ 'type' => 'string',
1622
+ 'required' => true,
1623
+ ],
1624
+ 'profileId' => [
1625
+ 'location' => 'path',
1626
+ 'type' => 'string',
1627
+ 'required' => true,
1628
+ ],
1629
+ 'unsampledReportId' => [
1630
+ 'location' => 'path',
1631
+ 'type' => 'string',
1632
+ 'required' => true,
1633
+ ],
1634
+ ],
1635
+ ],'get' => [
1636
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}',
1637
+ 'httpMethod' => 'GET',
1638
+ 'parameters' => [
1639
+ 'accountId' => [
1640
+ 'location' => 'path',
1641
+ 'type' => 'string',
1642
+ 'required' => true,
1643
+ ],
1644
+ 'webPropertyId' => [
1645
+ 'location' => 'path',
1646
+ 'type' => 'string',
1647
+ 'required' => true,
1648
+ ],
1649
+ 'profileId' => [
1650
+ 'location' => 'path',
1651
+ 'type' => 'string',
1652
+ 'required' => true,
1653
+ ],
1654
+ 'unsampledReportId' => [
1655
+ 'location' => 'path',
1656
+ 'type' => 'string',
1657
+ 'required' => true,
1658
+ ],
1659
+ ],
1660
+ ],'insert' => [
1661
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1662
+ 'httpMethod' => 'POST',
1663
+ 'parameters' => [
1664
+ 'accountId' => [
1665
+ 'location' => 'path',
1666
+ 'type' => 'string',
1667
+ 'required' => true,
1668
+ ],
1669
+ 'webPropertyId' => [
1670
+ 'location' => 'path',
1671
+ 'type' => 'string',
1672
+ 'required' => true,
1673
+ ],
1674
+ 'profileId' => [
1675
+ 'location' => 'path',
1676
+ 'type' => 'string',
1677
+ 'required' => true,
1678
+ ],
1679
+ ],
1680
+ ],'list' => [
1681
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1682
+ 'httpMethod' => 'GET',
1683
+ 'parameters' => [
1684
+ 'accountId' => [
1685
+ 'location' => 'path',
1686
+ 'type' => 'string',
1687
+ 'required' => true,
1688
+ ],
1689
+ 'webPropertyId' => [
1690
+ 'location' => 'path',
1691
+ 'type' => 'string',
1692
+ 'required' => true,
1693
+ ],
1694
+ 'profileId' => [
1695
+ 'location' => 'path',
1696
+ 'type' => 'string',
1697
+ 'required' => true,
1698
+ ],
1699
+ 'max-results' => [
1700
+ 'location' => 'query',
1701
+ 'type' => 'integer',
1702
+ ],
1703
+ 'start-index' => [
1704
+ 'location' => 'query',
1705
+ 'type' => 'integer',
1706
+ ],
1707
+ ],
1708
+ ],
1709
+ ]
1710
+ ]
1711
+ );
1712
+ $this->management_uploads = new Analytics\Resource\ManagementUploads(
1713
+ $this,
1714
+ $this->serviceName,
1715
+ 'uploads',
1716
+ [
1717
+ 'methods' => [
1718
+ 'deleteUploadData' => [
1719
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData',
1720
+ 'httpMethod' => 'POST',
1721
+ 'parameters' => [
1722
+ 'accountId' => [
1723
+ 'location' => 'path',
1724
+ 'type' => 'string',
1725
+ 'required' => true,
1726
+ ],
1727
+ 'webPropertyId' => [
1728
+ 'location' => 'path',
1729
+ 'type' => 'string',
1730
+ 'required' => true,
1731
+ ],
1732
+ 'customDataSourceId' => [
1733
+ 'location' => 'path',
1734
+ 'type' => 'string',
1735
+ 'required' => true,
1736
+ ],
1737
+ ],
1738
+ ],'get' => [
1739
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}',
1740
+ 'httpMethod' => 'GET',
1741
+ 'parameters' => [
1742
+ 'accountId' => [
1743
+ 'location' => 'path',
1744
+ 'type' => 'string',
1745
+ 'required' => true,
1746
+ ],
1747
+ 'webPropertyId' => [
1748
+ 'location' => 'path',
1749
+ 'type' => 'string',
1750
+ 'required' => true,
1751
+ ],
1752
+ 'customDataSourceId' => [
1753
+ 'location' => 'path',
1754
+ 'type' => 'string',
1755
+ 'required' => true,
1756
+ ],
1757
+ 'uploadId' => [
1758
+ 'location' => 'path',
1759
+ 'type' => 'string',
1760
+ 'required' => true,
1761
+ ],
1762
+ ],
1763
+ ],'list' => [
1764
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1765
+ 'httpMethod' => 'GET',
1766
+ 'parameters' => [
1767
+ 'accountId' => [
1768
+ 'location' => 'path',
1769
+ 'type' => 'string',
1770
+ 'required' => true,
1771
+ ],
1772
+ 'webPropertyId' => [
1773
+ 'location' => 'path',
1774
+ 'type' => 'string',
1775
+ 'required' => true,
1776
+ ],
1777
+ 'customDataSourceId' => [
1778
+ 'location' => 'path',
1779
+ 'type' => 'string',
1780
+ 'required' => true,
1781
+ ],
1782
+ 'max-results' => [
1783
+ 'location' => 'query',
1784
+ 'type' => 'integer',
1785
+ ],
1786
+ 'start-index' => [
1787
+ 'location' => 'query',
1788
+ 'type' => 'integer',
1789
+ ],
1790
+ ],
1791
+ ],'uploadData' => [
1792
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1793
+ 'httpMethod' => 'POST',
1794
+ 'parameters' => [
1795
+ 'accountId' => [
1796
+ 'location' => 'path',
1797
+ 'type' => 'string',
1798
+ 'required' => true,
1799
+ ],
1800
+ 'webPropertyId' => [
1801
+ 'location' => 'path',
1802
+ 'type' => 'string',
1803
+ 'required' => true,
1804
+ ],
1805
+ 'customDataSourceId' => [
1806
+ 'location' => 'path',
1807
+ 'type' => 'string',
1808
+ 'required' => true,
1809
+ ],
1810
+ ],
1811
+ ],
1812
+ ]
1813
+ ]
1814
+ );
1815
+ $this->management_webPropertyAdWordsLinks = new Analytics\Resource\ManagementWebPropertyAdWordsLinks(
1816
+ $this,
1817
+ $this->serviceName,
1818
+ 'webPropertyAdWordsLinks',
1819
+ [
1820
+ 'methods' => [
1821
+ 'delete' => [
1822
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1823
+ 'httpMethod' => 'DELETE',
1824
+ 'parameters' => [
1825
+ 'accountId' => [
1826
+ 'location' => 'path',
1827
+ 'type' => 'string',
1828
+ 'required' => true,
1829
+ ],
1830
+ 'webPropertyId' => [
1831
+ 'location' => 'path',
1832
+ 'type' => 'string',
1833
+ 'required' => true,
1834
+ ],
1835
+ 'webPropertyAdWordsLinkId' => [
1836
+ 'location' => 'path',
1837
+ 'type' => 'string',
1838
+ 'required' => true,
1839
+ ],
1840
+ ],
1841
+ ],'get' => [
1842
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1843
+ 'httpMethod' => 'GET',
1844
+ 'parameters' => [
1845
+ 'accountId' => [
1846
+ 'location' => 'path',
1847
+ 'type' => 'string',
1848
+ 'required' => true,
1849
+ ],
1850
+ 'webPropertyId' => [
1851
+ 'location' => 'path',
1852
+ 'type' => 'string',
1853
+ 'required' => true,
1854
+ ],
1855
+ 'webPropertyAdWordsLinkId' => [
1856
+ 'location' => 'path',
1857
+ 'type' => 'string',
1858
+ 'required' => true,
1859
+ ],
1860
+ ],
1861
+ ],'insert' => [
1862
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1863
+ 'httpMethod' => 'POST',
1864
+ 'parameters' => [
1865
+ 'accountId' => [
1866
+ 'location' => 'path',
1867
+ 'type' => 'string',
1868
+ 'required' => true,
1869
+ ],
1870
+ 'webPropertyId' => [
1871
+ 'location' => 'path',
1872
+ 'type' => 'string',
1873
+ 'required' => true,
1874
+ ],
1875
+ ],
1876
+ ],'list' => [
1877
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1878
+ 'httpMethod' => 'GET',
1879
+ 'parameters' => [
1880
+ 'accountId' => [
1881
+ 'location' => 'path',
1882
+ 'type' => 'string',
1883
+ 'required' => true,
1884
+ ],
1885
+ 'webPropertyId' => [
1886
+ 'location' => 'path',
1887
+ 'type' => 'string',
1888
+ 'required' => true,
1889
+ ],
1890
+ 'max-results' => [
1891
+ 'location' => 'query',
1892
+ 'type' => 'integer',
1893
+ ],
1894
+ 'start-index' => [
1895
+ 'location' => 'query',
1896
+ 'type' => 'integer',
1897
+ ],
1898
+ ],
1899
+ ],'patch' => [
1900
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1901
+ 'httpMethod' => 'PATCH',
1902
+ 'parameters' => [
1903
+ 'accountId' => [
1904
+ 'location' => 'path',
1905
+ 'type' => 'string',
1906
+ 'required' => true,
1907
+ ],
1908
+ 'webPropertyId' => [
1909
+ 'location' => 'path',
1910
+ 'type' => 'string',
1911
+ 'required' => true,
1912
+ ],
1913
+ 'webPropertyAdWordsLinkId' => [
1914
+ 'location' => 'path',
1915
+ 'type' => 'string',
1916
+ 'required' => true,
1917
+ ],
1918
+ ],
1919
+ ],'update' => [
1920
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1921
+ 'httpMethod' => 'PUT',
1922
+ 'parameters' => [
1923
+ 'accountId' => [
1924
+ 'location' => 'path',
1925
+ 'type' => 'string',
1926
+ 'required' => true,
1927
+ ],
1928
+ 'webPropertyId' => [
1929
+ 'location' => 'path',
1930
+ 'type' => 'string',
1931
+ 'required' => true,
1932
+ ],
1933
+ 'webPropertyAdWordsLinkId' => [
1934
+ 'location' => 'path',
1935
+ 'type' => 'string',
1936
+ 'required' => true,
1937
+ ],
1938
+ ],
1939
+ ],
1940
+ ]
1941
+ ]
1942
+ );
1943
+ $this->management_webproperties = new Analytics\Resource\ManagementWebproperties(
1944
+ $this,
1945
+ $this->serviceName,
1946
+ 'webproperties',
1947
+ [
1948
+ 'methods' => [
1949
+ 'get' => [
1950
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1951
+ 'httpMethod' => 'GET',
1952
+ 'parameters' => [
1953
+ 'accountId' => [
1954
+ 'location' => 'path',
1955
+ 'type' => 'string',
1956
+ 'required' => true,
1957
+ ],
1958
+ 'webPropertyId' => [
1959
+ 'location' => 'path',
1960
+ 'type' => 'string',
1961
+ 'required' => true,
1962
+ ],
1963
+ ],
1964
+ ],'insert' => [
1965
+ 'path' => 'management/accounts/{accountId}/webproperties',
1966
+ 'httpMethod' => 'POST',
1967
+ 'parameters' => [
1968
+ 'accountId' => [
1969
+ 'location' => 'path',
1970
+ 'type' => 'string',
1971
+ 'required' => true,
1972
+ ],
1973
+ ],
1974
+ ],'list' => [
1975
+ 'path' => 'management/accounts/{accountId}/webproperties',
1976
+ 'httpMethod' => 'GET',
1977
+ 'parameters' => [
1978
+ 'accountId' => [
1979
+ 'location' => 'path',
1980
+ 'type' => 'string',
1981
+ 'required' => true,
1982
+ ],
1983
+ 'max-results' => [
1984
+ 'location' => 'query',
1985
+ 'type' => 'integer',
1986
+ ],
1987
+ 'start-index' => [
1988
+ 'location' => 'query',
1989
+ 'type' => 'integer',
1990
+ ],
1991
+ ],
1992
+ ],'patch' => [
1993
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1994
+ 'httpMethod' => 'PATCH',
1995
+ 'parameters' => [
1996
+ 'accountId' => [
1997
+ 'location' => 'path',
1998
+ 'type' => 'string',
1999
+ 'required' => true,
2000
+ ],
2001
+ 'webPropertyId' => [
2002
+ 'location' => 'path',
2003
+ 'type' => 'string',
2004
+ 'required' => true,
2005
+ ],
2006
+ ],
2007
+ ],'update' => [
2008
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
2009
+ 'httpMethod' => 'PUT',
2010
+ 'parameters' => [
2011
+ 'accountId' => [
2012
+ 'location' => 'path',
2013
+ 'type' => 'string',
2014
+ 'required' => true,
2015
+ ],
2016
+ 'webPropertyId' => [
2017
+ 'location' => 'path',
2018
+ 'type' => 'string',
2019
+ 'required' => true,
2020
+ ],
2021
+ ],
2022
+ ],
2023
+ ]
2024
+ ]
2025
+ );
2026
+ $this->management_webpropertyUserLinks = new Analytics\Resource\ManagementWebpropertyUserLinks(
2027
+ $this,
2028
+ $this->serviceName,
2029
+ 'webpropertyUserLinks',
2030
+ [
2031
+ 'methods' => [
2032
+ 'delete' => [
2033
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
2034
+ 'httpMethod' => 'DELETE',
2035
+ 'parameters' => [
2036
+ 'accountId' => [
2037
+ 'location' => 'path',
2038
+ 'type' => 'string',
2039
+ 'required' => true,
2040
+ ],
2041
+ 'webPropertyId' => [
2042
+ 'location' => 'path',
2043
+ 'type' => 'string',
2044
+ 'required' => true,
2045
+ ],
2046
+ 'linkId' => [
2047
+ 'location' => 'path',
2048
+ 'type' => 'string',
2049
+ 'required' => true,
2050
+ ],
2051
+ ],
2052
+ ],'insert' => [
2053
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
2054
+ 'httpMethod' => 'POST',
2055
+ 'parameters' => [
2056
+ 'accountId' => [
2057
+ 'location' => 'path',
2058
+ 'type' => 'string',
2059
+ 'required' => true,
2060
+ ],
2061
+ 'webPropertyId' => [
2062
+ 'location' => 'path',
2063
+ 'type' => 'string',
2064
+ 'required' => true,
2065
+ ],
2066
+ ],
2067
+ ],'list' => [
2068
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
2069
+ 'httpMethod' => 'GET',
2070
+ 'parameters' => [
2071
+ 'accountId' => [
2072
+ 'location' => 'path',
2073
+ 'type' => 'string',
2074
+ 'required' => true,
2075
+ ],
2076
+ 'webPropertyId' => [
2077
+ 'location' => 'path',
2078
+ 'type' => 'string',
2079
+ 'required' => true,
2080
+ ],
2081
+ 'max-results' => [
2082
+ 'location' => 'query',
2083
+ 'type' => 'integer',
2084
+ ],
2085
+ 'start-index' => [
2086
+ 'location' => 'query',
2087
+ 'type' => 'integer',
2088
+ ],
2089
+ ],
2090
+ ],'update' => [
2091
+ 'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
2092
+ 'httpMethod' => 'PUT',
2093
+ 'parameters' => [
2094
+ 'accountId' => [
2095
+ 'location' => 'path',
2096
+ 'type' => 'string',
2097
+ 'required' => true,
2098
+ ],
2099
+ 'webPropertyId' => [
2100
+ 'location' => 'path',
2101
+ 'type' => 'string',
2102
+ 'required' => true,
2103
+ ],
2104
+ 'linkId' => [
2105
+ 'location' => 'path',
2106
+ 'type' => 'string',
2107
+ 'required' => true,
2108
+ ],
2109
+ ],
2110
+ ],
2111
+ ]
2112
+ ]
2113
+ );
2114
+ $this->metadata_columns = new Analytics\Resource\MetadataColumns(
2115
+ $this,
2116
+ $this->serviceName,
2117
+ 'columns',
2118
+ [
2119
+ 'methods' => [
2120
+ 'list' => [
2121
+ 'path' => 'metadata/{reportType}/columns',
2122
+ 'httpMethod' => 'GET',
2123
+ 'parameters' => [
2124
+ 'reportType' => [
2125
+ 'location' => 'path',
2126
+ 'type' => 'string',
2127
+ 'required' => true,
2128
+ ],
2129
+ ],
2130
+ ],
2131
+ ]
2132
+ ]
2133
+ );
2134
+ $this->provisioning = new Analytics\Resource\Provisioning(
2135
+ $this,
2136
+ $this->serviceName,
2137
+ 'provisioning',
2138
+ [
2139
+ 'methods' => [
2140
+ 'createAccountTicket' => [
2141
+ 'path' => 'provisioning/createAccountTicket',
2142
+ 'httpMethod' => 'POST',
2143
+ 'parameters' => [],
2144
+ ],'createAccountTree' => [
2145
+ 'path' => 'provisioning/createAccountTree',
2146
+ 'httpMethod' => 'POST',
2147
+ 'parameters' => [],
2148
+ ],
2149
+ ]
2150
+ ]
2151
+ );
2152
+ $this->userDeletion_userDeletionRequest = new Analytics\Resource\UserDeletionUserDeletionRequest(
2153
+ $this,
2154
+ $this->serviceName,
2155
+ 'userDeletionRequest',
2156
+ [
2157
+ 'methods' => [
2158
+ 'upsert' => [
2159
+ 'path' => 'userDeletion/userDeletionRequests:upsert',
2160
+ 'httpMethod' => 'POST',
2161
+ 'parameters' => [],
2162
+ ],
2163
+ ]
2164
+ ]
2165
+ );
2166
+ }
2167
+ }
2168
+
2169
+ // Adding a class alias for backwards compatibility with the previous class name.
2170
+ class_alias(Analytics::class, 'WPMSGoogle_Service_Analytics');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Account.php ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Account extends \WPMSGoogle\Model
21
+ {
22
+ protected $childLinkType = AccountChildLink::class;
23
+ protected $childLinkDataType = '';
24
+ public $created;
25
+ public $id;
26
+ public $kind;
27
+ public $name;
28
+ protected $permissionsType = AccountPermissions::class;
29
+ protected $permissionsDataType = '';
30
+ public $selfLink;
31
+ public $starred;
32
+ public $updated;
33
+
34
+ /**
35
+ * @param AccountChildLink
36
+ */
37
+ public function setChildLink(AccountChildLink $childLink)
38
+ {
39
+ $this->childLink = $childLink;
40
+ }
41
+ /**
42
+ * @return AccountChildLink
43
+ */
44
+ public function getChildLink()
45
+ {
46
+ return $this->childLink;
47
+ }
48
+ public function setCreated($created)
49
+ {
50
+ $this->created = $created;
51
+ }
52
+ public function getCreated()
53
+ {
54
+ return $this->created;
55
+ }
56
+ public function setId($id)
57
+ {
58
+ $this->id = $id;
59
+ }
60
+ public function getId()
61
+ {
62
+ return $this->id;
63
+ }
64
+ public function setKind($kind)
65
+ {
66
+ $this->kind = $kind;
67
+ }
68
+ public function getKind()
69
+ {
70
+ return $this->kind;
71
+ }
72
+ public function setName($name)
73
+ {
74
+ $this->name = $name;
75
+ }
76
+ public function getName()
77
+ {
78
+ return $this->name;
79
+ }
80
+ /**
81
+ * @param AccountPermissions
82
+ */
83
+ public function setPermissions(AccountPermissions $permissions)
84
+ {
85
+ $this->permissions = $permissions;
86
+ }
87
+ /**
88
+ * @return AccountPermissions
89
+ */
90
+ public function getPermissions()
91
+ {
92
+ return $this->permissions;
93
+ }
94
+ public function setSelfLink($selfLink)
95
+ {
96
+ $this->selfLink = $selfLink;
97
+ }
98
+ public function getSelfLink()
99
+ {
100
+ return $this->selfLink;
101
+ }
102
+ public function setStarred($starred)
103
+ {
104
+ $this->starred = $starred;
105
+ }
106
+ public function getStarred()
107
+ {
108
+ return $this->starred;
109
+ }
110
+ public function setUpdated($updated)
111
+ {
112
+ $this->updated = $updated;
113
+ }
114
+ public function getUpdated()
115
+ {
116
+ return $this->updated;
117
+ }
118
+ }
119
+
120
+ // Adding a class alias for backwards compatibility with the previous class name.
121
+ class_alias(Account::class, 'WPMSGoogle_Service_Analytics_Account');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountChildLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountChildLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(AccountChildLink::class, 'WPMSGoogle_Service_Analytics_AccountChildLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountPermissions.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountPermissions extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'effective';
23
+ public $effective;
24
+
25
+ public function setEffective($effective)
26
+ {
27
+ $this->effective = $effective;
28
+ }
29
+ public function getEffective()
30
+ {
31
+ return $this->effective;
32
+ }
33
+ }
34
+
35
+ // Adding a class alias for backwards compatibility with the previous class name.
36
+ class_alias(AccountPermissions::class, 'WPMSGoogle_Service_Analytics_AccountPermissions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountRef.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountRef extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $id;
24
+ public $kind;
25
+ public $name;
26
+
27
+ public function setHref($href)
28
+ {
29
+ $this->href = $href;
30
+ }
31
+ public function getHref()
32
+ {
33
+ return $this->href;
34
+ }
35
+ public function setId($id)
36
+ {
37
+ $this->id = $id;
38
+ }
39
+ public function getId()
40
+ {
41
+ return $this->id;
42
+ }
43
+ public function setKind($kind)
44
+ {
45
+ $this->kind = $kind;
46
+ }
47
+ public function getKind()
48
+ {
49
+ return $this->kind;
50
+ }
51
+ public function setName($name)
52
+ {
53
+ $this->name = $name;
54
+ }
55
+ public function getName()
56
+ {
57
+ return $this->name;
58
+ }
59
+ }
60
+
61
+ // Adding a class alias for backwards compatibility with the previous class name.
62
+ class_alias(AccountRef::class, 'WPMSGoogle_Service_Analytics_AccountRef');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountSummaries.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountSummaries extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = AccountSummary::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param AccountSummary[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return AccountSummary[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(AccountSummaries::class, 'WPMSGoogle_Service_Analytics_AccountSummaries');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountSummary.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountSummary extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'webProperties';
23
+ public $id;
24
+ public $kind;
25
+ public $name;
26
+ public $starred;
27
+ protected $webPropertiesType = WebPropertySummary::class;
28
+ protected $webPropertiesDataType = 'array';
29
+
30
+ public function setId($id)
31
+ {
32
+ $this->id = $id;
33
+ }
34
+ public function getId()
35
+ {
36
+ return $this->id;
37
+ }
38
+ public function setKind($kind)
39
+ {
40
+ $this->kind = $kind;
41
+ }
42
+ public function getKind()
43
+ {
44
+ return $this->kind;
45
+ }
46
+ public function setName($name)
47
+ {
48
+ $this->name = $name;
49
+ }
50
+ public function getName()
51
+ {
52
+ return $this->name;
53
+ }
54
+ public function setStarred($starred)
55
+ {
56
+ $this->starred = $starred;
57
+ }
58
+ public function getStarred()
59
+ {
60
+ return $this->starred;
61
+ }
62
+ /**
63
+ * @param WebPropertySummary[]
64
+ */
65
+ public function setWebProperties($webProperties)
66
+ {
67
+ $this->webProperties = $webProperties;
68
+ }
69
+ /**
70
+ * @return WebPropertySummary[]
71
+ */
72
+ public function getWebProperties()
73
+ {
74
+ return $this->webProperties;
75
+ }
76
+ }
77
+
78
+ // Adding a class alias for backwards compatibility with the previous class name.
79
+ class_alias(AccountSummary::class, 'WPMSGoogle_Service_Analytics_AccountSummary');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountTicket.php ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountTicket extends \WPMSGoogle\Model
21
+ {
22
+ protected $accountType = Account::class;
23
+ protected $accountDataType = '';
24
+ public $id;
25
+ public $kind;
26
+ protected $profileType = Profile::class;
27
+ protected $profileDataType = '';
28
+ public $redirectUri;
29
+ protected $webpropertyType = Webproperty::class;
30
+ protected $webpropertyDataType = '';
31
+
32
+ /**
33
+ * @param Account
34
+ */
35
+ public function setAccount(Account $account)
36
+ {
37
+ $this->account = $account;
38
+ }
39
+ /**
40
+ * @return Account
41
+ */
42
+ public function getAccount()
43
+ {
44
+ return $this->account;
45
+ }
46
+ public function setId($id)
47
+ {
48
+ $this->id = $id;
49
+ }
50
+ public function getId()
51
+ {
52
+ return $this->id;
53
+ }
54
+ public function setKind($kind)
55
+ {
56
+ $this->kind = $kind;
57
+ }
58
+ public function getKind()
59
+ {
60
+ return $this->kind;
61
+ }
62
+ /**
63
+ * @param Profile
64
+ */
65
+ public function setProfile(Profile $profile)
66
+ {
67
+ $this->profile = $profile;
68
+ }
69
+ /**
70
+ * @return Profile
71
+ */
72
+ public function getProfile()
73
+ {
74
+ return $this->profile;
75
+ }
76
+ public function setRedirectUri($redirectUri)
77
+ {
78
+ $this->redirectUri = $redirectUri;
79
+ }
80
+ public function getRedirectUri()
81
+ {
82
+ return $this->redirectUri;
83
+ }
84
+ /**
85
+ * @param Webproperty
86
+ */
87
+ public function setWebproperty(Webproperty $webproperty)
88
+ {
89
+ $this->webproperty = $webproperty;
90
+ }
91
+ /**
92
+ * @return Webproperty
93
+ */
94
+ public function getWebproperty()
95
+ {
96
+ return $this->webproperty;
97
+ }
98
+ }
99
+
100
+ // Adding a class alias for backwards compatibility with the previous class name.
101
+ class_alias(AccountTicket::class, 'WPMSGoogle_Service_Analytics_AccountTicket');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountTreeRequest.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountTreeRequest extends \WPMSGoogle\Model
21
+ {
22
+ public $accountName;
23
+ public $kind;
24
+ public $profileName;
25
+ public $timezone;
26
+ public $webpropertyName;
27
+ public $websiteUrl;
28
+
29
+ public function setAccountName($accountName)
30
+ {
31
+ $this->accountName = $accountName;
32
+ }
33
+ public function getAccountName()
34
+ {
35
+ return $this->accountName;
36
+ }
37
+ public function setKind($kind)
38
+ {
39
+ $this->kind = $kind;
40
+ }
41
+ public function getKind()
42
+ {
43
+ return $this->kind;
44
+ }
45
+ public function setProfileName($profileName)
46
+ {
47
+ $this->profileName = $profileName;
48
+ }
49
+ public function getProfileName()
50
+ {
51
+ return $this->profileName;
52
+ }
53
+ public function setTimezone($timezone)
54
+ {
55
+ $this->timezone = $timezone;
56
+ }
57
+ public function getTimezone()
58
+ {
59
+ return $this->timezone;
60
+ }
61
+ public function setWebpropertyName($webpropertyName)
62
+ {
63
+ $this->webpropertyName = $webpropertyName;
64
+ }
65
+ public function getWebpropertyName()
66
+ {
67
+ return $this->webpropertyName;
68
+ }
69
+ public function setWebsiteUrl($websiteUrl)
70
+ {
71
+ $this->websiteUrl = $websiteUrl;
72
+ }
73
+ public function getWebsiteUrl()
74
+ {
75
+ return $this->websiteUrl;
76
+ }
77
+ }
78
+
79
+ // Adding a class alias for backwards compatibility with the previous class name.
80
+ class_alias(AccountTreeRequest::class, 'WPMSGoogle_Service_Analytics_AccountTreeRequest');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AccountTreeResponse.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AccountTreeResponse extends \WPMSGoogle\Model
21
+ {
22
+ protected $accountType = Account::class;
23
+ protected $accountDataType = '';
24
+ public $kind;
25
+ protected $profileType = Profile::class;
26
+ protected $profileDataType = '';
27
+ protected $webpropertyType = Webproperty::class;
28
+ protected $webpropertyDataType = '';
29
+
30
+ /**
31
+ * @param Account
32
+ */
33
+ public function setAccount(Account $account)
34
+ {
35
+ $this->account = $account;
36
+ }
37
+ /**
38
+ * @return Account
39
+ */
40
+ public function getAccount()
41
+ {
42
+ return $this->account;
43
+ }
44
+ public function setKind($kind)
45
+ {
46
+ $this->kind = $kind;
47
+ }
48
+ public function getKind()
49
+ {
50
+ return $this->kind;
51
+ }
52
+ /**
53
+ * @param Profile
54
+ */
55
+ public function setProfile(Profile $profile)
56
+ {
57
+ $this->profile = $profile;
58
+ }
59
+ /**
60
+ * @return Profile
61
+ */
62
+ public function getProfile()
63
+ {
64
+ return $this->profile;
65
+ }
66
+ /**
67
+ * @param Webproperty
68
+ */
69
+ public function setWebproperty(Webproperty $webproperty)
70
+ {
71
+ $this->webproperty = $webproperty;
72
+ }
73
+ /**
74
+ * @return Webproperty
75
+ */
76
+ public function getWebproperty()
77
+ {
78
+ return $this->webproperty;
79
+ }
80
+ }
81
+
82
+ // Adding a class alias for backwards compatibility with the previous class name.
83
+ class_alias(AccountTreeResponse::class, 'WPMSGoogle_Service_Analytics_AccountTreeResponse');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Accounts.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Accounts extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = Account::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param Account[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return Account[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(Accounts::class, 'WPMSGoogle_Service_Analytics_Accounts');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AdWordsAccount.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AdWordsAccount extends \WPMSGoogle\Model
21
+ {
22
+ public $autoTaggingEnabled;
23
+ public $customerId;
24
+ public $kind;
25
+
26
+ public function setAutoTaggingEnabled($autoTaggingEnabled)
27
+ {
28
+ $this->autoTaggingEnabled = $autoTaggingEnabled;
29
+ }
30
+ public function getAutoTaggingEnabled()
31
+ {
32
+ return $this->autoTaggingEnabled;
33
+ }
34
+ public function setCustomerId($customerId)
35
+ {
36
+ $this->customerId = $customerId;
37
+ }
38
+ public function getCustomerId()
39
+ {
40
+ return $this->customerId;
41
+ }
42
+ public function setKind($kind)
43
+ {
44
+ $this->kind = $kind;
45
+ }
46
+ public function getKind()
47
+ {
48
+ return $this->kind;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(AdWordsAccount::class, 'WPMSGoogle_Service_Analytics_AdWordsAccount');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/AnalyticsDataimportDeleteUploadDataRequest.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class AnalyticsDataimportDeleteUploadDataRequest extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'customDataImportUids';
23
+ public $customDataImportUids;
24
+
25
+ public function setCustomDataImportUids($customDataImportUids)
26
+ {
27
+ $this->customDataImportUids = $customDataImportUids;
28
+ }
29
+ public function getCustomDataImportUids()
30
+ {
31
+ return $this->customDataImportUids;
32
+ }
33
+ }
34
+
35
+ // Adding a class alias for backwards compatibility with the previous class name.
36
+ class_alias(AnalyticsDataimportDeleteUploadDataRequest::class, 'WPMSGoogle_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Column.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Column extends \WPMSGoogle\Model
21
+ {
22
+ public $attributes;
23
+ public $id;
24
+ public $kind;
25
+
26
+ public function setAttributes($attributes)
27
+ {
28
+ $this->attributes = $attributes;
29
+ }
30
+ public function getAttributes()
31
+ {
32
+ return $this->attributes;
33
+ }
34
+ public function setId($id)
35
+ {
36
+ $this->id = $id;
37
+ }
38
+ public function getId()
39
+ {
40
+ return $this->id;
41
+ }
42
+ public function setKind($kind)
43
+ {
44
+ $this->kind = $kind;
45
+ }
46
+ public function getKind()
47
+ {
48
+ return $this->kind;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(Column::class, 'WPMSGoogle_Service_Analytics_Column');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Columns.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Columns extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ public $attributeNames;
24
+ public $etag;
25
+ protected $itemsType = Column::class;
26
+ protected $itemsDataType = 'array';
27
+ public $kind;
28
+ public $totalResults;
29
+
30
+ public function setAttributeNames($attributeNames)
31
+ {
32
+ $this->attributeNames = $attributeNames;
33
+ }
34
+ public function getAttributeNames()
35
+ {
36
+ return $this->attributeNames;
37
+ }
38
+ public function setEtag($etag)
39
+ {
40
+ $this->etag = $etag;
41
+ }
42
+ public function getEtag()
43
+ {
44
+ return $this->etag;
45
+ }
46
+ /**
47
+ * @param Column[]
48
+ */
49
+ public function setItems($items)
50
+ {
51
+ $this->items = $items;
52
+ }
53
+ /**
54
+ * @return Column[]
55
+ */
56
+ public function getItems()
57
+ {
58
+ return $this->items;
59
+ }
60
+ public function setKind($kind)
61
+ {
62
+ $this->kind = $kind;
63
+ }
64
+ public function getKind()
65
+ {
66
+ return $this->kind;
67
+ }
68
+ public function setTotalResults($totalResults)
69
+ {
70
+ $this->totalResults = $totalResults;
71
+ }
72
+ public function getTotalResults()
73
+ {
74
+ return $this->totalResults;
75
+ }
76
+ }
77
+
78
+ // Adding a class alias for backwards compatibility with the previous class name.
79
+ class_alias(Columns::class, 'WPMSGoogle_Service_Analytics_Columns');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSource.php ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDataSource extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'schema';
23
+ public $accountId;
24
+ protected $childLinkType = CustomDataSourceChildLink::class;
25
+ protected $childLinkDataType = '';
26
+ public $created;
27
+ public $description;
28
+ public $id;
29
+ public $importBehavior;
30
+ public $kind;
31
+ public $name;
32
+ protected $parentLinkType = CustomDataSourceParentLink::class;
33
+ protected $parentLinkDataType = '';
34
+ public $profilesLinked;
35
+ public $schema;
36
+ public $selfLink;
37
+ public $type;
38
+ public $updated;
39
+ public $uploadType;
40
+ public $webPropertyId;
41
+
42
+ public function setAccountId($accountId)
43
+ {
44
+ $this->accountId = $accountId;
45
+ }
46
+ public function getAccountId()
47
+ {
48
+ return $this->accountId;
49
+ }
50
+ /**
51
+ * @param CustomDataSourceChildLink
52
+ */
53
+ public function setChildLink(CustomDataSourceChildLink $childLink)
54
+ {
55
+ $this->childLink = $childLink;
56
+ }
57
+ /**
58
+ * @return CustomDataSourceChildLink
59
+ */
60
+ public function getChildLink()
61
+ {
62
+ return $this->childLink;
63
+ }
64
+ public function setCreated($created)
65
+ {
66
+ $this->created = $created;
67
+ }
68
+ public function getCreated()
69
+ {
70
+ return $this->created;
71
+ }
72
+ public function setDescription($description)
73
+ {
74
+ $this->description = $description;
75
+ }
76
+ public function getDescription()
77
+ {
78
+ return $this->description;
79
+ }
80
+ public function setId($id)
81
+ {
82
+ $this->id = $id;
83
+ }
84
+ public function getId()
85
+ {
86
+ return $this->id;
87
+ }
88
+ public function setImportBehavior($importBehavior)
89
+ {
90
+ $this->importBehavior = $importBehavior;
91
+ }
92
+ public function getImportBehavior()
93
+ {
94
+ return $this->importBehavior;
95
+ }
96
+ public function setKind($kind)
97
+ {
98
+ $this->kind = $kind;
99
+ }
100
+ public function getKind()
101
+ {
102
+ return $this->kind;
103
+ }
104
+ public function setName($name)
105
+ {
106
+ $this->name = $name;
107
+ }
108
+ public function getName()
109
+ {
110
+ return $this->name;
111
+ }
112
+ /**
113
+ * @param CustomDataSourceParentLink
114
+ */
115
+ public function setParentLink(CustomDataSourceParentLink $parentLink)
116
+ {
117
+ $this->parentLink = $parentLink;
118
+ }
119
+ /**
120
+ * @return CustomDataSourceParentLink
121
+ */
122
+ public function getParentLink()
123
+ {
124
+ return $this->parentLink;
125
+ }
126
+ public function setProfilesLinked($profilesLinked)
127
+ {
128
+ $this->profilesLinked = $profilesLinked;
129
+ }
130
+ public function getProfilesLinked()
131
+ {
132
+ return $this->profilesLinked;
133
+ }
134
+ public function setSchema($schema)
135
+ {
136
+ $this->schema = $schema;
137
+ }
138
+ public function getSchema()
139
+ {
140
+ return $this->schema;
141
+ }
142
+ public function setSelfLink($selfLink)
143
+ {
144
+ $this->selfLink = $selfLink;
145
+ }
146
+ public function getSelfLink()
147
+ {
148
+ return $this->selfLink;
149
+ }
150
+ public function setType($type)
151
+ {
152
+ $this->type = $type;
153
+ }
154
+ public function getType()
155
+ {
156
+ return $this->type;
157
+ }
158
+ public function setUpdated($updated)
159
+ {
160
+ $this->updated = $updated;
161
+ }
162
+ public function getUpdated()
163
+ {
164
+ return $this->updated;
165
+ }
166
+ public function setUploadType($uploadType)
167
+ {
168
+ $this->uploadType = $uploadType;
169
+ }
170
+ public function getUploadType()
171
+ {
172
+ return $this->uploadType;
173
+ }
174
+ public function setWebPropertyId($webPropertyId)
175
+ {
176
+ $this->webPropertyId = $webPropertyId;
177
+ }
178
+ public function getWebPropertyId()
179
+ {
180
+ return $this->webPropertyId;
181
+ }
182
+ }
183
+
184
+ // Adding a class alias for backwards compatibility with the previous class name.
185
+ class_alias(CustomDataSource::class, 'WPMSGoogle_Service_Analytics_CustomDataSource');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSourceChildLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDataSourceChildLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(CustomDataSourceChildLink::class, 'WPMSGoogle_Service_Analytics_CustomDataSourceChildLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSourceParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDataSourceParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(CustomDataSourceParentLink::class, 'WPMSGoogle_Service_Analytics_CustomDataSourceParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDataSources.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDataSources extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = CustomDataSource::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param CustomDataSource[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return CustomDataSource[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(CustomDataSources::class, 'WPMSGoogle_Service_Analytics_CustomDataSources');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDimension.php ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDimension extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $active;
24
+ public $created;
25
+ public $id;
26
+ public $index;
27
+ public $kind;
28
+ public $name;
29
+ protected $parentLinkType = CustomDimensionParentLink::class;
30
+ protected $parentLinkDataType = '';
31
+ public $scope;
32
+ public $selfLink;
33
+ public $updated;
34
+ public $webPropertyId;
35
+
36
+ public function setAccountId($accountId)
37
+ {
38
+ $this->accountId = $accountId;
39
+ }
40
+ public function getAccountId()
41
+ {
42
+ return $this->accountId;
43
+ }
44
+ public function setActive($active)
45
+ {
46
+ $this->active = $active;
47
+ }
48
+ public function getActive()
49
+ {
50
+ return $this->active;
51
+ }
52
+ public function setCreated($created)
53
+ {
54
+ $this->created = $created;
55
+ }
56
+ public function getCreated()
57
+ {
58
+ return $this->created;
59
+ }
60
+ public function setId($id)
61
+ {
62
+ $this->id = $id;
63
+ }
64
+ public function getId()
65
+ {
66
+ return $this->id;
67
+ }
68
+ public function setIndex($index)
69
+ {
70
+ $this->index = $index;
71
+ }
72
+ public function getIndex()
73
+ {
74
+ return $this->index;
75
+ }
76
+ public function setKind($kind)
77
+ {
78
+ $this->kind = $kind;
79
+ }
80
+ public function getKind()
81
+ {
82
+ return $this->kind;
83
+ }
84
+ public function setName($name)
85
+ {
86
+ $this->name = $name;
87
+ }
88
+ public function getName()
89
+ {
90
+ return $this->name;
91
+ }
92
+ /**
93
+ * @param CustomDimensionParentLink
94
+ */
95
+ public function setParentLink(CustomDimensionParentLink $parentLink)
96
+ {
97
+ $this->parentLink = $parentLink;
98
+ }
99
+ /**
100
+ * @return CustomDimensionParentLink
101
+ */
102
+ public function getParentLink()
103
+ {
104
+ return $this->parentLink;
105
+ }
106
+ public function setScope($scope)
107
+ {
108
+ $this->scope = $scope;
109
+ }
110
+ public function getScope()
111
+ {
112
+ return $this->scope;
113
+ }
114
+ public function setSelfLink($selfLink)
115
+ {
116
+ $this->selfLink = $selfLink;
117
+ }
118
+ public function getSelfLink()
119
+ {
120
+ return $this->selfLink;
121
+ }
122
+ public function setUpdated($updated)
123
+ {
124
+ $this->updated = $updated;
125
+ }
126
+ public function getUpdated()
127
+ {
128
+ return $this->updated;
129
+ }
130
+ public function setWebPropertyId($webPropertyId)
131
+ {
132
+ $this->webPropertyId = $webPropertyId;
133
+ }
134
+ public function getWebPropertyId()
135
+ {
136
+ return $this->webPropertyId;
137
+ }
138
+ }
139
+
140
+ // Adding a class alias for backwards compatibility with the previous class name.
141
+ class_alias(CustomDimension::class, 'WPMSGoogle_Service_Analytics_CustomDimension');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDimensionParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDimensionParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(CustomDimensionParentLink::class, 'WPMSGoogle_Service_Analytics_CustomDimensionParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomDimensions.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomDimensions extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = CustomDimension::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param CustomDimension[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return CustomDimension[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(CustomDimensions::class, 'WPMSGoogle_Service_Analytics_CustomDimensions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomMetric.php ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomMetric extends \WPMSGoogle\Model
21
+ {
22
+ protected $internal_gapi_mappings = [
23
+ "maxValue" => "max_value",
24
+ "minValue" => "min_value",
25
+ ];
26
+ public $accountId;
27
+ public $active;
28
+ public $created;
29
+ public $id;
30
+ public $index;
31
+ public $kind;
32
+ public $maxValue;
33
+ public $minValue;
34
+ public $name;
35
+ protected $parentLinkType = CustomMetricParentLink::class;
36
+ protected $parentLinkDataType = '';
37
+ public $scope;
38
+ public $selfLink;
39
+ public $type;
40
+ public $updated;
41
+ public $webPropertyId;
42
+
43
+ public function setAccountId($accountId)
44
+ {
45
+ $this->accountId = $accountId;
46
+ }
47
+ public function getAccountId()
48
+ {
49
+ return $this->accountId;
50
+ }
51
+ public function setActive($active)
52
+ {
53
+ $this->active = $active;
54
+ }
55
+ public function getActive()
56
+ {
57
+ return $this->active;
58
+ }
59
+ public function setCreated($created)
60
+ {
61
+ $this->created = $created;
62
+ }
63
+ public function getCreated()
64
+ {
65
+ return $this->created;
66
+ }
67
+ public function setId($id)
68
+ {
69
+ $this->id = $id;
70
+ }
71
+ public function getId()
72
+ {
73
+ return $this->id;
74
+ }
75
+ public function setIndex($index)
76
+ {
77
+ $this->index = $index;
78
+ }
79
+ public function getIndex()
80
+ {
81
+ return $this->index;
82
+ }
83
+ public function setKind($kind)
84
+ {
85
+ $this->kind = $kind;
86
+ }
87
+ public function getKind()
88
+ {
89
+ return $this->kind;
90
+ }
91
+ public function setMaxValue($maxValue)
92
+ {
93
+ $this->maxValue = $maxValue;
94
+ }
95
+ public function getMaxValue()
96
+ {
97
+ return $this->maxValue;
98
+ }
99
+ public function setMinValue($minValue)
100
+ {
101
+ $this->minValue = $minValue;
102
+ }
103
+ public function getMinValue()
104
+ {
105
+ return $this->minValue;
106
+ }
107
+ public function setName($name)
108
+ {
109
+ $this->name = $name;
110
+ }
111
+ public function getName()
112
+ {
113
+ return $this->name;
114
+ }
115
+ /**
116
+ * @param CustomMetricParentLink
117
+ */
118
+ public function setParentLink(CustomMetricParentLink $parentLink)
119
+ {
120
+ $this->parentLink = $parentLink;
121
+ }
122
+ /**
123
+ * @return CustomMetricParentLink
124
+ */
125
+ public function getParentLink()
126
+ {
127
+ return $this->parentLink;
128
+ }
129
+ public function setScope($scope)
130
+ {
131
+ $this->scope = $scope;
132
+ }
133
+ public function getScope()
134
+ {
135
+ return $this->scope;
136
+ }
137
+ public function setSelfLink($selfLink)
138
+ {
139
+ $this->selfLink = $selfLink;
140
+ }
141
+ public function getSelfLink()
142
+ {
143
+ return $this->selfLink;
144
+ }
145
+ public function setType($type)
146
+ {
147
+ $this->type = $type;
148
+ }
149
+ public function getType()
150
+ {
151
+ return $this->type;
152
+ }
153
+ public function setUpdated($updated)
154
+ {
155
+ $this->updated = $updated;
156
+ }
157
+ public function getUpdated()
158
+ {
159
+ return $this->updated;
160
+ }
161
+ public function setWebPropertyId($webPropertyId)
162
+ {
163
+ $this->webPropertyId = $webPropertyId;
164
+ }
165
+ public function getWebPropertyId()
166
+ {
167
+ return $this->webPropertyId;
168
+ }
169
+ }
170
+
171
+ // Adding a class alias for backwards compatibility with the previous class name.
172
+ class_alias(CustomMetric::class, 'WPMSGoogle_Service_Analytics_CustomMetric');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomMetricParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomMetricParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(CustomMetricParentLink::class, 'WPMSGoogle_Service_Analytics_CustomMetricParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/CustomMetrics.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class CustomMetrics extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = CustomMetric::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param CustomMetric[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return CustomMetric[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(CustomMetrics::class, 'WPMSGoogle_Service_Analytics_CustomMetrics');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityAdWordsLink.php ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityAdWordsLink extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'profileIds';
23
+ protected $adWordsAccountsType = AdWordsAccount::class;
24
+ protected $adWordsAccountsDataType = 'array';
25
+ protected $entityType = EntityAdWordsLinkEntity::class;
26
+ protected $entityDataType = '';
27
+ public $id;
28
+ public $kind;
29
+ public $name;
30
+ public $profileIds;
31
+ public $selfLink;
32
+
33
+ /**
34
+ * @param AdWordsAccount[]
35
+ */
36
+ public function setAdWordsAccounts($adWordsAccounts)
37
+ {
38
+ $this->adWordsAccounts = $adWordsAccounts;
39
+ }
40
+ /**
41
+ * @return AdWordsAccount[]
42
+ */
43
+ public function getAdWordsAccounts()
44
+ {
45
+ return $this->adWordsAccounts;
46
+ }
47
+ /**
48
+ * @param EntityAdWordsLinkEntity
49
+ */
50
+ public function setEntity(EntityAdWordsLinkEntity $entity)
51
+ {
52
+ $this->entity = $entity;
53
+ }
54
+ /**
55
+ * @return EntityAdWordsLinkEntity
56
+ */
57
+ public function getEntity()
58
+ {
59
+ return $this->entity;
60
+ }
61
+ public function setId($id)
62
+ {
63
+ $this->id = $id;
64
+ }
65
+ public function getId()
66
+ {
67
+ return $this->id;
68
+ }
69
+ public function setKind($kind)
70
+ {
71
+ $this->kind = $kind;
72
+ }
73
+ public function getKind()
74
+ {
75
+ return $this->kind;
76
+ }
77
+ public function setName($name)
78
+ {
79
+ $this->name = $name;
80
+ }
81
+ public function getName()
82
+ {
83
+ return $this->name;
84
+ }
85
+ public function setProfileIds($profileIds)
86
+ {
87
+ $this->profileIds = $profileIds;
88
+ }
89
+ public function getProfileIds()
90
+ {
91
+ return $this->profileIds;
92
+ }
93
+ public function setSelfLink($selfLink)
94
+ {
95
+ $this->selfLink = $selfLink;
96
+ }
97
+ public function getSelfLink()
98
+ {
99
+ return $this->selfLink;
100
+ }
101
+ }
102
+
103
+ // Adding a class alias for backwards compatibility with the previous class name.
104
+ class_alias(EntityAdWordsLink::class, 'WPMSGoogle_Service_Analytics_EntityAdWordsLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityAdWordsLinkEntity.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityAdWordsLinkEntity extends \WPMSGoogle\Model
21
+ {
22
+ protected $webPropertyRefType = WebPropertyRef::class;
23
+ protected $webPropertyRefDataType = '';
24
+
25
+ /**
26
+ * @param WebPropertyRef
27
+ */
28
+ public function setWebPropertyRef(WebPropertyRef $webPropertyRef)
29
+ {
30
+ $this->webPropertyRef = $webPropertyRef;
31
+ }
32
+ /**
33
+ * @return WebPropertyRef
34
+ */
35
+ public function getWebPropertyRef()
36
+ {
37
+ return $this->webPropertyRef;
38
+ }
39
+ }
40
+
41
+ // Adding a class alias for backwards compatibility with the previous class name.
42
+ class_alias(EntityAdWordsLinkEntity::class, 'WPMSGoogle_Service_Analytics_EntityAdWordsLinkEntity');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityAdWordsLinks.php ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityAdWordsLinks extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = EntityAdWordsLink::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+
32
+ /**
33
+ * @param EntityAdWordsLink[]
34
+ */
35
+ public function setItems($items)
36
+ {
37
+ $this->items = $items;
38
+ }
39
+ /**
40
+ * @return EntityAdWordsLink[]
41
+ */
42
+ public function getItems()
43
+ {
44
+ return $this->items;
45
+ }
46
+ public function setItemsPerPage($itemsPerPage)
47
+ {
48
+ $this->itemsPerPage = $itemsPerPage;
49
+ }
50
+ public function getItemsPerPage()
51
+ {
52
+ return $this->itemsPerPage;
53
+ }
54
+ public function setKind($kind)
55
+ {
56
+ $this->kind = $kind;
57
+ }
58
+ public function getKind()
59
+ {
60
+ return $this->kind;
61
+ }
62
+ public function setNextLink($nextLink)
63
+ {
64
+ $this->nextLink = $nextLink;
65
+ }
66
+ public function getNextLink()
67
+ {
68
+ return $this->nextLink;
69
+ }
70
+ public function setPreviousLink($previousLink)
71
+ {
72
+ $this->previousLink = $previousLink;
73
+ }
74
+ public function getPreviousLink()
75
+ {
76
+ return $this->previousLink;
77
+ }
78
+ public function setStartIndex($startIndex)
79
+ {
80
+ $this->startIndex = $startIndex;
81
+ }
82
+ public function getStartIndex()
83
+ {
84
+ return $this->startIndex;
85
+ }
86
+ public function setTotalResults($totalResults)
87
+ {
88
+ $this->totalResults = $totalResults;
89
+ }
90
+ public function getTotalResults()
91
+ {
92
+ return $this->totalResults;
93
+ }
94
+ }
95
+
96
+ // Adding a class alias for backwards compatibility with the previous class name.
97
+ class_alias(EntityAdWordsLinks::class, 'WPMSGoogle_Service_Analytics_EntityAdWordsLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLink.php ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityUserLink extends \WPMSGoogle\Model
21
+ {
22
+ protected $entityType = EntityUserLinkEntity::class;
23
+ protected $entityDataType = '';
24
+ public $id;
25
+ public $kind;
26
+ protected $permissionsType = EntityUserLinkPermissions::class;
27
+ protected $permissionsDataType = '';
28
+ public $selfLink;
29
+ protected $userRefType = UserRef::class;
30
+ protected $userRefDataType = '';
31
+
32
+ /**
33
+ * @param EntityUserLinkEntity
34
+ */
35
+ public function setEntity(EntityUserLinkEntity $entity)
36
+ {
37
+ $this->entity = $entity;
38
+ }
39
+ /**
40
+ * @return EntityUserLinkEntity
41
+ */
42
+ public function getEntity()
43
+ {
44
+ return $this->entity;
45
+ }
46
+ public function setId($id)
47
+ {
48
+ $this->id = $id;
49
+ }
50
+ public function getId()
51
+ {
52
+ return $this->id;
53
+ }
54
+ public function setKind($kind)
55
+ {
56
+ $this->kind = $kind;
57
+ }
58
+ public function getKind()
59
+ {
60
+ return $this->kind;
61
+ }
62
+ /**
63
+ * @param EntityUserLinkPermissions
64
+ */
65
+ public function setPermissions(EntityUserLinkPermissions $permissions)
66
+ {
67
+ $this->permissions = $permissions;
68
+ }
69
+ /**
70
+ * @return EntityUserLinkPermissions
71
+ */
72
+ public function getPermissions()
73
+ {
74
+ return $this->permissions;
75
+ }
76
+ public function setSelfLink($selfLink)
77
+ {
78
+ $this->selfLink = $selfLink;
79
+ }
80
+ public function getSelfLink()
81
+ {
82
+ return $this->selfLink;
83
+ }
84
+ /**
85
+ * @param UserRef
86
+ */
87
+ public function setUserRef(UserRef $userRef)
88
+ {
89
+ $this->userRef = $userRef;
90
+ }
91
+ /**
92
+ * @return UserRef
93
+ */
94
+ public function getUserRef()
95
+ {
96
+ return $this->userRef;
97
+ }
98
+ }
99
+
100
+ // Adding a class alias for backwards compatibility with the previous class name.
101
+ class_alias(EntityUserLink::class, 'WPMSGoogle_Service_Analytics_EntityUserLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLinkEntity.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityUserLinkEntity extends \WPMSGoogle\Model
21
+ {
22
+ protected $accountRefType = AccountRef::class;
23
+ protected $accountRefDataType = '';
24
+ protected $profileRefType = ProfileRef::class;
25
+ protected $profileRefDataType = '';
26
+ protected $webPropertyRefType = WebPropertyRef::class;
27
+ protected $webPropertyRefDataType = '';
28
+
29
+ /**
30
+ * @param AccountRef
31
+ */
32
+ public function setAccountRef(AccountRef $accountRef)
33
+ {
34
+ $this->accountRef = $accountRef;
35
+ }
36
+ /**
37
+ * @return AccountRef
38
+ */
39
+ public function getAccountRef()
40
+ {
41
+ return $this->accountRef;
42
+ }
43
+ /**
44
+ * @param ProfileRef
45
+ */
46
+ public function setProfileRef(ProfileRef $profileRef)
47
+ {
48
+ $this->profileRef = $profileRef;
49
+ }
50
+ /**
51
+ * @return ProfileRef
52
+ */
53
+ public function getProfileRef()
54
+ {
55
+ return $this->profileRef;
56
+ }
57
+ /**
58
+ * @param WebPropertyRef
59
+ */
60
+ public function setWebPropertyRef(WebPropertyRef $webPropertyRef)
61
+ {
62
+ $this->webPropertyRef = $webPropertyRef;
63
+ }
64
+ /**
65
+ * @return WebPropertyRef
66
+ */
67
+ public function getWebPropertyRef()
68
+ {
69
+ return $this->webPropertyRef;
70
+ }
71
+ }
72
+
73
+ // Adding a class alias for backwards compatibility with the previous class name.
74
+ class_alias(EntityUserLinkEntity::class, 'WPMSGoogle_Service_Analytics_EntityUserLinkEntity');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLinkPermissions.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityUserLinkPermissions extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'local';
23
+ public $effective;
24
+ public $local;
25
+
26
+ public function setEffective($effective)
27
+ {
28
+ $this->effective = $effective;
29
+ }
30
+ public function getEffective()
31
+ {
32
+ return $this->effective;
33
+ }
34
+ public function setLocal($local)
35
+ {
36
+ $this->local = $local;
37
+ }
38
+ public function getLocal()
39
+ {
40
+ return $this->local;
41
+ }
42
+ }
43
+
44
+ // Adding a class alias for backwards compatibility with the previous class name.
45
+ class_alias(EntityUserLinkPermissions::class, 'WPMSGoogle_Service_Analytics_EntityUserLinkPermissions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/EntityUserLinks.php ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class EntityUserLinks extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = EntityUserLink::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+
32
+ /**
33
+ * @param EntityUserLink[]
34
+ */
35
+ public function setItems($items)
36
+ {
37
+ $this->items = $items;
38
+ }
39
+ /**
40
+ * @return EntityUserLink[]
41
+ */
42
+ public function getItems()
43
+ {
44
+ return $this->items;
45
+ }
46
+ public function setItemsPerPage($itemsPerPage)
47
+ {
48
+ $this->itemsPerPage = $itemsPerPage;
49
+ }
50
+ public function getItemsPerPage()
51
+ {
52
+ return $this->itemsPerPage;
53
+ }
54
+ public function setKind($kind)
55
+ {
56
+ $this->kind = $kind;
57
+ }
58
+ public function getKind()
59
+ {
60
+ return $this->kind;
61
+ }
62
+ public function setNextLink($nextLink)
63
+ {
64
+ $this->nextLink = $nextLink;
65
+ }
66
+ public function getNextLink()
67
+ {
68
+ return $this->nextLink;
69
+ }
70
+ public function setPreviousLink($previousLink)
71
+ {
72
+ $this->previousLink = $previousLink;
73
+ }
74
+ public function getPreviousLink()
75
+ {
76
+ return $this->previousLink;
77
+ }
78
+ public function setStartIndex($startIndex)
79
+ {
80
+ $this->startIndex = $startIndex;
81
+ }
82
+ public function getStartIndex()
83
+ {
84
+ return $this->startIndex;
85
+ }
86
+ public function setTotalResults($totalResults)
87
+ {
88
+ $this->totalResults = $totalResults;
89
+ }
90
+ public function getTotalResults()
91
+ {
92
+ return $this->totalResults;
93
+ }
94
+ }
95
+
96
+ // Adding a class alias for backwards compatibility with the previous class name.
97
+ class_alias(EntityUserLinks::class, 'WPMSGoogle_Service_Analytics_EntityUserLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Experiment.php ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Experiment extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'variations';
23
+ public $accountId;
24
+ public $created;
25
+ public $description;
26
+ public $editableInGaUi;
27
+ public $endTime;
28
+ public $equalWeighting;
29
+ public $id;
30
+ public $internalWebPropertyId;
31
+ public $kind;
32
+ public $minimumExperimentLengthInDays;
33
+ public $name;
34
+ public $objectiveMetric;
35
+ public $optimizationType;
36
+ protected $parentLinkType = ExperimentParentLink::class;
37
+ protected $parentLinkDataType = '';
38
+ public $profileId;
39
+ public $reasonExperimentEnded;
40
+ public $rewriteVariationUrlsAsOriginal;
41
+ public $selfLink;
42
+ public $servingFramework;
43
+ public $snippet;
44
+ public $startTime;
45
+ public $status;
46
+ public $trafficCoverage;
47
+ public $updated;
48
+ protected $variationsType = ExperimentVariations::class;
49
+ protected $variationsDataType = 'array';
50
+ public $webPropertyId;
51
+ public $winnerConfidenceLevel;
52
+ public $winnerFound;
53
+
54
+ public function setAccountId($accountId)
55
+ {
56
+ $this->accountId = $accountId;
57
+ }
58
+ public function getAccountId()
59
+ {
60
+ return $this->accountId;
61
+ }
62
+ public function setCreated($created)
63
+ {
64
+ $this->created = $created;
65
+ }
66
+ public function getCreated()
67
+ {
68
+ return $this->created;
69
+ }
70
+ public function setDescription($description)
71
+ {
72
+ $this->description = $description;
73
+ }
74
+ public function getDescription()
75
+ {
76
+ return $this->description;
77
+ }
78
+ public function setEditableInGaUi($editableInGaUi)
79
+ {
80
+ $this->editableInGaUi = $editableInGaUi;
81
+ }
82
+ public function getEditableInGaUi()
83
+ {
84
+ return $this->editableInGaUi;
85
+ }
86
+ public function setEndTime($endTime)
87
+ {
88
+ $this->endTime = $endTime;
89
+ }
90
+ public function getEndTime()
91
+ {
92
+ return $this->endTime;
93
+ }
94
+ public function setEqualWeighting($equalWeighting)
95
+ {
96
+ $this->equalWeighting = $equalWeighting;
97
+ }
98
+ public function getEqualWeighting()
99
+ {
100
+ return $this->equalWeighting;
101
+ }
102
+ public function setId($id)
103
+ {
104
+ $this->id = $id;
105
+ }
106
+ public function getId()
107
+ {
108
+ return $this->id;
109
+ }
110
+ public function setInternalWebPropertyId($internalWebPropertyId)
111
+ {
112
+ $this->internalWebPropertyId = $internalWebPropertyId;
113
+ }
114
+ public function getInternalWebPropertyId()
115
+ {
116
+ return $this->internalWebPropertyId;
117
+ }
118
+ public function setKind($kind)
119
+ {
120
+ $this->kind = $kind;
121
+ }
122
+ public function getKind()
123
+ {
124
+ return $this->kind;
125
+ }
126
+ public function setMinimumExperimentLengthInDays($minimumExperimentLengthInDays)
127
+ {
128
+ $this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays;
129
+ }
130
+ public function getMinimumExperimentLengthInDays()
131
+ {
132
+ return $this->minimumExperimentLengthInDays;
133
+ }
134
+ public function setName($name)
135
+ {
136
+ $this->name = $name;
137
+ }
138
+ public function getName()
139
+ {
140
+ return $this->name;
141
+ }
142
+ public function setObjectiveMetric($objectiveMetric)
143
+ {
144
+ $this->objectiveMetric = $objectiveMetric;
145
+ }
146
+ public function getObjectiveMetric()
147
+ {
148
+ return $this->objectiveMetric;
149
+ }
150
+ public function setOptimizationType($optimizationType)
151
+ {
152
+ $this->optimizationType = $optimizationType;
153
+ }
154
+ public function getOptimizationType()
155
+ {
156
+ return $this->optimizationType;
157
+ }
158
+ /**
159
+ * @param ExperimentParentLink
160
+ */
161
+ public function setParentLink(ExperimentParentLink $parentLink)
162
+ {
163
+ $this->parentLink = $parentLink;
164
+ }
165
+ /**
166
+ * @return ExperimentParentLink
167
+ */
168
+ public function getParentLink()
169
+ {
170
+ return $this->parentLink;
171
+ }
172
+ public function setProfileId($profileId)
173
+ {
174
+ $this->profileId = $profileId;
175
+ }
176
+ public function getProfileId()
177
+ {
178
+ return $this->profileId;
179
+ }
180
+ public function setReasonExperimentEnded($reasonExperimentEnded)
181
+ {
182
+ $this->reasonExperimentEnded = $reasonExperimentEnded;
183
+ }
184
+ public function getReasonExperimentEnded()
185
+ {
186
+ return $this->reasonExperimentEnded;
187
+ }
188
+ public function setRewriteVariationUrlsAsOriginal($rewriteVariationUrlsAsOriginal)
189
+ {
190
+ $this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal;
191
+ }
192
+ public function getRewriteVariationUrlsAsOriginal()
193
+ {
194
+ return $this->rewriteVariationUrlsAsOriginal;
195
+ }
196
+ public function setSelfLink($selfLink)
197
+ {
198
+ $this->selfLink = $selfLink;
199
+ }
200
+ public function getSelfLink()
201
+ {
202
+ return $this->selfLink;
203
+ }
204
+ public function setServingFramework($servingFramework)
205
+ {
206
+ $this->servingFramework = $servingFramework;
207
+ }
208
+ public function getServingFramework()
209
+ {
210
+ return $this->servingFramework;
211
+ }
212
+ public function setSnippet($snippet)
213
+ {
214
+ $this->snippet = $snippet;
215
+ }
216
+ public function getSnippet()
217
+ {
218
+ return $this->snippet;
219
+ }
220
+ public function setStartTime($startTime)
221
+ {
222
+ $this->startTime = $startTime;
223
+ }
224
+ public function getStartTime()
225
+ {
226
+ return $this->startTime;
227
+ }
228
+ public function setStatus($status)
229
+ {
230
+ $this->status = $status;
231
+ }
232
+ public function getStatus()
233
+ {
234
+ return $this->status;
235
+ }
236
+ public function setTrafficCoverage($trafficCoverage)
237
+ {
238
+ $this->trafficCoverage = $trafficCoverage;
239
+ }
240
+ public function getTrafficCoverage()
241
+ {
242
+ return $this->trafficCoverage;
243
+ }
244
+ public function setUpdated($updated)
245
+ {
246
+ $this->updated = $updated;
247
+ }
248
+ public function getUpdated()
249
+ {
250
+ return $this->updated;
251
+ }
252
+ /**
253
+ * @param ExperimentVariations[]
254
+ */
255
+ public function setVariations($variations)
256
+ {
257
+ $this->variations = $variations;
258
+ }
259
+ /**
260
+ * @return ExperimentVariations[]
261
+ */
262
+ public function getVariations()
263
+ {
264
+ return $this->variations;
265
+ }
266
+ public function setWebPropertyId($webPropertyId)
267
+ {
268
+ $this->webPropertyId = $webPropertyId;
269
+ }
270
+ public function getWebPropertyId()
271
+ {
272
+ return $this->webPropertyId;
273
+ }
274
+ public function setWinnerConfidenceLevel($winnerConfidenceLevel)
275
+ {
276
+ $this->winnerConfidenceLevel = $winnerConfidenceLevel;
277
+ }
278
+ public function getWinnerConfidenceLevel()
279
+ {
280
+ return $this->winnerConfidenceLevel;
281
+ }
282
+ public function setWinnerFound($winnerFound)
283
+ {
284
+ $this->winnerFound = $winnerFound;
285
+ }
286
+ public function getWinnerFound()
287
+ {
288
+ return $this->winnerFound;
289
+ }
290
+ }
291
+
292
+ // Adding a class alias for backwards compatibility with the previous class name.
293
+ class_alias(Experiment::class, 'WPMSGoogle_Service_Analytics_Experiment');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ExperimentParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ExperimentParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(ExperimentParentLink::class, 'WPMSGoogle_Service_Analytics_ExperimentParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ExperimentVariations.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ExperimentVariations extends \WPMSGoogle\Model
21
+ {
22
+ public $name;
23
+ public $status;
24
+ public $url;
25
+ public $weight;
26
+ public $won;
27
+
28
+ public function setName($name)
29
+ {
30
+ $this->name = $name;
31
+ }
32
+ public function getName()
33
+ {
34
+ return $this->name;
35
+ }
36
+ public function setStatus($status)
37
+ {
38
+ $this->status = $status;
39
+ }
40
+ public function getStatus()
41
+ {
42
+ return $this->status;
43
+ }
44
+ public function setUrl($url)
45
+ {
46
+ $this->url = $url;
47
+ }
48
+ public function getUrl()
49
+ {
50
+ return $this->url;
51
+ }
52
+ public function setWeight($weight)
53
+ {
54
+ $this->weight = $weight;
55
+ }
56
+ public function getWeight()
57
+ {
58
+ return $this->weight;
59
+ }
60
+ public function setWon($won)
61
+ {
62
+ $this->won = $won;
63
+ }
64
+ public function getWon()
65
+ {
66
+ return $this->won;
67
+ }
68
+ }
69
+
70
+ // Adding a class alias for backwards compatibility with the previous class name.
71
+ class_alias(ExperimentVariations::class, 'WPMSGoogle_Service_Analytics_ExperimentVariations');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Experiments.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Experiments extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = Experiment::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param Experiment[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return Experiment[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(Experiments::class, 'WPMSGoogle_Service_Analytics_Experiments');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Filter.php ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Filter extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ protected $advancedDetailsType = FilterAdvancedDetails::class;
24
+ protected $advancedDetailsDataType = '';
25
+ public $created;
26
+ protected $excludeDetailsType = FilterExpression::class;
27
+ protected $excludeDetailsDataType = '';
28
+ public $id;
29
+ protected $includeDetailsType = FilterExpression::class;
30
+ protected $includeDetailsDataType = '';
31
+ public $kind;
32
+ protected $lowercaseDetailsType = FilterLowercaseDetails::class;
33
+ protected $lowercaseDetailsDataType = '';
34
+ public $name;
35
+ protected $parentLinkType = FilterParentLink::class;
36
+ protected $parentLinkDataType = '';
37
+ protected $searchAndReplaceDetailsType = FilterSearchAndReplaceDetails::class;
38
+ protected $searchAndReplaceDetailsDataType = '';
39
+ public $selfLink;
40
+ public $type;
41
+ public $updated;
42
+ protected $uppercaseDetailsType = FilterUppercaseDetails::class;
43
+ protected $uppercaseDetailsDataType = '';
44
+
45
+ public function setAccountId($accountId)
46
+ {
47
+ $this->accountId = $accountId;
48
+ }
49
+ public function getAccountId()
50
+ {
51
+ return $this->accountId;
52
+ }
53
+ /**
54
+ * @param FilterAdvancedDetails
55
+ */
56
+ public function setAdvancedDetails(FilterAdvancedDetails $advancedDetails)
57
+ {
58
+ $this->advancedDetails = $advancedDetails;
59
+ }
60
+ /**
61
+ * @return FilterAdvancedDetails
62
+ */
63
+ public function getAdvancedDetails()
64
+ {
65
+ return $this->advancedDetails;
66
+ }
67
+ public function setCreated($created)
68
+ {
69
+ $this->created = $created;
70
+ }
71
+ public function getCreated()
72
+ {
73
+ return $this->created;
74
+ }
75
+ /**
76
+ * @param FilterExpression
77
+ */
78
+ public function setExcludeDetails(FilterExpression $excludeDetails)
79
+ {
80
+ $this->excludeDetails = $excludeDetails;
81
+ }
82
+ /**
83
+ * @return FilterExpression
84
+ */
85
+ public function getExcludeDetails()
86
+ {
87
+ return $this->excludeDetails;
88
+ }
89
+ public function setId($id)
90
+ {
91
+ $this->id = $id;
92
+ }
93
+ public function getId()
94
+ {
95
+ return $this->id;
96
+ }
97
+ /**
98
+ * @param FilterExpression
99
+ */
100
+ public function setIncludeDetails(FilterExpression $includeDetails)
101
+ {
102
+ $this->includeDetails = $includeDetails;
103
+ }
104
+ /**
105
+ * @return FilterExpression
106
+ */
107
+ public function getIncludeDetails()
108
+ {
109
+ return $this->includeDetails;
110
+ }
111
+ public function setKind($kind)
112
+ {
113
+ $this->kind = $kind;
114
+ }
115
+ public function getKind()
116
+ {
117
+ return $this->kind;
118
+ }
119
+ /**
120
+ * @param FilterLowercaseDetails
121
+ */
122
+ public function setLowercaseDetails(FilterLowercaseDetails $lowercaseDetails)
123
+ {
124
+ $this->lowercaseDetails = $lowercaseDetails;
125
+ }
126
+ /**
127
+ * @return FilterLowercaseDetails
128
+ */
129
+ public function getLowercaseDetails()
130
+ {
131
+ return $this->lowercaseDetails;
132
+ }
133
+ public function setName($name)
134
+ {
135
+ $this->name = $name;
136
+ }
137
+ public function getName()
138
+ {
139
+ return $this->name;
140
+ }
141
+ /**
142
+ * @param FilterParentLink
143
+ */
144
+ public function setParentLink(FilterParentLink $parentLink)
145
+ {
146
+ $this->parentLink = $parentLink;
147
+ }
148
+ /**
149
+ * @return FilterParentLink
150
+ */
151
+ public function getParentLink()
152
+ {
153
+ return $this->parentLink;
154
+ }
155
+ /**
156
+ * @param FilterSearchAndReplaceDetails
157
+ */
158
+ public function setSearchAndReplaceDetails(FilterSearchAndReplaceDetails $searchAndReplaceDetails)
159
+ {
160
+ $this->searchAndReplaceDetails = $searchAndReplaceDetails;
161
+ }
162
+ /**
163
+ * @return FilterSearchAndReplaceDetails
164
+ */
165
+ public function getSearchAndReplaceDetails()
166
+ {
167
+ return $this->searchAndReplaceDetails;
168
+ }
169
+ public function setSelfLink($selfLink)
170
+ {
171
+ $this->selfLink = $selfLink;
172
+ }
173
+ public function getSelfLink()
174
+ {
175
+ return $this->selfLink;
176
+ }
177
+ public function setType($type)
178
+ {
179
+ $this->type = $type;
180
+ }
181
+ public function getType()
182
+ {
183
+ return $this->type;
184
+ }
185
+ public function setUpdated($updated)
186
+ {
187
+ $this->updated = $updated;
188
+ }
189
+ public function getUpdated()
190
+ {
191
+ return $this->updated;
192
+ }
193
+ /**
194
+ * @param FilterUppercaseDetails
195
+ */
196
+ public function setUppercaseDetails(FilterUppercaseDetails $uppercaseDetails)
197
+ {
198
+ $this->uppercaseDetails = $uppercaseDetails;
199
+ }
200
+ /**
201
+ * @return FilterUppercaseDetails
202
+ */
203
+ public function getUppercaseDetails()
204
+ {
205
+ return $this->uppercaseDetails;
206
+ }
207
+ }
208
+
209
+ // Adding a class alias for backwards compatibility with the previous class name.
210
+ class_alias(Filter::class, 'WPMSGoogle_Service_Analytics_Filter');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterAdvancedDetails.php ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterAdvancedDetails extends \WPMSGoogle\Model
21
+ {
22
+ public $caseSensitive;
23
+ public $extractA;
24
+ public $extractB;
25
+ public $fieldA;
26
+ public $fieldAIndex;
27
+ public $fieldARequired;
28
+ public $fieldB;
29
+ public $fieldBIndex;
30
+ public $fieldBRequired;
31
+ public $outputConstructor;
32
+ public $outputToField;
33
+ public $outputToFieldIndex;
34
+ public $overrideOutputField;
35
+
36
+ public function setCaseSensitive($caseSensitive)
37
+ {
38
+ $this->caseSensitive = $caseSensitive;
39
+ }
40
+ public function getCaseSensitive()
41
+ {
42
+ return $this->caseSensitive;
43
+ }
44
+ public function setExtractA($extractA)
45
+ {
46
+ $this->extractA = $extractA;
47
+ }
48
+ public function getExtractA()
49
+ {
50
+ return $this->extractA;
51
+ }
52
+ public function setExtractB($extractB)
53
+ {
54
+ $this->extractB = $extractB;
55
+ }
56
+ public function getExtractB()
57
+ {
58
+ return $this->extractB;
59
+ }
60
+ public function setFieldA($fieldA)
61
+ {
62
+ $this->fieldA = $fieldA;
63
+ }
64
+ public function getFieldA()
65
+ {
66
+ return $this->fieldA;
67
+ }
68
+ public function setFieldAIndex($fieldAIndex)
69
+ {
70
+ $this->fieldAIndex = $fieldAIndex;
71
+ }
72
+ public function getFieldAIndex()
73
+ {
74
+ return $this->fieldAIndex;
75
+ }
76
+ public function setFieldARequired($fieldARequired)
77
+ {
78
+ $this->fieldARequired = $fieldARequired;
79
+ }
80
+ public function getFieldARequired()
81
+ {
82
+ return $this->fieldARequired;
83
+ }
84
+ public function setFieldB($fieldB)
85
+ {
86
+ $this->fieldB = $fieldB;
87
+ }
88
+ public function getFieldB()
89
+ {
90
+ return $this->fieldB;
91
+ }
92
+ public function setFieldBIndex($fieldBIndex)
93
+ {
94
+ $this->fieldBIndex = $fieldBIndex;
95
+ }
96
+ public function getFieldBIndex()
97
+ {
98
+ return $this->fieldBIndex;
99
+ }
100
+ public function setFieldBRequired($fieldBRequired)
101
+ {
102
+ $this->fieldBRequired = $fieldBRequired;
103
+ }
104
+ public function getFieldBRequired()
105
+ {
106
+ return $this->fieldBRequired;
107
+ }
108
+ public function setOutputConstructor($outputConstructor)
109
+ {
110
+ $this->outputConstructor = $outputConstructor;
111
+ }
112
+ public function getOutputConstructor()
113
+ {
114
+ return $this->outputConstructor;
115
+ }
116
+ public function setOutputToField($outputToField)
117
+ {
118
+ $this->outputToField = $outputToField;
119
+ }
120
+ public function getOutputToField()
121
+ {
122
+ return $this->outputToField;
123
+ }
124
+ public function setOutputToFieldIndex($outputToFieldIndex)
125
+ {
126
+ $this->outputToFieldIndex = $outputToFieldIndex;
127
+ }
128
+ public function getOutputToFieldIndex()
129
+ {
130
+ return $this->outputToFieldIndex;
131
+ }
132
+ public function setOverrideOutputField($overrideOutputField)
133
+ {
134
+ $this->overrideOutputField = $overrideOutputField;
135
+ }
136
+ public function getOverrideOutputField()
137
+ {
138
+ return $this->overrideOutputField;
139
+ }
140
+ }
141
+
142
+ // Adding a class alias for backwards compatibility with the previous class name.
143
+ class_alias(FilterAdvancedDetails::class, 'WPMSGoogle_Service_Analytics_FilterAdvancedDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterExpression.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterExpression extends \WPMSGoogle\Model
21
+ {
22
+ public $caseSensitive;
23
+ public $expressionValue;
24
+ public $field;
25
+ public $fieldIndex;
26
+ public $kind;
27
+ public $matchType;
28
+
29
+ public function setCaseSensitive($caseSensitive)
30
+ {
31
+ $this->caseSensitive = $caseSensitive;
32
+ }
33
+ public function getCaseSensitive()
34
+ {
35
+ return $this->caseSensitive;
36
+ }
37
+ public function setExpressionValue($expressionValue)
38
+ {
39
+ $this->expressionValue = $expressionValue;
40
+ }
41
+ public function getExpressionValue()
42
+ {
43
+ return $this->expressionValue;
44
+ }
45
+ public function setField($field)
46
+ {
47
+ $this->field = $field;
48
+ }
49
+ public function getField()
50
+ {
51
+ return $this->field;
52
+ }
53
+ public function setFieldIndex($fieldIndex)
54
+ {
55
+ $this->fieldIndex = $fieldIndex;
56
+ }
57
+ public function getFieldIndex()
58
+ {
59
+ return $this->fieldIndex;
60
+ }
61
+ public function setKind($kind)
62
+ {
63
+ $this->kind = $kind;
64
+ }
65
+ public function getKind()
66
+ {
67
+ return $this->kind;
68
+ }
69
+ public function setMatchType($matchType)
70
+ {
71
+ $this->matchType = $matchType;
72
+ }
73
+ public function getMatchType()
74
+ {
75
+ return $this->matchType;
76
+ }
77
+ }
78
+
79
+ // Adding a class alias for backwards compatibility with the previous class name.
80
+ class_alias(FilterExpression::class, 'WPMSGoogle_Service_Analytics_FilterExpression');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterLowercaseDetails.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterLowercaseDetails extends \WPMSGoogle\Model
21
+ {
22
+ public $field;
23
+ public $fieldIndex;
24
+
25
+ public function setField($field)
26
+ {
27
+ $this->field = $field;
28
+ }
29
+ public function getField()
30
+ {
31
+ return $this->field;
32
+ }
33
+ public function setFieldIndex($fieldIndex)
34
+ {
35
+ $this->fieldIndex = $fieldIndex;
36
+ }
37
+ public function getFieldIndex()
38
+ {
39
+ return $this->fieldIndex;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(FilterLowercaseDetails::class, 'WPMSGoogle_Service_Analytics_FilterLowercaseDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(FilterParentLink::class, 'WPMSGoogle_Service_Analytics_FilterParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterRef.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterRef extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $href;
24
+ public $id;
25
+ public $kind;
26
+ public $name;
27
+
28
+ public function setAccountId($accountId)
29
+ {
30
+ $this->accountId = $accountId;
31
+ }
32
+ public function getAccountId()
33
+ {
34
+ return $this->accountId;
35
+ }
36
+ public function setHref($href)
37
+ {
38
+ $this->href = $href;
39
+ }
40
+ public function getHref()
41
+ {
42
+ return $this->href;
43
+ }
44
+ public function setId($id)
45
+ {
46
+ $this->id = $id;
47
+ }
48
+ public function getId()
49
+ {
50
+ return $this->id;
51
+ }
52
+ public function setKind($kind)
53
+ {
54
+ $this->kind = $kind;
55
+ }
56
+ public function getKind()
57
+ {
58
+ return $this->kind;
59
+ }
60
+ public function setName($name)
61
+ {
62
+ $this->name = $name;
63
+ }
64
+ public function getName()
65
+ {
66
+ return $this->name;
67
+ }
68
+ }
69
+
70
+ // Adding a class alias for backwards compatibility with the previous class name.
71
+ class_alias(FilterRef::class, 'WPMSGoogle_Service_Analytics_FilterRef');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterSearchAndReplaceDetails.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterSearchAndReplaceDetails extends \WPMSGoogle\Model
21
+ {
22
+ public $caseSensitive;
23
+ public $field;
24
+ public $fieldIndex;
25
+ public $replaceString;
26
+ public $searchString;
27
+
28
+ public function setCaseSensitive($caseSensitive)
29
+ {
30
+ $this->caseSensitive = $caseSensitive;
31
+ }
32
+ public function getCaseSensitive()
33
+ {
34
+ return $this->caseSensitive;
35
+ }
36
+ public function setField($field)
37
+ {
38
+ $this->field = $field;
39
+ }
40
+ public function getField()
41
+ {
42
+ return $this->field;
43
+ }
44
+ public function setFieldIndex($fieldIndex)
45
+ {
46
+ $this->fieldIndex = $fieldIndex;
47
+ }
48
+ public function getFieldIndex()
49
+ {
50
+ return $this->fieldIndex;
51
+ }
52
+ public function setReplaceString($replaceString)
53
+ {
54
+ $this->replaceString = $replaceString;
55
+ }
56
+ public function getReplaceString()
57
+ {
58
+ return $this->replaceString;
59
+ }
60
+ public function setSearchString($searchString)
61
+ {
62
+ $this->searchString = $searchString;
63
+ }
64
+ public function getSearchString()
65
+ {
66
+ return $this->searchString;
67
+ }
68
+ }
69
+
70
+ // Adding a class alias for backwards compatibility with the previous class name.
71
+ class_alias(FilterSearchAndReplaceDetails::class, 'WPMSGoogle_Service_Analytics_FilterSearchAndReplaceDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/FilterUppercaseDetails.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class FilterUppercaseDetails extends \WPMSGoogle\Model
21
+ {
22
+ public $field;
23
+ public $fieldIndex;
24
+
25
+ public function setField($field)
26
+ {
27
+ $this->field = $field;
28
+ }
29
+ public function getField()
30
+ {
31
+ return $this->field;
32
+ }
33
+ public function setFieldIndex($fieldIndex)
34
+ {
35
+ $this->fieldIndex = $fieldIndex;
36
+ }
37
+ public function getFieldIndex()
38
+ {
39
+ return $this->fieldIndex;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(FilterUppercaseDetails::class, 'WPMSGoogle_Service_Analytics_FilterUppercaseDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Filters.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Filters extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = Filter::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param Filter[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return Filter[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(Filters::class, 'WPMSGoogle_Service_Analytics_Filters');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaData.php ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaData extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'rows';
23
+ protected $columnHeadersType = GaDataColumnHeaders::class;
24
+ protected $columnHeadersDataType = 'array';
25
+ public $containsSampledData;
26
+ public $dataLastRefreshed;
27
+ protected $dataTableType = GaDataDataTable::class;
28
+ protected $dataTableDataType = '';
29
+ public $id;
30
+ public $itemsPerPage;
31
+ public $kind;
32
+ public $nextLink;
33
+ public $previousLink;
34
+ protected $profileInfoType = GaDataProfileInfo::class;
35
+ protected $profileInfoDataType = '';
36
+ protected $queryType = GaDataQuery::class;
37
+ protected $queryDataType = '';
38
+ public $rows;
39
+ public $sampleSize;
40
+ public $sampleSpace;
41
+ public $selfLink;
42
+ public $totalResults;
43
+ public $totalsForAllResults;
44
+
45
+ /**
46
+ * @param GaDataColumnHeaders[]
47
+ */
48
+ public function setColumnHeaders($columnHeaders)
49
+ {
50
+ $this->columnHeaders = $columnHeaders;
51
+ }
52
+ /**
53
+ * @return GaDataColumnHeaders[]
54
+ */
55
+ public function getColumnHeaders()
56
+ {
57
+ return $this->columnHeaders;
58
+ }
59
+ public function setContainsSampledData($containsSampledData)
60
+ {
61
+ $this->containsSampledData = $containsSampledData;
62
+ }
63
+ public function getContainsSampledData()
64
+ {
65
+ return $this->containsSampledData;
66
+ }
67
+ public function setDataLastRefreshed($dataLastRefreshed)
68
+ {
69
+ $this->dataLastRefreshed = $dataLastRefreshed;
70
+ }
71
+ public function getDataLastRefreshed()
72
+ {
73
+ return $this->dataLastRefreshed;
74
+ }
75
+ /**
76
+ * @param GaDataDataTable
77
+ */
78
+ public function setDataTable(GaDataDataTable $dataTable)
79
+ {
80
+ $this->dataTable = $dataTable;
81
+ }
82
+ /**
83
+ * @return GaDataDataTable
84
+ */
85
+ public function getDataTable()
86
+ {
87
+ return $this->dataTable;
88
+ }
89
+ public function setId($id)
90
+ {
91
+ $this->id = $id;
92
+ }
93
+ public function getId()
94
+ {
95
+ return $this->id;
96
+ }
97
+ public function setItemsPerPage($itemsPerPage)
98
+ {
99
+ $this->itemsPerPage = $itemsPerPage;
100
+ }
101
+ public function getItemsPerPage()
102
+ {
103
+ return $this->itemsPerPage;
104
+ }
105
+ public function setKind($kind)
106
+ {
107
+ $this->kind = $kind;
108
+ }
109
+ public function getKind()
110
+ {
111
+ return $this->kind;
112
+ }
113
+ public function setNextLink($nextLink)
114
+ {
115
+ $this->nextLink = $nextLink;
116
+ }
117
+ public function getNextLink()
118
+ {
119
+ return $this->nextLink;
120
+ }
121
+ public function setPreviousLink($previousLink)
122
+ {
123
+ $this->previousLink = $previousLink;
124
+ }
125
+ public function getPreviousLink()
126
+ {
127
+ return $this->previousLink;
128
+ }
129
+ /**
130
+ * @param GaDataProfileInfo
131
+ */
132
+ public function setProfileInfo(GaDataProfileInfo $profileInfo)
133
+ {
134
+ $this->profileInfo = $profileInfo;
135
+ }
136
+ /**
137
+ * @return GaDataProfileInfo
138
+ */
139
+ public function getProfileInfo()
140
+ {
141
+ return $this->profileInfo;
142
+ }
143
+ /**
144
+ * @param GaDataQuery
145
+ */
146
+ public function setQuery(GaDataQuery $query)
147
+ {
148
+ $this->query = $query;
149
+ }
150
+ /**
151
+ * @return GaDataQuery
152
+ */
153
+ public function getQuery()
154
+ {
155
+ return $this->query;
156
+ }
157
+ public function setRows($rows)
158
+ {
159
+ $this->rows = $rows;
160
+ }
161
+ public function getRows()
162
+ {
163
+ return $this->rows;
164
+ }
165
+ public function setSampleSize($sampleSize)
166
+ {
167
+ $this->sampleSize = $sampleSize;
168
+ }
169
+ public function getSampleSize()
170
+ {
171
+ return $this->sampleSize;
172
+ }
173
+ public function setSampleSpace($sampleSpace)
174
+ {
175
+ $this->sampleSpace = $sampleSpace;
176
+ }
177
+ public function getSampleSpace()
178
+ {
179
+ return $this->sampleSpace;
180
+ }
181
+ public function setSelfLink($selfLink)
182
+ {
183
+ $this->selfLink = $selfLink;
184
+ }
185
+ public function getSelfLink()
186
+ {
187
+ return $this->selfLink;
188
+ }
189
+ public function setTotalResults($totalResults)
190
+ {
191
+ $this->totalResults = $totalResults;
192
+ }
193
+ public function getTotalResults()
194
+ {
195
+ return $this->totalResults;
196
+ }
197
+ public function setTotalsForAllResults($totalsForAllResults)
198
+ {
199
+ $this->totalsForAllResults = $totalsForAllResults;
200
+ }
201
+ public function getTotalsForAllResults()
202
+ {
203
+ return $this->totalsForAllResults;
204
+ }
205
+ }
206
+
207
+ // Adding a class alias for backwards compatibility with the previous class name.
208
+ class_alias(GaData::class, 'WPMSGoogle_Service_Analytics_GaData');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataColumnHeaders.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataColumnHeaders extends \WPMSGoogle\Model
21
+ {
22
+ public $columnType;
23
+ public $dataType;
24
+ public $name;
25
+
26
+ public function setColumnType($columnType)
27
+ {
28
+ $this->columnType = $columnType;
29
+ }
30
+ public function getColumnType()
31
+ {
32
+ return $this->columnType;
33
+ }
34
+ public function setDataType($dataType)
35
+ {
36
+ $this->dataType = $dataType;
37
+ }
38
+ public function getDataType()
39
+ {
40
+ return $this->dataType;
41
+ }
42
+ public function setName($name)
43
+ {
44
+ $this->name = $name;
45
+ }
46
+ public function getName()
47
+ {
48
+ return $this->name;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(GaDataColumnHeaders::class, 'WPMSGoogle_Service_Analytics_GaDataColumnHeaders');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTable.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataDataTable extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'rows';
23
+ protected $colsType = GaDataDataTableCols::class;
24
+ protected $colsDataType = 'array';
25
+ protected $rowsType = GaDataDataTableRows::class;
26
+ protected $rowsDataType = 'array';
27
+
28
+ /**
29
+ * @param GaDataDataTableCols[]
30
+ */
31
+ public function setCols($cols)
32
+ {
33
+ $this->cols = $cols;
34
+ }
35
+ /**
36
+ * @return GaDataDataTableCols[]
37
+ */
38
+ public function getCols()
39
+ {
40
+ return $this->cols;
41
+ }
42
+ /**
43
+ * @param GaDataDataTableRows[]
44
+ */
45
+ public function setRows($rows)
46
+ {
47
+ $this->rows = $rows;
48
+ }
49
+ /**
50
+ * @return GaDataDataTableRows[]
51
+ */
52
+ public function getRows()
53
+ {
54
+ return $this->rows;
55
+ }
56
+ }
57
+
58
+ // Adding a class alias for backwards compatibility with the previous class name.
59
+ class_alias(GaDataDataTable::class, 'WPMSGoogle_Service_Analytics_GaDataDataTable');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTableCols.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataDataTableCols extends \WPMSGoogle\Model
21
+ {
22
+ public $id;
23
+ public $label;
24
+ public $type;
25
+
26
+ public function setId($id)
27
+ {
28
+ $this->id = $id;
29
+ }
30
+ public function getId()
31
+ {
32
+ return $this->id;
33
+ }
34
+ public function setLabel($label)
35
+ {
36
+ $this->label = $label;
37
+ }
38
+ public function getLabel()
39
+ {
40
+ return $this->label;
41
+ }
42
+ public function setType($type)
43
+ {
44
+ $this->type = $type;
45
+ }
46
+ public function getType()
47
+ {
48
+ return $this->type;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(GaDataDataTableCols::class, 'WPMSGoogle_Service_Analytics_GaDataDataTableCols');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTableRows.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataDataTableRows extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'c';
23
+ protected $cType = GaDataDataTableRowsC::class;
24
+ protected $cDataType = 'array';
25
+
26
+ /**
27
+ * @param GaDataDataTableRowsC[]
28
+ */
29
+ public function setC($c)
30
+ {
31
+ $this->c = $c;
32
+ }
33
+ /**
34
+ * @return GaDataDataTableRowsC[]
35
+ */
36
+ public function getC()
37
+ {
38
+ return $this->c;
39
+ }
40
+ }
41
+
42
+ // Adding a class alias for backwards compatibility with the previous class name.
43
+ class_alias(GaDataDataTableRows::class, 'WPMSGoogle_Service_Analytics_GaDataDataTableRows');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataDataTableRowsC.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataDataTableRowsC extends \WPMSGoogle\Model
21
+ {
22
+ public $v;
23
+
24
+ public function setV($v)
25
+ {
26
+ $this->v = $v;
27
+ }
28
+ public function getV()
29
+ {
30
+ return $this->v;
31
+ }
32
+ }
33
+
34
+ // Adding a class alias for backwards compatibility with the previous class name.
35
+ class_alias(GaDataDataTableRowsC::class, 'WPMSGoogle_Service_Analytics_GaDataDataTableRowsC');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataProfileInfo.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataProfileInfo extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $internalWebPropertyId;
24
+ public $profileId;
25
+ public $profileName;
26
+ public $tableId;
27
+ public $webPropertyId;
28
+
29
+ public function setAccountId($accountId)
30
+ {
31
+ $this->accountId = $accountId;
32
+ }
33
+ public function getAccountId()
34
+ {
35
+ return $this->accountId;
36
+ }
37
+ public function setInternalWebPropertyId($internalWebPropertyId)
38
+ {
39
+ $this->internalWebPropertyId = $internalWebPropertyId;
40
+ }
41
+ public function getInternalWebPropertyId()
42
+ {
43
+ return $this->internalWebPropertyId;
44
+ }
45
+ public function setProfileId($profileId)
46
+ {
47
+ $this->profileId = $profileId;
48
+ }
49
+ public function getProfileId()
50
+ {
51
+ return $this->profileId;
52
+ }
53
+ public function setProfileName($profileName)
54
+ {
55
+ $this->profileName = $profileName;
56
+ }
57
+ public function getProfileName()
58
+ {
59
+ return $this->profileName;
60
+ }
61
+ public function setTableId($tableId)
62
+ {
63
+ $this->tableId = $tableId;
64
+ }
65
+ public function getTableId()
66
+ {
67
+ return $this->tableId;
68
+ }
69
+ public function setWebPropertyId($webPropertyId)
70
+ {
71
+ $this->webPropertyId = $webPropertyId;
72
+ }
73
+ public function getWebPropertyId()
74
+ {
75
+ return $this->webPropertyId;
76
+ }
77
+ }
78
+
79
+ // Adding a class alias for backwards compatibility with the previous class name.
80
+ class_alias(GaDataProfileInfo::class, 'WPMSGoogle_Service_Analytics_GaDataProfileInfo');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GaDataQuery.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GaDataQuery extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'sort';
23
+ protected $internal_gapi_mappings = [
24
+ "endDate" => "end-date",
25
+ "maxResults" => "max-results",
26
+ "startDate" => "start-date",
27
+ "startIndex" => "start-index",
28
+ ];
29
+ public $dimensions;
30
+ public $endDate;
31
+ public $filters;
32
+ public $ids;
33
+ public $maxResults;
34
+ public $metrics;
35
+ public $samplingLevel;
36
+ public $segment;
37
+ public $sort;
38
+ public $startDate;
39
+ public $startIndex;
40
+
41
+ public function setDimensions($dimensions)
42
+ {
43
+ $this->dimensions = $dimensions;
44
+ }
45
+ public function getDimensions()
46
+ {
47
+ return $this->dimensions;
48
+ }
49
+ public function setEndDate($endDate)
50
+ {
51
+ $this->endDate = $endDate;
52
+ }
53
+ public function getEndDate()
54
+ {
55
+ return $this->endDate;
56
+ }
57
+ public function setFilters($filters)
58
+ {
59
+ $this->filters = $filters;
60
+ }
61
+ public function getFilters()
62
+ {
63
+ return $this->filters;
64
+ }
65
+ public function setIds($ids)
66
+ {
67
+ $this->ids = $ids;
68
+ }
69
+ public function getIds()
70
+ {
71
+ return $this->ids;
72
+ }
73
+ public function setMaxResults($maxResults)
74
+ {
75
+ $this->maxResults = $maxResults;
76
+ }
77
+ public function getMaxResults()
78
+ {
79
+ return $this->maxResults;
80
+ }
81
+ public function setMetrics($metrics)
82
+ {
83
+ $this->metrics = $metrics;
84
+ }
85
+ public function getMetrics()
86
+ {
87
+ return $this->metrics;
88
+ }
89
+ public function setSamplingLevel($samplingLevel)
90
+ {
91
+ $this->samplingLevel = $samplingLevel;
92
+ }
93
+ public function getSamplingLevel()
94
+ {
95
+ return $this->samplingLevel;
96
+ }
97
+ public function setSegment($segment)
98
+ {
99
+ $this->segment = $segment;
100
+ }
101
+ public function getSegment()
102
+ {
103
+ return $this->segment;
104
+ }
105
+ public function setSort($sort)
106
+ {
107
+ $this->sort = $sort;
108
+ }
109
+ public function getSort()
110
+ {
111
+ return $this->sort;
112
+ }
113
+ public function setStartDate($startDate)
114
+ {
115
+ $this->startDate = $startDate;
116
+ }
117
+ public function getStartDate()
118
+ {
119
+ return $this->startDate;
120
+ }
121
+ public function setStartIndex($startIndex)
122
+ {
123
+ $this->startIndex = $startIndex;
124
+ }
125
+ public function getStartIndex()
126
+ {
127
+ return $this->startIndex;
128
+ }
129
+ }
130
+
131
+ // Adding a class alias for backwards compatibility with the previous class name.
132
+ class_alias(GaDataQuery::class, 'WPMSGoogle_Service_Analytics_GaDataQuery');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Goal.php ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Goal extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $active;
24
+ public $created;
25
+ protected $eventDetailsType = GoalEventDetails::class;
26
+ protected $eventDetailsDataType = '';
27
+ public $id;
28
+ public $internalWebPropertyId;
29
+ public $kind;
30
+ public $name;
31
+ protected $parentLinkType = GoalParentLink::class;
32
+ protected $parentLinkDataType = '';
33
+ public $profileId;
34
+ public $selfLink;
35
+ public $type;
36
+ public $updated;
37
+ protected $urlDestinationDetailsType = GoalUrlDestinationDetails::class;
38
+ protected $urlDestinationDetailsDataType = '';
39
+ public $value;
40
+ protected $visitNumPagesDetailsType = GoalVisitNumPagesDetails::class;
41
+ protected $visitNumPagesDetailsDataType = '';
42
+ protected $visitTimeOnSiteDetailsType = GoalVisitTimeOnSiteDetails::class;
43
+ protected $visitTimeOnSiteDetailsDataType = '';
44
+ public $webPropertyId;
45
+
46
+ public function setAccountId($accountId)
47
+ {
48
+ $this->accountId = $accountId;
49
+ }
50
+ public function getAccountId()
51
+ {
52
+ return $this->accountId;
53
+ }
54
+ public function setActive($active)
55
+ {
56
+ $this->active = $active;
57
+ }
58
+ public function getActive()
59
+ {
60
+ return $this->active;
61
+ }
62
+ public function setCreated($created)
63
+ {
64
+ $this->created = $created;
65
+ }
66
+ public function getCreated()
67
+ {
68
+ return $this->created;
69
+ }
70
+ /**
71
+ * @param GoalEventDetails
72
+ */
73
+ public function setEventDetails(GoalEventDetails $eventDetails)
74
+ {
75
+ $this->eventDetails = $eventDetails;
76
+ }
77
+ /**
78
+ * @return GoalEventDetails
79
+ */
80
+ public function getEventDetails()
81
+ {
82
+ return $this->eventDetails;
83
+ }
84
+ public function setId($id)
85
+ {
86
+ $this->id = $id;
87
+ }
88
+ public function getId()
89
+ {
90
+ return $this->id;
91
+ }
92
+ public function setInternalWebPropertyId($internalWebPropertyId)
93
+ {
94
+ $this->internalWebPropertyId = $internalWebPropertyId;
95
+ }
96
+ public function getInternalWebPropertyId()
97
+ {
98
+ return $this->internalWebPropertyId;
99
+ }
100
+ public function setKind($kind)
101
+ {
102
+ $this->kind = $kind;
103
+ }
104
+ public function getKind()
105
+ {
106
+ return $this->kind;
107
+ }
108
+ public function setName($name)
109
+ {
110
+ $this->name = $name;
111
+ }
112
+ public function getName()
113
+ {
114
+ return $this->name;
115
+ }
116
+ /**
117
+ * @param GoalParentLink
118
+ */
119
+ public function setParentLink(GoalParentLink $parentLink)
120
+ {
121
+ $this->parentLink = $parentLink;
122
+ }
123
+ /**
124
+ * @return GoalParentLink
125
+ */
126
+ public function getParentLink()
127
+ {
128
+ return $this->parentLink;
129
+ }
130
+ public function setProfileId($profileId)
131
+ {
132
+ $this->profileId = $profileId;
133
+ }
134
+ public function getProfileId()
135
+ {
136
+ return $this->profileId;
137
+ }
138
+ public function setSelfLink($selfLink)
139
+ {
140
+ $this->selfLink = $selfLink;
141
+ }
142
+ public function getSelfLink()
143
+ {
144
+ return $this->selfLink;
145
+ }
146
+ public function setType($type)
147
+ {
148
+ $this->type = $type;
149
+ }
150
+ public function getType()
151
+ {
152
+ return $this->type;
153
+ }
154
+ public function setUpdated($updated)
155
+ {
156
+ $this->updated = $updated;
157
+ }
158
+ public function getUpdated()
159
+ {
160
+ return $this->updated;
161
+ }
162
+ /**
163
+ * @param GoalUrlDestinationDetails
164
+ */
165
+ public function setUrlDestinationDetails(GoalUrlDestinationDetails $urlDestinationDetails)
166
+ {
167
+ $this->urlDestinationDetails = $urlDestinationDetails;
168
+ }
169
+ /**
170
+ * @return GoalUrlDestinationDetails
171
+ */
172
+ public function getUrlDestinationDetails()
173
+ {
174
+ return $this->urlDestinationDetails;
175
+ }
176
+ public function setValue($value)
177
+ {
178
+ $this->value = $value;
179
+ }
180
+ public function getValue()
181
+ {
182
+ return $this->value;
183
+ }
184
+ /**
185
+ * @param GoalVisitNumPagesDetails
186
+ */
187
+ public function setVisitNumPagesDetails(GoalVisitNumPagesDetails $visitNumPagesDetails)
188
+ {
189
+ $this->visitNumPagesDetails = $visitNumPagesDetails;
190
+ }
191
+ /**
192
+ * @return GoalVisitNumPagesDetails
193
+ */
194
+ public function getVisitNumPagesDetails()
195
+ {
196
+ return $this->visitNumPagesDetails;
197
+ }
198
+ /**
199
+ * @param GoalVisitTimeOnSiteDetails
200
+ */
201
+ public function setVisitTimeOnSiteDetails(GoalVisitTimeOnSiteDetails $visitTimeOnSiteDetails)
202
+ {
203
+ $this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails;
204
+ }
205
+ /**
206
+ * @return GoalVisitTimeOnSiteDetails
207
+ */
208
+ public function getVisitTimeOnSiteDetails()
209
+ {
210
+ return $this->visitTimeOnSiteDetails;
211
+ }
212
+ public function setWebPropertyId($webPropertyId)
213
+ {
214
+ $this->webPropertyId = $webPropertyId;
215
+ }
216
+ public function getWebPropertyId()
217
+ {
218
+ return $this->webPropertyId;
219
+ }
220
+ }
221
+
222
+ // Adding a class alias for backwards compatibility with the previous class name.
223
+ class_alias(Goal::class, 'WPMSGoogle_Service_Analytics_Goal');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalEventDetails.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalEventDetails extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'eventConditions';
23
+ protected $eventConditionsType = GoalEventDetailsEventConditions::class;
24
+ protected $eventConditionsDataType = 'array';
25
+ public $useEventValue;
26
+
27
+ /**
28
+ * @param GoalEventDetailsEventConditions[]
29
+ */
30
+ public function setEventConditions($eventConditions)
31
+ {
32
+ $this->eventConditions = $eventConditions;
33
+ }
34
+ /**
35
+ * @return GoalEventDetailsEventConditions[]
36
+ */
37
+ public function getEventConditions()
38
+ {
39
+ return $this->eventConditions;
40
+ }
41
+ public function setUseEventValue($useEventValue)
42
+ {
43
+ $this->useEventValue = $useEventValue;
44
+ }
45
+ public function getUseEventValue()
46
+ {
47
+ return $this->useEventValue;
48
+ }
49
+ }
50
+
51
+ // Adding a class alias for backwards compatibility with the previous class name.
52
+ class_alias(GoalEventDetails::class, 'WPMSGoogle_Service_Analytics_GoalEventDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalEventDetailsEventConditions.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalEventDetailsEventConditions extends \WPMSGoogle\Model
21
+ {
22
+ public $comparisonType;
23
+ public $comparisonValue;
24
+ public $expression;
25
+ public $matchType;
26
+ public $type;
27
+
28
+ public function setComparisonType($comparisonType)
29
+ {
30
+ $this->comparisonType = $comparisonType;
31
+ }
32
+ public function getComparisonType()
33
+ {
34
+ return $this->comparisonType;
35
+ }
36
+ public function setComparisonValue($comparisonValue)
37
+ {
38
+ $this->comparisonValue = $comparisonValue;
39
+ }
40
+ public function getComparisonValue()
41
+ {
42
+ return $this->comparisonValue;
43
+ }
44
+ public function setExpression($expression)
45
+ {
46
+ $this->expression = $expression;
47
+ }
48
+ public function getExpression()
49
+ {
50
+ return $this->expression;
51
+ }
52
+ public function setMatchType($matchType)
53
+ {
54
+ $this->matchType = $matchType;
55
+ }
56
+ public function getMatchType()
57
+ {
58
+ return $this->matchType;
59
+ }
60
+ public function setType($type)
61
+ {
62
+ $this->type = $type;
63
+ }
64
+ public function getType()
65
+ {
66
+ return $this->type;
67
+ }
68
+ }
69
+
70
+ // Adding a class alias for backwards compatibility with the previous class name.
71
+ class_alias(GoalEventDetailsEventConditions::class, 'WPMSGoogle_Service_Analytics_GoalEventDetailsEventConditions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(GoalParentLink::class, 'WPMSGoogle_Service_Analytics_GoalParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalUrlDestinationDetails.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalUrlDestinationDetails extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'steps';
23
+ public $caseSensitive;
24
+ public $firstStepRequired;
25
+ public $matchType;
26
+ protected $stepsType = GoalUrlDestinationDetailsSteps::class;
27
+ protected $stepsDataType = 'array';
28
+ public $url;
29
+
30
+ public function setCaseSensitive($caseSensitive)
31
+ {
32
+ $this->caseSensitive = $caseSensitive;
33
+ }
34
+ public function getCaseSensitive()
35
+ {
36
+ return $this->caseSensitive;
37
+ }
38
+ public function setFirstStepRequired($firstStepRequired)
39
+ {
40
+ $this->firstStepRequired = $firstStepRequired;
41
+ }
42
+ public function getFirstStepRequired()
43
+ {
44
+ return $this->firstStepRequired;
45
+ }
46
+ public function setMatchType($matchType)
47
+ {
48
+ $this->matchType = $matchType;
49
+ }
50
+ public function getMatchType()
51
+ {
52
+ return $this->matchType;
53
+ }
54
+ /**
55
+ * @param GoalUrlDestinationDetailsSteps[]
56
+ */
57
+ public function setSteps($steps)
58
+ {
59
+ $this->steps = $steps;
60
+ }
61
+ /**
62
+ * @return GoalUrlDestinationDetailsSteps[]
63
+ */
64
+ public function getSteps()
65
+ {
66
+ return $this->steps;
67
+ }
68
+ public function setUrl($url)
69
+ {
70
+ $this->url = $url;
71
+ }
72
+ public function getUrl()
73
+ {
74
+ return $this->url;
75
+ }
76
+ }
77
+
78
+ // Adding a class alias for backwards compatibility with the previous class name.
79
+ class_alias(GoalUrlDestinationDetails::class, 'WPMSGoogle_Service_Analytics_GoalUrlDestinationDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalUrlDestinationDetailsSteps.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalUrlDestinationDetailsSteps extends \WPMSGoogle\Model
21
+ {
22
+ public $name;
23
+ public $number;
24
+ public $url;
25
+
26
+ public function setName($name)
27
+ {
28
+ $this->name = $name;
29
+ }
30
+ public function getName()
31
+ {
32
+ return $this->name;
33
+ }
34
+ public function setNumber($number)
35
+ {
36
+ $this->number = $number;
37
+ }
38
+ public function getNumber()
39
+ {
40
+ return $this->number;
41
+ }
42
+ public function setUrl($url)
43
+ {
44
+ $this->url = $url;
45
+ }
46
+ public function getUrl()
47
+ {
48
+ return $this->url;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(GoalUrlDestinationDetailsSteps::class, 'WPMSGoogle_Service_Analytics_GoalUrlDestinationDetailsSteps');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalVisitNumPagesDetails.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalVisitNumPagesDetails extends \WPMSGoogle\Model
21
+ {
22
+ public $comparisonType;
23
+ public $comparisonValue;
24
+
25
+ public function setComparisonType($comparisonType)
26
+ {
27
+ $this->comparisonType = $comparisonType;
28
+ }
29
+ public function getComparisonType()
30
+ {
31
+ return $this->comparisonType;
32
+ }
33
+ public function setComparisonValue($comparisonValue)
34
+ {
35
+ $this->comparisonValue = $comparisonValue;
36
+ }
37
+ public function getComparisonValue()
38
+ {
39
+ return $this->comparisonValue;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(GoalVisitNumPagesDetails::class, 'WPMSGoogle_Service_Analytics_GoalVisitNumPagesDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/GoalVisitTimeOnSiteDetails.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class GoalVisitTimeOnSiteDetails extends \WPMSGoogle\Model
21
+ {
22
+ public $comparisonType;
23
+ public $comparisonValue;
24
+
25
+ public function setComparisonType($comparisonType)
26
+ {
27
+ $this->comparisonType = $comparisonType;
28
+ }
29
+ public function getComparisonType()
30
+ {
31
+ return $this->comparisonType;
32
+ }
33
+ public function setComparisonValue($comparisonValue)
34
+ {
35
+ $this->comparisonValue = $comparisonValue;
36
+ }
37
+ public function getComparisonValue()
38
+ {
39
+ return $this->comparisonValue;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(GoalVisitTimeOnSiteDetails::class, 'WPMSGoogle_Service_Analytics_GoalVisitTimeOnSiteDetails');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Goals.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Goals extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = Goal::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param Goal[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return Goal[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(Goals::class, 'WPMSGoogle_Service_Analytics_Goals');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/HashClientIdRequest.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class HashClientIdRequest extends \WPMSGoogle\Model
21
+ {
22
+ public $clientId;
23
+ public $kind;
24
+ public $webPropertyId;
25
+
26
+ public function setClientId($clientId)
27
+ {
28
+ $this->clientId = $clientId;
29
+ }
30
+ public function getClientId()
31
+ {
32
+ return $this->clientId;
33
+ }
34
+ public function setKind($kind)
35
+ {
36
+ $this->kind = $kind;
37
+ }
38
+ public function getKind()
39
+ {
40
+ return $this->kind;
41
+ }
42
+ public function setWebPropertyId($webPropertyId)
43
+ {
44
+ $this->webPropertyId = $webPropertyId;
45
+ }
46
+ public function getWebPropertyId()
47
+ {
48
+ return $this->webPropertyId;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(HashClientIdRequest::class, 'WPMSGoogle_Service_Analytics_HashClientIdRequest');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/HashClientIdResponse.php ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class HashClientIdResponse extends \WPMSGoogle\Model
21
+ {
22
+ public $clientId;
23
+ public $hashedClientId;
24
+ public $kind;
25
+ public $webPropertyId;
26
+
27
+ public function setClientId($clientId)
28
+ {
29
+ $this->clientId = $clientId;
30
+ }
31
+ public function getClientId()
32
+ {
33
+ return $this->clientId;
34
+ }
35
+ public function setHashedClientId($hashedClientId)
36
+ {
37
+ $this->hashedClientId = $hashedClientId;
38
+ }
39
+ public function getHashedClientId()
40
+ {
41
+ return $this->hashedClientId;
42
+ }
43
+ public function setKind($kind)
44
+ {
45
+ $this->kind = $kind;
46
+ }
47
+ public function getKind()
48
+ {
49
+ return $this->kind;
50
+ }
51
+ public function setWebPropertyId($webPropertyId)
52
+ {
53
+ $this->webPropertyId = $webPropertyId;
54
+ }
55
+ public function getWebPropertyId()
56
+ {
57
+ return $this->webPropertyId;
58
+ }
59
+ }
60
+
61
+ // Adding a class alias for backwards compatibility with the previous class name.
62
+ class_alias(HashClientIdResponse::class, 'WPMSGoogle_Service_Analytics_HashClientIdResponse');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/IncludeConditions.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class IncludeConditions extends \WPMSGoogle\Model
21
+ {
22
+ public $daysToLookBack;
23
+ public $isSmartList;
24
+ public $kind;
25
+ public $membershipDurationDays;
26
+ public $segment;
27
+
28
+ public function setDaysToLookBack($daysToLookBack)
29
+ {
30
+ $this->daysToLookBack = $daysToLookBack;
31
+ }
32
+ public function getDaysToLookBack()
33
+ {
34
+ return $this->daysToLookBack;
35
+ }
36
+ public function setIsSmartList($isSmartList)
37
+ {
38
+ $this->isSmartList = $isSmartList;
39
+ }
40
+ public function getIsSmartList()
41
+ {
42
+ return $this->isSmartList;
43
+ }
44
+ public function setKind($kind)
45
+ {
46
+ $this->kind = $kind;
47
+ }
48
+ public function getKind()
49
+ {
50
+ return $this->kind;
51
+ }
52
+ public function setMembershipDurationDays($membershipDurationDays)
53
+ {
54
+ $this->membershipDurationDays = $membershipDurationDays;
55
+ }
56
+ public function getMembershipDurationDays()
57
+ {
58
+ return $this->membershipDurationDays;
59
+ }
60
+ public function setSegment($segment)
61
+ {
62
+ $this->segment = $segment;
63
+ }
64
+ public function getSegment()
65
+ {
66
+ return $this->segment;
67
+ }
68
+ }
69
+
70
+ // Adding a class alias for backwards compatibility with the previous class name.
71
+ class_alias(IncludeConditions::class, 'WPMSGoogle_Service_Analytics_IncludeConditions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/LinkedForeignAccount.php ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class LinkedForeignAccount extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $eligibleForSearch;
24
+ public $id;
25
+ public $internalWebPropertyId;
26
+ public $kind;
27
+ public $linkedAccountId;
28
+ public $remarketingAudienceId;
29
+ public $status;
30
+ public $type;
31
+ public $webPropertyId;
32
+
33
+ public function setAccountId($accountId)
34
+ {
35
+ $this->accountId = $accountId;
36
+ }
37
+ public function getAccountId()
38
+ {
39
+ return $this->accountId;
40
+ }
41
+ public function setEligibleForSearch($eligibleForSearch)
42
+ {
43
+ $this->eligibleForSearch = $eligibleForSearch;
44
+ }
45
+ public function getEligibleForSearch()
46
+ {
47
+ return $this->eligibleForSearch;
48
+ }
49
+ public function setId($id)
50
+ {
51
+ $this->id = $id;
52
+ }
53
+ public function getId()
54
+ {
55
+ return $this->id;
56
+ }
57
+ public function setInternalWebPropertyId($internalWebPropertyId)
58
+ {
59
+ $this->internalWebPropertyId = $internalWebPropertyId;
60
+ }
61
+ public function getInternalWebPropertyId()
62
+ {
63
+ return $this->internalWebPropertyId;
64
+ }
65
+ public function setKind($kind)
66
+ {
67
+ $this->kind = $kind;
68
+ }
69
+ public function getKind()
70
+ {
71
+ return $this->kind;
72
+ }
73
+ public function setLinkedAccountId($linkedAccountId)
74
+ {
75
+ $this->linkedAccountId = $linkedAccountId;
76
+ }
77
+ public function getLinkedAccountId()
78
+ {
79
+ return $this->linkedAccountId;
80
+ }
81
+ public function setRemarketingAudienceId($remarketingAudienceId)
82
+ {
83
+ $this->remarketingAudienceId = $remarketingAudienceId;
84
+ }
85
+ public function getRemarketingAudienceId()
86
+ {
87
+ return $this->remarketingAudienceId;
88
+ }
89
+ public function setStatus($status)
90
+ {
91
+ $this->status = $status;
92
+ }
93
+ public function getStatus()
94
+ {
95
+ return $this->status;
96
+ }
97
+ public function setType($type)
98
+ {
99
+ $this->type = $type;
100
+ }
101
+ public function getType()
102
+ {
103
+ return $this->type;
104
+ }
105
+ public function setWebPropertyId($webPropertyId)
106
+ {
107
+ $this->webPropertyId = $webPropertyId;
108
+ }
109
+ public function getWebPropertyId()
110
+ {
111
+ return $this->webPropertyId;
112
+ }
113
+ }
114
+
115
+ // Adding a class alias for backwards compatibility with the previous class name.
116
+ class_alias(LinkedForeignAccount::class, 'WPMSGoogle_Service_Analytics_LinkedForeignAccount');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfData.php ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class McfData extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'rows';
23
+ protected $columnHeadersType = McfDataColumnHeaders::class;
24
+ protected $columnHeadersDataType = 'array';
25
+ public $containsSampledData;
26
+ public $id;
27
+ public $itemsPerPage;
28
+ public $kind;
29
+ public $nextLink;
30
+ public $previousLink;
31
+ protected $profileInfoType = McfDataProfileInfo::class;
32
+ protected $profileInfoDataType = '';
33
+ protected $queryType = McfDataQuery::class;
34
+ protected $queryDataType = '';
35
+ protected $rowsType = McfDataRows::class;
36
+ protected $rowsDataType = 'array';
37
+ public $sampleSize;
38
+ public $sampleSpace;
39
+ public $selfLink;
40
+ public $totalResults;
41
+ public $totalsForAllResults;
42
+
43
+ /**
44
+ * @param McfDataColumnHeaders[]
45
+ */
46
+ public function setColumnHeaders($columnHeaders)
47
+ {
48
+ $this->columnHeaders = $columnHeaders;
49
+ }
50
+ /**
51
+ * @return McfDataColumnHeaders[]
52
+ */
53
+ public function getColumnHeaders()
54
+ {
55
+ return $this->columnHeaders;
56
+ }
57
+ public function setContainsSampledData($containsSampledData)
58
+ {
59
+ $this->containsSampledData = $containsSampledData;
60
+ }
61
+ public function getContainsSampledData()
62
+ {
63
+ return $this->containsSampledData;
64
+ }
65
+ public function setId($id)
66
+ {
67
+ $this->id = $id;
68
+ }
69
+ public function getId()
70
+ {
71
+ return $this->id;
72
+ }
73
+ public function setItemsPerPage($itemsPerPage)
74
+ {
75
+ $this->itemsPerPage = $itemsPerPage;
76
+ }
77
+ public function getItemsPerPage()
78
+ {
79
+ return $this->itemsPerPage;
80
+ }
81
+ public function setKind($kind)
82
+ {
83
+ $this->kind = $kind;
84
+ }
85
+ public function getKind()
86
+ {
87
+ return $this->kind;
88
+ }
89
+ public function setNextLink($nextLink)
90
+ {
91
+ $this->nextLink = $nextLink;
92
+ }
93
+ public function getNextLink()
94
+ {
95
+ return $this->nextLink;
96
+ }
97
+ public function setPreviousLink($previousLink)
98
+ {
99
+ $this->previousLink = $previousLink;
100
+ }
101
+ public function getPreviousLink()
102
+ {
103
+ return $this->previousLink;
104
+ }
105
+ /**
106
+ * @param McfDataProfileInfo
107
+ */
108
+ public function setProfileInfo(McfDataProfileInfo $profileInfo)
109
+ {
110
+ $this->profileInfo = $profileInfo;
111
+ }
112
+ /**
113
+ * @return McfDataProfileInfo
114
+ */
115
+ public function getProfileInfo()
116
+ {
117
+ return $this->profileInfo;
118
+ }
119
+ /**
120
+ * @param McfDataQuery
121
+ */
122
+ public function setQuery(McfDataQuery $query)
123
+ {
124
+ $this->query = $query;
125
+ }
126
+ /**
127
+ * @return McfDataQuery
128
+ */
129
+ public function getQuery()
130
+ {
131
+ return $this->query;
132
+ }
133
+ /**
134
+ * @param McfDataRows[]
135
+ */
136
+ public function setRows($rows)
137
+ {
138
+ $this->rows = $rows;
139
+ }
140
+ /**
141
+ * @return McfDataRows[]
142
+ */
143
+ public function getRows()
144
+ {
145
+ return $this->rows;
146
+ }
147
+ public function setSampleSize($sampleSize)
148
+ {
149
+ $this->sampleSize = $sampleSize;
150
+ }
151
+ public function getSampleSize()
152
+ {
153
+ return $this->sampleSize;
154
+ }
155
+ public function setSampleSpace($sampleSpace)
156
+ {
157
+ $this->sampleSpace = $sampleSpace;
158
+ }
159
+ public function getSampleSpace()
160
+ {
161
+ return $this->sampleSpace;
162
+ }
163
+ public function setSelfLink($selfLink)
164
+ {
165
+ $this->selfLink = $selfLink;
166
+ }
167
+ public function getSelfLink()
168
+ {
169
+ return $this->selfLink;
170
+ }
171
+ public function setTotalResults($totalResults)
172
+ {
173
+ $this->totalResults = $totalResults;
174
+ }
175
+ public function getTotalResults()
176
+ {
177
+ return $this->totalResults;
178
+ }
179
+ public function setTotalsForAllResults($totalsForAllResults)
180
+ {
181
+ $this->totalsForAllResults = $totalsForAllResults;
182
+ }
183
+ public function getTotalsForAllResults()
184
+ {
185
+ return $this->totalsForAllResults;
186
+ }
187
+ }
188
+
189
+ // Adding a class alias for backwards compatibility with the previous class name.
190
+ class_alias(McfData::class, 'WPMSGoogle_Service_Analytics_McfData');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataColumnHeaders.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class McfDataColumnHeaders extends \WPMSGoogle\Model
21
+ {
22
+ public $columnType;
23
+ public $dataType;
24
+ public $name;
25
+
26
+ public function setColumnType($columnType)
27
+ {
28
+ $this->columnType = $columnType;
29
+ }
30
+ public function getColumnType()
31
+ {
32
+ return $this->columnType;
33
+ }
34
+ public function setDataType($dataType)
35
+ {
36
+ $this->dataType = $dataType;
37
+ }
38
+ public function getDataType()
39
+ {
40
+ return $this->dataType;
41
+ }
42
+ public function setName($name)
43
+ {
44
+ $this->name = $name;
45
+ }
46
+ public function getName()
47
+ {
48
+ return $this->name;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(McfDataColumnHeaders::class, 'WPMSGoogle_Service_Analytics_McfDataColumnHeaders');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataProfileInfo.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class McfDataProfileInfo extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $internalWebPropertyId;
24
+ public $profileId;
25
+ public $profileName;
26
+ public $tableId;
27
+ public $webPropertyId;
28
+
29
+ public function setAccountId($accountId)
30
+ {
31
+ $this->accountId = $accountId;
32
+ }
33
+ public function getAccountId()
34
+ {
35
+ return $this->accountId;
36
+ }
37
+ public function setInternalWebPropertyId($internalWebPropertyId)
38
+ {
39
+ $this->internalWebPropertyId = $internalWebPropertyId;
40
+ }
41
+ public function getInternalWebPropertyId()
42
+ {
43
+ return $this->internalWebPropertyId;
44
+ }
45
+ public function setProfileId($profileId)
46
+ {
47
+ $this->profileId = $profileId;
48
+ }
49
+ public function getProfileId()
50
+ {
51
+ return $this->profileId;
52
+ }
53
+ public function setProfileName($profileName)
54
+ {
55
+ $this->profileName = $profileName;
56
+ }
57
+ public function getProfileName()
58
+ {
59
+ return $this->profileName;
60
+ }
61
+ public function setTableId($tableId)
62
+ {
63
+ $this->tableId = $tableId;
64
+ }
65
+ public function getTableId()
66
+ {
67
+ return $this->tableId;
68
+ }
69
+ public function setWebPropertyId($webPropertyId)
70
+ {
71
+ $this->webPropertyId = $webPropertyId;
72
+ }
73
+ public function getWebPropertyId()
74
+ {
75
+ return $this->webPropertyId;
76
+ }
77
+ }
78
+
79
+ // Adding a class alias for backwards compatibility with the previous class name.
80
+ class_alias(McfDataProfileInfo::class, 'WPMSGoogle_Service_Analytics_McfDataProfileInfo');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataQuery.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class McfDataQuery extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'sort';
23
+ protected $internal_gapi_mappings = [
24
+ "endDate" => "end-date",
25
+ "maxResults" => "max-results",
26
+ "startDate" => "start-date",
27
+ "startIndex" => "start-index",
28
+ ];
29
+ public $dimensions;
30
+ public $endDate;
31
+ public $filters;
32
+ public $ids;
33
+ public $maxResults;
34
+ public $metrics;
35
+ public $samplingLevel;
36
+ public $segment;
37
+ public $sort;
38
+ public $startDate;
39
+ public $startIndex;
40
+
41
+ public function setDimensions($dimensions)
42
+ {
43
+ $this->dimensions = $dimensions;
44
+ }
45
+ public function getDimensions()
46
+ {
47
+ return $this->dimensions;
48
+ }
49
+ public function setEndDate($endDate)
50
+ {
51
+ $this->endDate = $endDate;
52
+ }
53
+ public function getEndDate()
54
+ {
55
+ return $this->endDate;
56
+ }
57
+ public function setFilters($filters)
58
+ {
59
+ $this->filters = $filters;
60
+ }
61
+ public function getFilters()
62
+ {
63
+ return $this->filters;
64
+ }
65
+ public function setIds($ids)
66
+ {
67
+ $this->ids = $ids;
68
+ }
69
+ public function getIds()
70
+ {
71
+ return $this->ids;
72
+ }
73
+ public function setMaxResults($maxResults)
74
+ {
75
+ $this->maxResults = $maxResults;
76
+ }
77
+ public function getMaxResults()
78
+ {
79
+ return $this->maxResults;
80
+ }
81
+ public function setMetrics($metrics)
82
+ {
83
+ $this->metrics = $metrics;
84
+ }
85
+ public function getMetrics()
86
+ {
87
+ return $this->metrics;
88
+ }
89
+ public function setSamplingLevel($samplingLevel)
90
+ {
91
+ $this->samplingLevel = $samplingLevel;
92
+ }
93
+ public function getSamplingLevel()
94
+ {
95
+ return $this->samplingLevel;
96
+ }
97
+ public function setSegment($segment)
98
+ {
99
+ $this->segment = $segment;
100
+ }
101
+ public function getSegment()
102
+ {
103
+ return $this->segment;
104
+ }
105
+ public function setSort($sort)
106
+ {
107
+ $this->sort = $sort;
108
+ }
109
+ public function getSort()
110
+ {
111
+ return $this->sort;
112
+ }
113
+ public function setStartDate($startDate)
114
+ {
115
+ $this->startDate = $startDate;
116
+ }
117
+ public function getStartDate()
118
+ {
119
+ return $this->startDate;
120
+ }
121
+ public function setStartIndex($startIndex)
122
+ {
123
+ $this->startIndex = $startIndex;
124
+ }
125
+ public function getStartIndex()
126
+ {
127
+ return $this->startIndex;
128
+ }
129
+ }
130
+
131
+ // Adding a class alias for backwards compatibility with the previous class name.
132
+ class_alias(McfDataQuery::class, 'WPMSGoogle_Service_Analytics_McfDataQuery');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataRows.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class McfDataRows extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'conversionPathValue';
23
+ protected $conversionPathValueType = McfDataRowsConversionPathValue::class;
24
+ protected $conversionPathValueDataType = 'array';
25
+ public $primitiveValue;
26
+
27
+ /**
28
+ * @param McfDataRowsConversionPathValue[]
29
+ */
30
+ public function setConversionPathValue($conversionPathValue)
31
+ {
32
+ $this->conversionPathValue = $conversionPathValue;
33
+ }
34
+ /**
35
+ * @return McfDataRowsConversionPathValue[]
36
+ */
37
+ public function getConversionPathValue()
38
+ {
39
+ return $this->conversionPathValue;
40
+ }
41
+ public function setPrimitiveValue($primitiveValue)
42
+ {
43
+ $this->primitiveValue = $primitiveValue;
44
+ }
45
+ public function getPrimitiveValue()
46
+ {
47
+ return $this->primitiveValue;
48
+ }
49
+ }
50
+
51
+ // Adding a class alias for backwards compatibility with the previous class name.
52
+ class_alias(McfDataRows::class, 'WPMSGoogle_Service_Analytics_McfDataRows');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/McfDataRowsConversionPathValue.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class McfDataRowsConversionPathValue extends \WPMSGoogle\Model
21
+ {
22
+ public $interactionType;
23
+ public $nodeValue;
24
+
25
+ public function setInteractionType($interactionType)
26
+ {
27
+ $this->interactionType = $interactionType;
28
+ }
29
+ public function getInteractionType()
30
+ {
31
+ return $this->interactionType;
32
+ }
33
+ public function setNodeValue($nodeValue)
34
+ {
35
+ $this->nodeValue = $nodeValue;
36
+ }
37
+ public function getNodeValue()
38
+ {
39
+ return $this->nodeValue;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(McfDataRowsConversionPathValue::class, 'WPMSGoogle_Service_Analytics_McfDataRowsConversionPathValue');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Profile.php ADDED
@@ -0,0 +1,281 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Profile extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $botFilteringEnabled;
24
+ protected $childLinkType = ProfileChildLink::class;
25
+ protected $childLinkDataType = '';
26
+ public $created;
27
+ public $currency;
28
+ public $defaultPage;
29
+ public $eCommerceTracking;
30
+ public $enhancedECommerceTracking;
31
+ public $excludeQueryParameters;
32
+ public $id;
33
+ public $internalWebPropertyId;
34
+ public $kind;
35
+ public $name;
36
+ protected $parentLinkType = ProfileParentLink::class;
37
+ protected $parentLinkDataType = '';
38
+ protected $permissionsType = ProfilePermissions::class;
39
+ protected $permissionsDataType = '';
40
+ public $selfLink;
41
+ public $siteSearchCategoryParameters;
42
+ public $siteSearchQueryParameters;
43
+ public $starred;
44
+ public $stripSiteSearchCategoryParameters;
45
+ public $stripSiteSearchQueryParameters;
46
+ public $timezone;
47
+ public $type;
48
+ public $updated;
49
+ public $webPropertyId;
50
+ public $websiteUrl;
51
+
52
+ public function setAccountId($accountId)
53
+ {
54
+ $this->accountId = $accountId;
55
+ }
56
+ public function getAccountId()
57
+ {
58
+ return $this->accountId;
59
+ }
60
+ public function setBotFilteringEnabled($botFilteringEnabled)
61
+ {
62
+ $this->botFilteringEnabled = $botFilteringEnabled;
63
+ }
64
+ public function getBotFilteringEnabled()
65
+ {
66
+ return $this->botFilteringEnabled;
67
+ }
68
+ /**
69
+ * @param ProfileChildLink
70
+ */
71
+ public function setChildLink(ProfileChildLink $childLink)
72
+ {
73
+ $this->childLink = $childLink;
74
+ }
75
+ /**
76
+ * @return ProfileChildLink
77
+ */
78
+ public function getChildLink()
79
+ {
80
+ return $this->childLink;
81
+ }
82
+ public function setCreated($created)
83
+ {
84
+ $this->created = $created;
85
+ }
86
+ public function getCreated()
87
+ {
88
+ return $this->created;
89
+ }
90
+ public function setCurrency($currency)
91
+ {
92
+ $this->currency = $currency;
93
+ }
94
+ public function getCurrency()
95
+ {
96
+ return $this->currency;
97
+ }
98
+ public function setDefaultPage($defaultPage)
99
+ {
100
+ $this->defaultPage = $defaultPage;
101
+ }
102
+ public function getDefaultPage()
103
+ {
104
+ return $this->defaultPage;
105
+ }
106
+ public function setECommerceTracking($eCommerceTracking)
107
+ {
108
+ $this->eCommerceTracking = $eCommerceTracking;
109
+ }
110
+ public function getECommerceTracking()
111
+ {
112
+ return $this->eCommerceTracking;
113
+ }
114
+ public function setEnhancedECommerceTracking($enhancedECommerceTracking)
115
+ {
116
+ $this->enhancedECommerceTracking = $enhancedECommerceTracking;
117
+ }
118
+ public function getEnhancedECommerceTracking()
119
+ {
120
+ return $this->enhancedECommerceTracking;
121
+ }
122
+ public function setExcludeQueryParameters($excludeQueryParameters)
123
+ {
124
+ $this->excludeQueryParameters = $excludeQueryParameters;
125
+ }
126
+ public function getExcludeQueryParameters()
127
+ {
128
+ return $this->excludeQueryParameters;
129
+ }
130
+ public function setId($id)
131
+ {
132
+ $this->id = $id;
133
+ }
134
+ public function getId()
135
+ {
136
+ return $this->id;
137
+ }
138
+ public function setInternalWebPropertyId($internalWebPropertyId)
139
+ {
140
+ $this->internalWebPropertyId = $internalWebPropertyId;
141
+ }
142
+ public function getInternalWebPropertyId()
143
+ {
144
+ return $this->internalWebPropertyId;
145
+ }
146
+ public function setKind($kind)
147
+ {
148
+ $this->kind = $kind;
149
+ }
150
+ public function getKind()
151
+ {
152
+ return $this->kind;
153
+ }
154
+ public function setName($name)
155
+ {
156
+ $this->name = $name;
157
+ }
158
+ public function getName()
159
+ {
160
+ return $this->name;
161
+ }
162
+ /**
163
+ * @param ProfileParentLink
164
+ */
165
+ public function setParentLink(ProfileParentLink $parentLink)
166
+ {
167
+ $this->parentLink = $parentLink;
168
+ }
169
+ /**
170
+ * @return ProfileParentLink
171
+ */
172
+ public function getParentLink()
173
+ {
174
+ return $this->parentLink;
175
+ }
176
+ /**
177
+ * @param ProfilePermissions
178
+ */
179
+ public function setPermissions(ProfilePermissions $permissions)
180
+ {
181
+ $this->permissions = $permissions;
182
+ }
183
+ /**
184
+ * @return ProfilePermissions
185
+ */
186
+ public function getPermissions()
187
+ {
188
+ return $this->permissions;
189
+ }
190
+ public function setSelfLink($selfLink)
191
+ {
192
+ $this->selfLink = $selfLink;
193
+ }
194
+ public function getSelfLink()
195
+ {
196
+ return $this->selfLink;
197
+ }
198
+ public function setSiteSearchCategoryParameters($siteSearchCategoryParameters)
199
+ {
200
+ $this->siteSearchCategoryParameters = $siteSearchCategoryParameters;
201
+ }
202
+ public function getSiteSearchCategoryParameters()
203
+ {
204
+ return $this->siteSearchCategoryParameters;
205
+ }
206
+ public function setSiteSearchQueryParameters($siteSearchQueryParameters)
207
+ {
208
+ $this->siteSearchQueryParameters = $siteSearchQueryParameters;
209
+ }
210
+ public function getSiteSearchQueryParameters()
211
+ {
212
+ return $this->siteSearchQueryParameters;
213
+ }
214
+ public function setStarred($starred)
215
+ {
216
+ $this->starred = $starred;
217
+ }
218
+ public function getStarred()
219
+ {
220
+ return $this->starred;
221
+ }
222
+ public function setStripSiteSearchCategoryParameters($stripSiteSearchCategoryParameters)
223
+ {
224
+ $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters;
225
+ }
226
+ public function getStripSiteSearchCategoryParameters()
227
+ {
228
+ return $this->stripSiteSearchCategoryParameters;
229
+ }
230
+ public function setStripSiteSearchQueryParameters($stripSiteSearchQueryParameters)
231
+ {
232
+ $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters;
233
+ }
234
+ public function getStripSiteSearchQueryParameters()
235
+ {
236
+ return $this->stripSiteSearchQueryParameters;
237
+ }
238
+ public function setTimezone($timezone)
239
+ {
240
+ $this->timezone = $timezone;
241
+ }
242
+ public function getTimezone()
243
+ {
244
+ return $this->timezone;
245
+ }
246
+ public function setType($type)
247
+ {
248
+ $this->type = $type;
249
+ }
250
+ public function getType()
251
+ {
252
+ return $this->type;
253
+ }
254
+ public function setUpdated($updated)
255
+ {
256
+ $this->updated = $updated;
257
+ }
258
+ public function getUpdated()
259
+ {
260
+ return $this->updated;
261
+ }
262
+ public function setWebPropertyId($webPropertyId)
263
+ {
264
+ $this->webPropertyId = $webPropertyId;
265
+ }
266
+ public function getWebPropertyId()
267
+ {
268
+ return $this->webPropertyId;
269
+ }
270
+ public function setWebsiteUrl($websiteUrl)
271
+ {
272
+ $this->websiteUrl = $websiteUrl;
273
+ }
274
+ public function getWebsiteUrl()
275
+ {
276
+ return $this->websiteUrl;
277
+ }
278
+ }
279
+
280
+ // Adding a class alias for backwards compatibility with the previous class name.
281
+ class_alias(Profile::class, 'WPMSGoogle_Service_Analytics_Profile');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileChildLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfileChildLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(ProfileChildLink::class, 'WPMSGoogle_Service_Analytics_ProfileChildLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileFilterLink.php ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfileFilterLink extends \WPMSGoogle\Model
21
+ {
22
+ protected $filterRefType = FilterRef::class;
23
+ protected $filterRefDataType = '';
24
+ public $id;
25
+ public $kind;
26
+ protected $profileRefType = ProfileRef::class;
27
+ protected $profileRefDataType = '';
28
+ public $rank;
29
+ public $selfLink;
30
+
31
+ /**
32
+ * @param FilterRef
33
+ */
34
+ public function setFilterRef(FilterRef $filterRef)
35
+ {
36
+ $this->filterRef = $filterRef;
37
+ }
38
+ /**
39
+ * @return FilterRef
40
+ */
41
+ public function getFilterRef()
42
+ {
43
+ return $this->filterRef;
44
+ }
45
+ public function setId($id)
46
+ {
47
+ $this->id = $id;
48
+ }
49
+ public function getId()
50
+ {
51
+ return $this->id;
52
+ }
53
+ public function setKind($kind)
54
+ {
55
+ $this->kind = $kind;
56
+ }
57
+ public function getKind()
58
+ {
59
+ return $this->kind;
60
+ }
61
+ /**
62
+ * @param ProfileRef
63
+ */
64
+ public function setProfileRef(ProfileRef $profileRef)
65
+ {
66
+ $this->profileRef = $profileRef;
67
+ }
68
+ /**
69
+ * @return ProfileRef
70
+ */
71
+ public function getProfileRef()
72
+ {
73
+ return $this->profileRef;
74
+ }
75
+ public function setRank($rank)
76
+ {
77
+ $this->rank = $rank;
78
+ }
79
+ public function getRank()
80
+ {
81
+ return $this->rank;
82
+ }
83
+ public function setSelfLink($selfLink)
84
+ {
85
+ $this->selfLink = $selfLink;
86
+ }
87
+ public function getSelfLink()
88
+ {
89
+ return $this->selfLink;
90
+ }
91
+ }
92
+
93
+ // Adding a class alias for backwards compatibility with the previous class name.
94
+ class_alias(ProfileFilterLink::class, 'WPMSGoogle_Service_Analytics_ProfileFilterLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileFilterLinks.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfileFilterLinks extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = ProfileFilterLink::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param ProfileFilterLink[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return ProfileFilterLink[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(ProfileFilterLinks::class, 'WPMSGoogle_Service_Analytics_ProfileFilterLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileParentLink.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfileParentLink extends \WPMSGoogle\Model
21
+ {
22
+ public $href;
23
+ public $type;
24
+
25
+ public function setHref($href)
26
+ {
27
+ $this->href = $href;
28
+ }
29
+ public function getHref()
30
+ {
31
+ return $this->href;
32
+ }
33
+ public function setType($type)
34
+ {
35
+ $this->type = $type;
36
+ }
37
+ public function getType()
38
+ {
39
+ return $this->type;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(ProfileParentLink::class, 'WPMSGoogle_Service_Analytics_ProfileParentLink');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfilePermissions.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfilePermissions extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'effective';
23
+ public $effective;
24
+
25
+ public function setEffective($effective)
26
+ {
27
+ $this->effective = $effective;
28
+ }
29
+ public function getEffective()
30
+ {
31
+ return $this->effective;
32
+ }
33
+ }
34
+
35
+ // Adding a class alias for backwards compatibility with the previous class name.
36
+ class_alias(ProfilePermissions::class, 'WPMSGoogle_Service_Analytics_ProfilePermissions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileRef.php ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfileRef extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $href;
24
+ public $id;
25
+ public $internalWebPropertyId;
26
+ public $kind;
27
+ public $name;
28
+ public $webPropertyId;
29
+
30
+ public function setAccountId($accountId)
31
+ {
32
+ $this->accountId = $accountId;
33
+ }
34
+ public function getAccountId()
35
+ {
36
+ return $this->accountId;
37
+ }
38
+ public function setHref($href)
39
+ {
40
+ $this->href = $href;
41
+ }
42
+ public function getHref()
43
+ {
44
+ return $this->href;
45
+ }
46
+ public function setId($id)
47
+ {
48
+ $this->id = $id;
49
+ }
50
+ public function getId()
51
+ {
52
+ return $this->id;
53
+ }
54
+ public function setInternalWebPropertyId($internalWebPropertyId)
55
+ {
56
+ $this->internalWebPropertyId = $internalWebPropertyId;
57
+ }
58
+ public function getInternalWebPropertyId()
59
+ {
60
+ return $this->internalWebPropertyId;
61
+ }
62
+ public function setKind($kind)
63
+ {
64
+ $this->kind = $kind;
65
+ }
66
+ public function getKind()
67
+ {
68
+ return $this->kind;
69
+ }
70
+ public function setName($name)
71
+ {
72
+ $this->name = $name;
73
+ }
74
+ public function getName()
75
+ {
76
+ return $this->name;
77
+ }
78
+ public function setWebPropertyId($webPropertyId)
79
+ {
80
+ $this->webPropertyId = $webPropertyId;
81
+ }
82
+ public function getWebPropertyId()
83
+ {
84
+ return $this->webPropertyId;
85
+ }
86
+ }
87
+
88
+ // Adding a class alias for backwards compatibility with the previous class name.
89
+ class_alias(ProfileRef::class, 'WPMSGoogle_Service_Analytics_ProfileRef');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/ProfileSummary.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class ProfileSummary extends \WPMSGoogle\Model
21
+ {
22
+ public $id;
23
+ public $kind;
24
+ public $name;
25
+ public $starred;
26
+ public $type;
27
+
28
+ public function setId($id)
29
+ {
30
+ $this->id = $id;
31
+ }
32
+ public function getId()
33
+ {
34
+ return $this->id;
35
+ }
36
+ public function setKind($kind)
37
+ {
38
+ $this->kind = $kind;
39
+ }
40
+ public function getKind()
41
+ {
42
+ return $this->kind;
43
+ }
44
+ public function setName($name)
45
+ {
46
+ $this->name = $name;
47
+ }
48
+ public function getName()
49
+ {
50
+ return $this->name;
51
+ }
52
+ public function setStarred($starred)
53
+ {
54
+ $this->starred = $starred;
55
+ }
56
+ public function getStarred()
57
+ {
58
+ return $this->starred;
59
+ }
60
+ public function setType($type)
61
+ {
62
+ $this->type = $type;
63
+ }
64
+ public function getType()
65
+ {
66
+ return $this->type;
67
+ }
68
+ }
69
+
70
+ // Adding a class alias for backwards compatibility with the previous class name.
71
+ class_alias(ProfileSummary::class, 'WPMSGoogle_Service_Analytics_ProfileSummary');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Profiles.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class Profiles extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = Profile::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param Profile[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return Profile[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(Profiles::class, 'WPMSGoogle_Service_Analytics_Profiles');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeData.php ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RealtimeData extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'rows';
23
+ protected $columnHeadersType = RealtimeDataColumnHeaders::class;
24
+ protected $columnHeadersDataType = 'array';
25
+ public $id;
26
+ public $kind;
27
+ protected $profileInfoType = RealtimeDataProfileInfo::class;
28
+ protected $profileInfoDataType = '';
29
+ protected $queryType = RealtimeDataQuery::class;
30
+ protected $queryDataType = '';
31
+ public $rows;
32
+ public $selfLink;
33
+ public $totalResults;
34
+ public $totalsForAllResults;
35
+
36
+ /**
37
+ * @param RealtimeDataColumnHeaders[]
38
+ */
39
+ public function setColumnHeaders($columnHeaders)
40
+ {
41
+ $this->columnHeaders = $columnHeaders;
42
+ }
43
+ /**
44
+ * @return RealtimeDataColumnHeaders[]
45
+ */
46
+ public function getColumnHeaders()
47
+ {
48
+ return $this->columnHeaders;
49
+ }
50
+ public function setId($id)
51
+ {
52
+ $this->id = $id;
53
+ }
54
+ public function getId()
55
+ {
56
+ return $this->id;
57
+ }
58
+ public function setKind($kind)
59
+ {
60
+ $this->kind = $kind;
61
+ }
62
+ public function getKind()
63
+ {
64
+ return $this->kind;
65
+ }
66
+ /**
67
+ * @param RealtimeDataProfileInfo
68
+ */
69
+ public function setProfileInfo(RealtimeDataProfileInfo $profileInfo)
70
+ {
71
+ $this->profileInfo = $profileInfo;
72
+ }
73
+ /**
74
+ * @return RealtimeDataProfileInfo
75
+ */
76
+ public function getProfileInfo()
77
+ {
78
+ return $this->profileInfo;
79
+ }
80
+ /**
81
+ * @param RealtimeDataQuery
82
+ */
83
+ public function setQuery(RealtimeDataQuery $query)
84
+ {
85
+ $this->query = $query;
86
+ }
87
+ /**
88
+ * @return RealtimeDataQuery
89
+ */
90
+ public function getQuery()
91
+ {
92
+ return $this->query;
93
+ }
94
+ public function setRows($rows)
95
+ {
96
+ $this->rows = $rows;
97
+ }
98
+ public function getRows()
99
+ {
100
+ return $this->rows;
101
+ }
102
+ public function setSelfLink($selfLink)
103
+ {
104
+ $this->selfLink = $selfLink;
105
+ }
106
+ public function getSelfLink()
107
+ {
108
+ return $this->selfLink;
109
+ }
110
+ public function setTotalResults($totalResults)
111
+ {
112
+ $this->totalResults = $totalResults;
113
+ }
114
+ public function getTotalResults()
115
+ {
116
+ return $this->totalResults;
117
+ }
118
+ public function setTotalsForAllResults($totalsForAllResults)
119
+ {
120
+ $this->totalsForAllResults = $totalsForAllResults;
121
+ }
122
+ public function getTotalsForAllResults()
123
+ {
124
+ return $this->totalsForAllResults;
125
+ }
126
+ }
127
+
128
+ // Adding a class alias for backwards compatibility with the previous class name.
129
+ class_alias(RealtimeData::class, 'WPMSGoogle_Service_Analytics_RealtimeData');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeDataColumnHeaders.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RealtimeDataColumnHeaders extends \WPMSGoogle\Model
21
+ {
22
+ public $columnType;
23
+ public $dataType;
24
+ public $name;
25
+
26
+ public function setColumnType($columnType)
27
+ {
28
+ $this->columnType = $columnType;
29
+ }
30
+ public function getColumnType()
31
+ {
32
+ return $this->columnType;
33
+ }
34
+ public function setDataType($dataType)
35
+ {
36
+ $this->dataType = $dataType;
37
+ }
38
+ public function getDataType()
39
+ {
40
+ return $this->dataType;
41
+ }
42
+ public function setName($name)
43
+ {
44
+ $this->name = $name;
45
+ }
46
+ public function getName()
47
+ {
48
+ return $this->name;
49
+ }
50
+ }
51
+
52
+ // Adding a class alias for backwards compatibility with the previous class name.
53
+ class_alias(RealtimeDataColumnHeaders::class, 'WPMSGoogle_Service_Analytics_RealtimeDataColumnHeaders');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeDataProfileInfo.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RealtimeDataProfileInfo extends \WPMSGoogle\Model
21
+ {
22
+ public $accountId;
23
+ public $internalWebPropertyId;
24
+ public $profileId;
25
+ public $profileName;
26
+ public $tableId;
27
+ public $webPropertyId;
28
+
29
+ public function setAccountId($accountId)
30
+ {
31
+ $this->accountId = $accountId;
32
+ }
33
+ public function getAccountId()
34
+ {
35
+ return $this->accountId;
36
+ }
37
+ public function setInternalWebPropertyId($internalWebPropertyId)
38
+ {
39
+ $this->internalWebPropertyId = $internalWebPropertyId;
40
+ }
41
+ public function getInternalWebPropertyId()
42
+ {
43
+ return $this->internalWebPropertyId;
44
+ }
45
+ public function setProfileId($profileId)
46
+ {
47
+ $this->profileId = $profileId;
48
+ }
49
+ public function getProfileId()
50
+ {
51
+ return $this->profileId;
52
+ }
53
+ public function setProfileName($profileName)
54
+ {
55
+ $this->profileName = $profileName;
56
+ }
57
+ public function getProfileName()
58
+ {
59
+ return $this->profileName;
60
+ }
61
+ public function setTableId($tableId)
62
+ {
63
+ $this->tableId = $tableId;
64
+ }
65
+ public function getTableId()
66
+ {
67
+ return $this->tableId;
68
+ }
69
+ public function setWebPropertyId($webPropertyId)
70
+ {
71
+ $this->webPropertyId = $webPropertyId;
72
+ }
73
+ public function getWebPropertyId()
74
+ {
75
+ return $this->webPropertyId;
76
+ }
77
+ }
78
+
79
+ // Adding a class alias for backwards compatibility with the previous class name.
80
+ class_alias(RealtimeDataProfileInfo::class, 'WPMSGoogle_Service_Analytics_RealtimeDataProfileInfo');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RealtimeDataQuery.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RealtimeDataQuery extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'sort';
23
+ protected $internal_gapi_mappings = [
24
+ "maxResults" => "max-results",
25
+ ];
26
+ public $dimensions;
27
+ public $filters;
28
+ public $ids;
29
+ public $maxResults;
30
+ public $metrics;
31
+ public $sort;
32
+
33
+ public function setDimensions($dimensions)
34
+ {
35
+ $this->dimensions = $dimensions;
36
+ }
37
+ public function getDimensions()
38
+ {
39
+ return $this->dimensions;
40
+ }
41
+ public function setFilters($filters)
42
+ {
43
+ $this->filters = $filters;
44
+ }
45
+ public function getFilters()
46
+ {
47
+ return $this->filters;
48
+ }
49
+ public function setIds($ids)
50
+ {
51
+ $this->ids = $ids;
52
+ }
53
+ public function getIds()
54
+ {
55
+ return $this->ids;
56
+ }
57
+ public function setMaxResults($maxResults)
58
+ {
59
+ $this->maxResults = $maxResults;
60
+ }
61
+ public function getMaxResults()
62
+ {
63
+ return $this->maxResults;
64
+ }
65
+ public function setMetrics($metrics)
66
+ {
67
+ $this->metrics = $metrics;
68
+ }
69
+ public function getMetrics()
70
+ {
71
+ return $this->metrics;
72
+ }
73
+ public function setSort($sort)
74
+ {
75
+ $this->sort = $sort;
76
+ }
77
+ public function getSort()
78
+ {
79
+ return $this->sort;
80
+ }
81
+ }
82
+
83
+ // Adding a class alias for backwards compatibility with the previous class name.
84
+ class_alias(RealtimeDataQuery::class, 'WPMSGoogle_Service_Analytics_RealtimeDataQuery');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudience.php ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RemarketingAudience extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'linkedViews';
23
+ public $accountId;
24
+ protected $audienceDefinitionType = RemarketingAudienceAudienceDefinition::class;
25
+ protected $audienceDefinitionDataType = '';
26
+ public $audienceType;
27
+ public $created;
28
+ public $description;
29
+ public $id;
30
+ public $internalWebPropertyId;
31
+ public $kind;
32
+ protected $linkedAdAccountsType = LinkedForeignAccount::class;
33
+ protected $linkedAdAccountsDataType = 'array';
34
+ public $linkedViews;
35
+ public $name;
36
+ protected $stateBasedAudienceDefinitionType = RemarketingAudienceStateBasedAudienceDefinition::class;
37
+ protected $stateBasedAudienceDefinitionDataType = '';
38
+ public $updated;
39
+ public $webPropertyId;
40
+
41
+ public function setAccountId($accountId)
42
+ {
43
+ $this->accountId = $accountId;
44
+ }
45
+ public function getAccountId()
46
+ {
47
+ return $this->accountId;
48
+ }
49
+ /**
50
+ * @param RemarketingAudienceAudienceDefinition
51
+ */
52
+ public function setAudienceDefinition(RemarketingAudienceAudienceDefinition $audienceDefinition)
53
+ {
54
+ $this->audienceDefinition = $audienceDefinition;
55
+ }
56
+ /**
57
+ * @return RemarketingAudienceAudienceDefinition
58
+ */
59
+ public function getAudienceDefinition()
60
+ {
61
+ return $this->audienceDefinition;
62
+ }
63
+ public function setAudienceType($audienceType)
64
+ {
65
+ $this->audienceType = $audienceType;
66
+ }
67
+ public function getAudienceType()
68
+ {
69
+ return $this->audienceType;
70
+ }
71
+ public function setCreated($created)
72
+ {
73
+ $this->created = $created;
74
+ }
75
+ public function getCreated()
76
+ {
77
+ return $this->created;
78
+ }
79
+ public function setDescription($description)
80
+ {
81
+ $this->description = $description;
82
+ }
83
+ public function getDescription()
84
+ {
85
+ return $this->description;
86
+ }
87
+ public function setId($id)
88
+ {
89
+ $this->id = $id;
90
+ }
91
+ public function getId()
92
+ {
93
+ return $this->id;
94
+ }
95
+ public function setInternalWebPropertyId($internalWebPropertyId)
96
+ {
97
+ $this->internalWebPropertyId = $internalWebPropertyId;
98
+ }
99
+ public function getInternalWebPropertyId()
100
+ {
101
+ return $this->internalWebPropertyId;
102
+ }
103
+ public function setKind($kind)
104
+ {
105
+ $this->kind = $kind;
106
+ }
107
+ public function getKind()
108
+ {
109
+ return $this->kind;
110
+ }
111
+ /**
112
+ * @param LinkedForeignAccount[]
113
+ */
114
+ public function setLinkedAdAccounts($linkedAdAccounts)
115
+ {
116
+ $this->linkedAdAccounts = $linkedAdAccounts;
117
+ }
118
+ /**
119
+ * @return LinkedForeignAccount[]
120
+ */
121
+ public function getLinkedAdAccounts()
122
+ {
123
+ return $this->linkedAdAccounts;
124
+ }
125
+ public function setLinkedViews($linkedViews)
126
+ {
127
+ $this->linkedViews = $linkedViews;
128
+ }
129
+ public function getLinkedViews()
130
+ {
131
+ return $this->linkedViews;
132
+ }
133
+ public function setName($name)
134
+ {
135
+ $this->name = $name;
136
+ }
137
+ public function getName()
138
+ {
139
+ return $this->name;
140
+ }
141
+ /**
142
+ * @param RemarketingAudienceStateBasedAudienceDefinition
143
+ */
144
+ public function setStateBasedAudienceDefinition(RemarketingAudienceStateBasedAudienceDefinition $stateBasedAudienceDefinition)
145
+ {
146
+ $this->stateBasedAudienceDefinition = $stateBasedAudienceDefinition;
147
+ }
148
+ /**
149
+ * @return RemarketingAudienceStateBasedAudienceDefinition
150
+ */
151
+ public function getStateBasedAudienceDefinition()
152
+ {
153
+ return $this->stateBasedAudienceDefinition;
154
+ }
155
+ public function setUpdated($updated)
156
+ {
157
+ $this->updated = $updated;
158
+ }
159
+ public function getUpdated()
160
+ {
161
+ return $this->updated;
162
+ }
163
+ public function setWebPropertyId($webPropertyId)
164
+ {
165
+ $this->webPropertyId = $webPropertyId;
166
+ }
167
+ public function getWebPropertyId()
168
+ {
169
+ return $this->webPropertyId;
170
+ }
171
+ }
172
+
173
+ // Adding a class alias for backwards compatibility with the previous class name.
174
+ class_alias(RemarketingAudience::class, 'WPMSGoogle_Service_Analytics_RemarketingAudience');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudienceAudienceDefinition.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RemarketingAudienceAudienceDefinition extends \WPMSGoogle\Model
21
+ {
22
+ protected $includeConditionsType = IncludeConditions::class;
23
+ protected $includeConditionsDataType = '';
24
+
25
+ /**
26
+ * @param IncludeConditions
27
+ */
28
+ public function setIncludeConditions(IncludeConditions $includeConditions)
29
+ {
30
+ $this->includeConditions = $includeConditions;
31
+ }
32
+ /**
33
+ * @return IncludeConditions
34
+ */
35
+ public function getIncludeConditions()
36
+ {
37
+ return $this->includeConditions;
38
+ }
39
+ }
40
+
41
+ // Adding a class alias for backwards compatibility with the previous class name.
42
+ class_alias(RemarketingAudienceAudienceDefinition::class, 'WPMSGoogle_Service_Analytics_RemarketingAudienceAudienceDefinition');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudienceStateBasedAudienceDefinition.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RemarketingAudienceStateBasedAudienceDefinition extends \WPMSGoogle\Model
21
+ {
22
+ protected $excludeConditionsType = RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions::class;
23
+ protected $excludeConditionsDataType = '';
24
+ protected $includeConditionsType = IncludeConditions::class;
25
+ protected $includeConditionsDataType = '';
26
+
27
+ /**
28
+ * @param RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions
29
+ */
30
+ public function setExcludeConditions(RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions $excludeConditions)
31
+ {
32
+ $this->excludeConditions = $excludeConditions;
33
+ }
34
+ /**
35
+ * @return RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions
36
+ */
37
+ public function getExcludeConditions()
38
+ {
39
+ return $this->excludeConditions;
40
+ }
41
+ /**
42
+ * @param IncludeConditions
43
+ */
44
+ public function setIncludeConditions(IncludeConditions $includeConditions)
45
+ {
46
+ $this->includeConditions = $includeConditions;
47
+ }
48
+ /**
49
+ * @return IncludeConditions
50
+ */
51
+ public function getIncludeConditions()
52
+ {
53
+ return $this->includeConditions;
54
+ }
55
+ }
56
+
57
+ // Adding a class alias for backwards compatibility with the previous class name.
58
+ class_alias(RemarketingAudienceStateBasedAudienceDefinition::class, 'WPMSGoogle_Service_Analytics_RemarketingAudienceStateBasedAudienceDefinition');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions extends \WPMSGoogle\Model
21
+ {
22
+ public $exclusionDuration;
23
+ public $segment;
24
+
25
+ public function setExclusionDuration($exclusionDuration)
26
+ {
27
+ $this->exclusionDuration = $exclusionDuration;
28
+ }
29
+ public function getExclusionDuration()
30
+ {
31
+ return $this->exclusionDuration;
32
+ }
33
+ public function setSegment($segment)
34
+ {
35
+ $this->segment = $segment;
36
+ }
37
+ public function getSegment()
38
+ {
39
+ return $this->segment;
40
+ }
41
+ }
42
+
43
+ // Adding a class alias for backwards compatibility with the previous class name.
44
+ class_alias(RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions::class, 'WPMSGoogle_Service_Analytics_RemarketingAudienceStateBasedAudienceDefinitionExcludeConditions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/RemarketingAudiences.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics;
19
+
20
+ class RemarketingAudiences extends \WPMSGoogle\Collection
21
+ {
22
+ protected $collection_key = 'items';
23
+ protected $itemsType = RemarketingAudience::class;
24
+ protected $itemsDataType = 'array';
25
+ public $itemsPerPage;
26
+ public $kind;
27
+ public $nextLink;
28
+ public $previousLink;
29
+ public $startIndex;
30
+ public $totalResults;
31
+ public $username;
32
+
33
+ /**
34
+ * @param RemarketingAudience[]
35
+ */
36
+ public function setItems($items)
37
+ {
38
+ $this->items = $items;
39
+ }
40
+ /**
41
+ * @return RemarketingAudience[]
42
+ */
43
+ public function getItems()
44
+ {
45
+ return $this->items;
46
+ }
47
+ public function setItemsPerPage($itemsPerPage)
48
+ {
49
+ $this->itemsPerPage = $itemsPerPage;
50
+ }
51
+ public function getItemsPerPage()
52
+ {
53
+ return $this->itemsPerPage;
54
+ }
55
+ public function setKind($kind)
56
+ {
57
+ $this->kind = $kind;
58
+ }
59
+ public function getKind()
60
+ {
61
+ return $this->kind;
62
+ }
63
+ public function setNextLink($nextLink)
64
+ {
65
+ $this->nextLink = $nextLink;
66
+ }
67
+ public function getNextLink()
68
+ {
69
+ return $this->nextLink;
70
+ }
71
+ public function setPreviousLink($previousLink)
72
+ {
73
+ $this->previousLink = $previousLink;
74
+ }
75
+ public function getPreviousLink()
76
+ {
77
+ return $this->previousLink;
78
+ }
79
+ public function setStartIndex($startIndex)
80
+ {
81
+ $this->startIndex = $startIndex;
82
+ }
83
+ public function getStartIndex()
84
+ {
85
+ return $this->startIndex;
86
+ }
87
+ public function setTotalResults($totalResults)
88
+ {
89
+ $this->totalResults = $totalResults;
90
+ }
91
+ public function getTotalResults()
92
+ {
93
+ return $this->totalResults;
94
+ }
95
+ public function setUsername($username)
96
+ {
97
+ $this->username = $username;
98
+ }
99
+ public function getUsername()
100
+ {
101
+ return $this->username;
102
+ }
103
+ }
104
+
105
+ // Adding a class alias for backwards compatibility with the previous class name.
106
+ class_alias(RemarketingAudiences::class, 'WPMSGoogle_Service_Analytics_RemarketingAudiences');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/Data.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ /**
21
+ * The "data" collection of methods.
22
+ * Typical usage is:
23
+ * <code>
24
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
25
+ * $data = $analyticsService->data;
26
+ * </code>
27
+ */
28
+ class Data extends \WPMSGoogle\Service\Resource
29
+ {
30
+ }
31
+
32
+ // Adding a class alias for backwards compatibility with the previous class name.
33
+ class_alias(Data::class, 'WPMSGoogle_Service_Analytics_Resource_Data');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/DataGa.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\GaData;
21
+
22
+ /**
23
+ * The "ga" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $ga = $analyticsService->ga;
28
+ * </code>
29
+ */
30
+ class DataGa extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * Returns Analytics data for a view (profile). (ga.get)
34
+ *
35
+ * @param string $ids Unique table ID for retrieving Analytics data. Table ID is
36
+ * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
37
+ * @param string $startDate Start date for fetching Analytics data. Requests can
38
+ * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g.,
39
+ * today, yesterday, or 7daysAgo). The default value is 7daysAgo.
40
+ * @param string $endDate End date for fetching Analytics data. Request can
41
+ * should specify an end date formatted as YYYY-MM-DD, or as a relative date
42
+ * (e.g., today, yesterday, or 7daysAgo). The default value is yesterday.
43
+ * @param string $metrics A comma-separated list of Analytics metrics. E.g.,
44
+ * 'ga:sessions,ga:pageviews'. At least one metric must be specified.
45
+ * @param array $optParams Optional parameters.
46
+ *
47
+ * @opt_param string dimensions A comma-separated list of Analytics dimensions.
48
+ * E.g., 'ga:browser,ga:city'.
49
+ * @opt_param string filters A comma-separated list of dimension or metric
50
+ * filters to be applied to Analytics data.
51
+ * @opt_param bool include-empty-rows The response will include empty rows if
52
+ * this parameter is set to true, the default is true
53
+ * @opt_param int max-results The maximum number of entries to include in this
54
+ * feed.
55
+ * @opt_param string output The selected format for the response. Default format
56
+ * is JSON.
57
+ * @opt_param string samplingLevel The desired sampling level.
58
+ * @opt_param string segment An Analytics segment to be applied to data.
59
+ * @opt_param string sort A comma-separated list of dimensions or metrics that
60
+ * determine the sort order for Analytics data.
61
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
62
+ * parameter as a pagination mechanism along with the max-results parameter.
63
+ * @return GaData
64
+ */
65
+ public function get($ids, $startDate, $endDate, $metrics, $optParams = [])
66
+ {
67
+ $params = ['ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics];
68
+ $params = array_merge($params, $optParams);
69
+ return $this->call('get', [$params], GaData::class);
70
+ }
71
+ }
72
+
73
+ // Adding a class alias for backwards compatibility with the previous class name.
74
+ class_alias(DataGa::class, 'WPMSGoogle_Service_Analytics_Resource_DataGa');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/DataMcf.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\McfData;
21
+
22
+ /**
23
+ * The "mcf" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $mcf = $analyticsService->mcf;
28
+ * </code>
29
+ */
30
+ class DataMcf extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * Returns Analytics Multi-Channel Funnels data for a view (profile). (mcf.get)
34
+ *
35
+ * @param string $ids Unique table ID for retrieving Analytics data. Table ID is
36
+ * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
37
+ * @param string $startDate Start date for fetching Analytics data. Requests can
38
+ * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g.,
39
+ * today, yesterday, or 7daysAgo). The default value is 7daysAgo.
40
+ * @param string $endDate End date for fetching Analytics data. Requests can
41
+ * specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g.,
42
+ * today, yesterday, or 7daysAgo). The default value is 7daysAgo.
43
+ * @param string $metrics A comma-separated list of Multi-Channel Funnels
44
+ * metrics. E.g., 'mcf:totalConversions,mcf:totalConversionValue'. At least one
45
+ * metric must be specified.
46
+ * @param array $optParams Optional parameters.
47
+ *
48
+ * @opt_param string dimensions A comma-separated list of Multi-Channel Funnels
49
+ * dimensions. E.g., 'mcf:source,mcf:medium'.
50
+ * @opt_param string filters A comma-separated list of dimension or metric
51
+ * filters to be applied to the Analytics data.
52
+ * @opt_param int max-results The maximum number of entries to include in this
53
+ * feed.
54
+ * @opt_param string samplingLevel The desired sampling level.
55
+ * @opt_param string sort A comma-separated list of dimensions or metrics that
56
+ * determine the sort order for the Analytics data.
57
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
58
+ * parameter as a pagination mechanism along with the max-results parameter.
59
+ * @return McfData
60
+ */
61
+ public function get($ids, $startDate, $endDate, $metrics, $optParams = [])
62
+ {
63
+ $params = ['ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics];
64
+ $params = array_merge($params, $optParams);
65
+ return $this->call('get', [$params], McfData::class);
66
+ }
67
+ }
68
+
69
+ // Adding a class alias for backwards compatibility with the previous class name.
70
+ class_alias(DataMcf::class, 'WPMSGoogle_Service_Analytics_Resource_DataMcf');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/DataRealtime.php ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\RealtimeData;
21
+
22
+ /**
23
+ * The "realtime" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $realtime = $analyticsService->realtime;
28
+ * </code>
29
+ */
30
+ class DataRealtime extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * Returns real time data for a view (profile). (realtime.get)
34
+ *
35
+ * @param string $ids Unique table ID for retrieving real time data. Table ID is
36
+ * of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
37
+ * @param string $metrics A comma-separated list of real time metrics. E.g.,
38
+ * 'rt:activeUsers'. At least one metric must be specified.
39
+ * @param array $optParams Optional parameters.
40
+ *
41
+ * @opt_param string dimensions A comma-separated list of real time dimensions.
42
+ * E.g., 'rt:medium,rt:city'.
43
+ * @opt_param string filters A comma-separated list of dimension or metric
44
+ * filters to be applied to real time data.
45
+ * @opt_param int max-results The maximum number of entries to include in this
46
+ * feed.
47
+ * @opt_param string sort A comma-separated list of dimensions or metrics that
48
+ * determine the sort order for real time data.
49
+ * @return RealtimeData
50
+ */
51
+ public function get($ids, $metrics, $optParams = [])
52
+ {
53
+ $params = ['ids' => $ids, 'metrics' => $metrics];
54
+ $params = array_merge($params, $optParams);
55
+ return $this->call('get', [$params], RealtimeData::class);
56
+ }
57
+ }
58
+
59
+ // Adding a class alias for backwards compatibility with the previous class name.
60
+ class_alias(DataRealtime::class, 'WPMSGoogle_Service_Analytics_Resource_DataRealtime');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/Management.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ /**
21
+ * The "management" collection of methods.
22
+ * Typical usage is:
23
+ * <code>
24
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
25
+ * $management = $analyticsService->management;
26
+ * </code>
27
+ */
28
+ class Management extends \WPMSGoogle\Service\Resource
29
+ {
30
+ }
31
+
32
+ // Adding a class alias for backwards compatibility with the previous class name.
33
+ class_alias(Management::class, 'WPMSGoogle_Service_Analytics_Resource_Management');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementAccountSummaries.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\AccountSummaries;
21
+
22
+ /**
23
+ * The "accountSummaries" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $accountSummaries = $analyticsService->accountSummaries;
28
+ * </code>
29
+ */
30
+ class ManagementAccountSummaries extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * Lists account summaries (lightweight tree comprised of
34
+ * accounts/properties/profiles) to which the user has access.
35
+ * (accountSummaries.listManagementAccountSummaries)
36
+ *
37
+ * @param array $optParams Optional parameters.
38
+ *
39
+ * @opt_param int max-results The maximum number of account summaries to include
40
+ * in this response, where the largest acceptable value is 1000.
41
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
42
+ * parameter as a pagination mechanism along with the max-results parameter.
43
+ * @return AccountSummaries
44
+ */
45
+ public function listManagementAccountSummaries($optParams = [])
46
+ {
47
+ $params = [];
48
+ $params = array_merge($params, $optParams);
49
+ return $this->call('list', [$params], AccountSummaries::class);
50
+ }
51
+ }
52
+
53
+ // Adding a class alias for backwards compatibility with the previous class name.
54
+ class_alias(ManagementAccountSummaries::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementAccountSummaries');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementAccountUserLinks.php ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\EntityUserLink;
21
+ use WPMSGoogle\Service\Analytics\EntityUserLinks;
22
+
23
+ /**
24
+ * The "accountUserLinks" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $accountUserLinks = $analyticsService->accountUserLinks;
29
+ * </code>
30
+ */
31
+ class ManagementAccountUserLinks extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Removes a user from the given account. (accountUserLinks.delete)
35
+ *
36
+ * @param string $accountId Account ID to delete the user link for.
37
+ * @param string $linkId Link ID to delete the user link for.
38
+ * @param array $optParams Optional parameters.
39
+ */
40
+ public function delete($accountId, $linkId, $optParams = [])
41
+ {
42
+ $params = ['accountId' => $accountId, 'linkId' => $linkId];
43
+ $params = array_merge($params, $optParams);
44
+ return $this->call('delete', [$params]);
45
+ }
46
+ /**
47
+ * Adds a new user to the given account. (accountUserLinks.insert)
48
+ *
49
+ * @param string $accountId Account ID to create the user link for.
50
+ * @param EntityUserLink $postBody
51
+ * @param array $optParams Optional parameters.
52
+ * @return EntityUserLink
53
+ */
54
+ public function insert($accountId, EntityUserLink $postBody, $optParams = [])
55
+ {
56
+ $params = ['accountId' => $accountId, 'postBody' => $postBody];
57
+ $params = array_merge($params, $optParams);
58
+ return $this->call('insert', [$params], EntityUserLink::class);
59
+ }
60
+ /**
61
+ * Lists account-user links for a given account.
62
+ * (accountUserLinks.listManagementAccountUserLinks)
63
+ *
64
+ * @param string $accountId Account ID to retrieve the user links for.
65
+ * @param array $optParams Optional parameters.
66
+ *
67
+ * @opt_param int max-results The maximum number of account-user links to
68
+ * include in this response.
69
+ * @opt_param int start-index An index of the first account-user link to
70
+ * retrieve. Use this parameter as a pagination mechanism along with the max-
71
+ * results parameter.
72
+ * @return EntityUserLinks
73
+ */
74
+ public function listManagementAccountUserLinks($accountId, $optParams = [])
75
+ {
76
+ $params = ['accountId' => $accountId];
77
+ $params = array_merge($params, $optParams);
78
+ return $this->call('list', [$params], EntityUserLinks::class);
79
+ }
80
+ /**
81
+ * Updates permissions for an existing user on the given account.
82
+ * (accountUserLinks.update)
83
+ *
84
+ * @param string $accountId Account ID to update the account-user link for.
85
+ * @param string $linkId Link ID to update the account-user link for.
86
+ * @param EntityUserLink $postBody
87
+ * @param array $optParams Optional parameters.
88
+ * @return EntityUserLink
89
+ */
90
+ public function update($accountId, $linkId, EntityUserLink $postBody, $optParams = [])
91
+ {
92
+ $params = ['accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody];
93
+ $params = array_merge($params, $optParams);
94
+ return $this->call('update', [$params], EntityUserLink::class);
95
+ }
96
+ }
97
+
98
+ // Adding a class alias for backwards compatibility with the previous class name.
99
+ class_alias(ManagementAccountUserLinks::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementAccountUserLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementAccounts.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Accounts;
21
+
22
+ /**
23
+ * The "accounts" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $accounts = $analyticsService->accounts;
28
+ * </code>
29
+ */
30
+ class ManagementAccounts extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * Lists all accounts to which the user has access.
34
+ * (accounts.listManagementAccounts)
35
+ *
36
+ * @param array $optParams Optional parameters.
37
+ *
38
+ * @opt_param int max-results The maximum number of accounts to include in this
39
+ * response.
40
+ * @opt_param int start-index An index of the first account to retrieve. Use
41
+ * this parameter as a pagination mechanism along with the max-results
42
+ * parameter.
43
+ * @return Accounts
44
+ */
45
+ public function listManagementAccounts($optParams = [])
46
+ {
47
+ $params = [];
48
+ $params = array_merge($params, $optParams);
49
+ return $this->call('list', [$params], Accounts::class);
50
+ }
51
+ }
52
+
53
+ // Adding a class alias for backwards compatibility with the previous class name.
54
+ class_alias(ManagementAccounts::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementAccounts');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementClientId.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\HashClientIdRequest;
21
+ use WPMSGoogle\Service\Analytics\HashClientIdResponse;
22
+
23
+ /**
24
+ * The "clientId" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $clientId = $analyticsService->clientId;
29
+ * </code>
30
+ */
31
+ class ManagementClientId extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Hashes the given Client ID. (clientId.hashClientId)
35
+ *
36
+ * @param HashClientIdRequest $postBody
37
+ * @param array $optParams Optional parameters.
38
+ * @return HashClientIdResponse
39
+ */
40
+ public function hashClientId(HashClientIdRequest $postBody, $optParams = [])
41
+ {
42
+ $params = ['postBody' => $postBody];
43
+ $params = array_merge($params, $optParams);
44
+ return $this->call('hashClientId', [$params], HashClientIdResponse::class);
45
+ }
46
+ }
47
+
48
+ // Adding a class alias for backwards compatibility with the previous class name.
49
+ class_alias(ManagementClientId::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementClientId');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementCustomDataSources.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\CustomDataSources;
21
+
22
+ /**
23
+ * The "customDataSources" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $customDataSources = $analyticsService->customDataSources;
28
+ * </code>
29
+ */
30
+ class ManagementCustomDataSources extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * List custom data sources to which the user has access.
34
+ * (customDataSources.listManagementCustomDataSources)
35
+ *
36
+ * @param string $accountId Account Id for the custom data sources to retrieve.
37
+ * @param string $webPropertyId Web property Id for the custom data sources to
38
+ * retrieve.
39
+ * @param array $optParams Optional parameters.
40
+ *
41
+ * @opt_param int max-results The maximum number of custom data sources to
42
+ * include in this response.
43
+ * @opt_param int start-index A 1-based index of the first custom data source to
44
+ * retrieve. Use this parameter as a pagination mechanism along with the max-
45
+ * results parameter.
46
+ * @return CustomDataSources
47
+ */
48
+ public function listManagementCustomDataSources($accountId, $webPropertyId, $optParams = [])
49
+ {
50
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
51
+ $params = array_merge($params, $optParams);
52
+ return $this->call('list', [$params], CustomDataSources::class);
53
+ }
54
+ }
55
+
56
+ // Adding a class alias for backwards compatibility with the previous class name.
57
+ class_alias(ManagementCustomDataSources::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementCustomDataSources');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementCustomDimensions.php ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\CustomDimension;
21
+ use WPMSGoogle\Service\Analytics\CustomDimensions;
22
+
23
+ /**
24
+ * The "customDimensions" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $customDimensions = $analyticsService->customDimensions;
29
+ * </code>
30
+ */
31
+ class ManagementCustomDimensions extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Get a custom dimension to which the user has access. (customDimensions.get)
35
+ *
36
+ * @param string $accountId Account ID for the custom dimension to retrieve.
37
+ * @param string $webPropertyId Web property ID for the custom dimension to
38
+ * retrieve.
39
+ * @param string $customDimensionId The ID of the custom dimension to retrieve.
40
+ * @param array $optParams Optional parameters.
41
+ * @return CustomDimension
42
+ */
43
+ public function get($accountId, $webPropertyId, $customDimensionId, $optParams = [])
44
+ {
45
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId];
46
+ $params = array_merge($params, $optParams);
47
+ return $this->call('get', [$params], CustomDimension::class);
48
+ }
49
+ /**
50
+ * Create a new custom dimension. (customDimensions.insert)
51
+ *
52
+ * @param string $accountId Account ID for the custom dimension to create.
53
+ * @param string $webPropertyId Web property ID for the custom dimension to
54
+ * create.
55
+ * @param CustomDimension $postBody
56
+ * @param array $optParams Optional parameters.
57
+ * @return CustomDimension
58
+ */
59
+ public function insert($accountId, $webPropertyId, CustomDimension $postBody, $optParams = [])
60
+ {
61
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody];
62
+ $params = array_merge($params, $optParams);
63
+ return $this->call('insert', [$params], CustomDimension::class);
64
+ }
65
+ /**
66
+ * Lists custom dimensions to which the user has access.
67
+ * (customDimensions.listManagementCustomDimensions)
68
+ *
69
+ * @param string $accountId Account ID for the custom dimensions to retrieve.
70
+ * @param string $webPropertyId Web property ID for the custom dimensions to
71
+ * retrieve.
72
+ * @param array $optParams Optional parameters.
73
+ *
74
+ * @opt_param int max-results The maximum number of custom dimensions to include
75
+ * in this response.
76
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
77
+ * parameter as a pagination mechanism along with the max-results parameter.
78
+ * @return CustomDimensions
79
+ */
80
+ public function listManagementCustomDimensions($accountId, $webPropertyId, $optParams = [])
81
+ {
82
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
83
+ $params = array_merge($params, $optParams);
84
+ return $this->call('list', [$params], CustomDimensions::class);
85
+ }
86
+ /**
87
+ * Updates an existing custom dimension. This method supports patch semantics.
88
+ * (customDimensions.patch)
89
+ *
90
+ * @param string $accountId Account ID for the custom dimension to update.
91
+ * @param string $webPropertyId Web property ID for the custom dimension to
92
+ * update.
93
+ * @param string $customDimensionId Custom dimension ID for the custom dimension
94
+ * to update.
95
+ * @param CustomDimension $postBody
96
+ * @param array $optParams Optional parameters.
97
+ *
98
+ * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
99
+ * warnings related to the custom dimension being linked to a custom data source
100
+ * / data set.
101
+ * @return CustomDimension
102
+ */
103
+ public function patch($accountId, $webPropertyId, $customDimensionId, CustomDimension $postBody, $optParams = [])
104
+ {
105
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody];
106
+ $params = array_merge($params, $optParams);
107
+ return $this->call('patch', [$params], CustomDimension::class);
108
+ }
109
+ /**
110
+ * Updates an existing custom dimension. (customDimensions.update)
111
+ *
112
+ * @param string $accountId Account ID for the custom dimension to update.
113
+ * @param string $webPropertyId Web property ID for the custom dimension to
114
+ * update.
115
+ * @param string $customDimensionId Custom dimension ID for the custom dimension
116
+ * to update.
117
+ * @param CustomDimension $postBody
118
+ * @param array $optParams Optional parameters.
119
+ *
120
+ * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
121
+ * warnings related to the custom dimension being linked to a custom data source
122
+ * / data set.
123
+ * @return CustomDimension
124
+ */
125
+ public function update($accountId, $webPropertyId, $customDimensionId, CustomDimension $postBody, $optParams = [])
126
+ {
127
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody];
128
+ $params = array_merge($params, $optParams);
129
+ return $this->call('update', [$params], CustomDimension::class);
130
+ }
131
+ }
132
+
133
+ // Adding a class alias for backwards compatibility with the previous class name.
134
+ class_alias(ManagementCustomDimensions::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementCustomDimensions');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementCustomMetrics.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\CustomMetric;
21
+ use WPMSGoogle\Service\Analytics\CustomMetrics;
22
+
23
+ /**
24
+ * The "customMetrics" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $customMetrics = $analyticsService->customMetrics;
29
+ * </code>
30
+ */
31
+ class ManagementCustomMetrics extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Get a custom metric to which the user has access. (customMetrics.get)
35
+ *
36
+ * @param string $accountId Account ID for the custom metric to retrieve.
37
+ * @param string $webPropertyId Web property ID for the custom metric to
38
+ * retrieve.
39
+ * @param string $customMetricId The ID of the custom metric to retrieve.
40
+ * @param array $optParams Optional parameters.
41
+ * @return CustomMetric
42
+ */
43
+ public function get($accountId, $webPropertyId, $customMetricId, $optParams = [])
44
+ {
45
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId];
46
+ $params = array_merge($params, $optParams);
47
+ return $this->call('get', [$params], CustomMetric::class);
48
+ }
49
+ /**
50
+ * Create a new custom metric. (customMetrics.insert)
51
+ *
52
+ * @param string $accountId Account ID for the custom metric to create.
53
+ * @param string $webPropertyId Web property ID for the custom dimension to
54
+ * create.
55
+ * @param CustomMetric $postBody
56
+ * @param array $optParams Optional parameters.
57
+ * @return CustomMetric
58
+ */
59
+ public function insert($accountId, $webPropertyId, CustomMetric $postBody, $optParams = [])
60
+ {
61
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody];
62
+ $params = array_merge($params, $optParams);
63
+ return $this->call('insert', [$params], CustomMetric::class);
64
+ }
65
+ /**
66
+ * Lists custom metrics to which the user has access.
67
+ * (customMetrics.listManagementCustomMetrics)
68
+ *
69
+ * @param string $accountId Account ID for the custom metrics to retrieve.
70
+ * @param string $webPropertyId Web property ID for the custom metrics to
71
+ * retrieve.
72
+ * @param array $optParams Optional parameters.
73
+ *
74
+ * @opt_param int max-results The maximum number of custom metrics to include in
75
+ * this response.
76
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
77
+ * parameter as a pagination mechanism along with the max-results parameter.
78
+ * @return CustomMetrics
79
+ */
80
+ public function listManagementCustomMetrics($accountId, $webPropertyId, $optParams = [])
81
+ {
82
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
83
+ $params = array_merge($params, $optParams);
84
+ return $this->call('list', [$params], CustomMetrics::class);
85
+ }
86
+ /**
87
+ * Updates an existing custom metric. This method supports patch semantics.
88
+ * (customMetrics.patch)
89
+ *
90
+ * @param string $accountId Account ID for the custom metric to update.
91
+ * @param string $webPropertyId Web property ID for the custom metric to update.
92
+ * @param string $customMetricId Custom metric ID for the custom metric to
93
+ * update.
94
+ * @param CustomMetric $postBody
95
+ * @param array $optParams Optional parameters.
96
+ *
97
+ * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
98
+ * warnings related to the custom metric being linked to a custom data source /
99
+ * data set.
100
+ * @return CustomMetric
101
+ */
102
+ public function patch($accountId, $webPropertyId, $customMetricId, CustomMetric $postBody, $optParams = [])
103
+ {
104
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody];
105
+ $params = array_merge($params, $optParams);
106
+ return $this->call('patch', [$params], CustomMetric::class);
107
+ }
108
+ /**
109
+ * Updates an existing custom metric. (customMetrics.update)
110
+ *
111
+ * @param string $accountId Account ID for the custom metric to update.
112
+ * @param string $webPropertyId Web property ID for the custom metric to update.
113
+ * @param string $customMetricId Custom metric ID for the custom metric to
114
+ * update.
115
+ * @param CustomMetric $postBody
116
+ * @param array $optParams Optional parameters.
117
+ *
118
+ * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
119
+ * warnings related to the custom metric being linked to a custom data source /
120
+ * data set.
121
+ * @return CustomMetric
122
+ */
123
+ public function update($accountId, $webPropertyId, $customMetricId, CustomMetric $postBody, $optParams = [])
124
+ {
125
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody];
126
+ $params = array_merge($params, $optParams);
127
+ return $this->call('update', [$params], CustomMetric::class);
128
+ }
129
+ }
130
+
131
+ // Adding a class alias for backwards compatibility with the previous class name.
132
+ class_alias(ManagementCustomMetrics::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementCustomMetrics');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementExperiments.php ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Experiment;
21
+ use WPMSGoogle\Service\Analytics\Experiments;
22
+
23
+ /**
24
+ * The "experiments" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $experiments = $analyticsService->experiments;
29
+ * </code>
30
+ */
31
+ class ManagementExperiments extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Delete an experiment. (experiments.delete)
35
+ *
36
+ * @param string $accountId Account ID to which the experiment belongs
37
+ * @param string $webPropertyId Web property ID to which the experiment belongs
38
+ * @param string $profileId View (Profile) ID to which the experiment belongs
39
+ * @param string $experimentId ID of the experiment to delete
40
+ * @param array $optParams Optional parameters.
41
+ */
42
+ public function delete($accountId, $webPropertyId, $profileId, $experimentId, $optParams = [])
43
+ {
44
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId];
45
+ $params = array_merge($params, $optParams);
46
+ return $this->call('delete', [$params]);
47
+ }
48
+ /**
49
+ * Returns an experiment to which the user has access. (experiments.get)
50
+ *
51
+ * @param string $accountId Account ID to retrieve the experiment for.
52
+ * @param string $webPropertyId Web property ID to retrieve the experiment for.
53
+ * @param string $profileId View (Profile) ID to retrieve the experiment for.
54
+ * @param string $experimentId Experiment ID to retrieve the experiment for.
55
+ * @param array $optParams Optional parameters.
56
+ * @return Experiment
57
+ */
58
+ public function get($accountId, $webPropertyId, $profileId, $experimentId, $optParams = [])
59
+ {
60
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId];
61
+ $params = array_merge($params, $optParams);
62
+ return $this->call('get', [$params], Experiment::class);
63
+ }
64
+ /**
65
+ * Create a new experiment. (experiments.insert)
66
+ *
67
+ * @param string $accountId Account ID to create the experiment for.
68
+ * @param string $webPropertyId Web property ID to create the experiment for.
69
+ * @param string $profileId View (Profile) ID to create the experiment for.
70
+ * @param Experiment $postBody
71
+ * @param array $optParams Optional parameters.
72
+ * @return Experiment
73
+ */
74
+ public function insert($accountId, $webPropertyId, $profileId, Experiment $postBody, $optParams = [])
75
+ {
76
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
77
+ $params = array_merge($params, $optParams);
78
+ return $this->call('insert', [$params], Experiment::class);
79
+ }
80
+ /**
81
+ * Lists experiments to which the user has access.
82
+ * (experiments.listManagementExperiments)
83
+ *
84
+ * @param string $accountId Account ID to retrieve experiments for.
85
+ * @param string $webPropertyId Web property ID to retrieve experiments for.
86
+ * @param string $profileId View (Profile) ID to retrieve experiments for.
87
+ * @param array $optParams Optional parameters.
88
+ *
89
+ * @opt_param int max-results The maximum number of experiments to include in
90
+ * this response.
91
+ * @opt_param int start-index An index of the first experiment to retrieve. Use
92
+ * this parameter as a pagination mechanism along with the max-results
93
+ * parameter.
94
+ * @return Experiments
95
+ */
96
+ public function listManagementExperiments($accountId, $webPropertyId, $profileId, $optParams = [])
97
+ {
98
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
99
+ $params = array_merge($params, $optParams);
100
+ return $this->call('list', [$params], Experiments::class);
101
+ }
102
+ /**
103
+ * Update an existing experiment. This method supports patch semantics.
104
+ * (experiments.patch)
105
+ *
106
+ * @param string $accountId Account ID of the experiment to update.
107
+ * @param string $webPropertyId Web property ID of the experiment to update.
108
+ * @param string $profileId View (Profile) ID of the experiment to update.
109
+ * @param string $experimentId Experiment ID of the experiment to update.
110
+ * @param Experiment $postBody
111
+ * @param array $optParams Optional parameters.
112
+ * @return Experiment
113
+ */
114
+ public function patch($accountId, $webPropertyId, $profileId, $experimentId, Experiment $postBody, $optParams = [])
115
+ {
116
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody];
117
+ $params = array_merge($params, $optParams);
118
+ return $this->call('patch', [$params], Experiment::class);
119
+ }
120
+ /**
121
+ * Update an existing experiment. (experiments.update)
122
+ *
123
+ * @param string $accountId Account ID of the experiment to update.
124
+ * @param string $webPropertyId Web property ID of the experiment to update.
125
+ * @param string $profileId View (Profile) ID of the experiment to update.
126
+ * @param string $experimentId Experiment ID of the experiment to update.
127
+ * @param Experiment $postBody
128
+ * @param array $optParams Optional parameters.
129
+ * @return Experiment
130
+ */
131
+ public function update($accountId, $webPropertyId, $profileId, $experimentId, Experiment $postBody, $optParams = [])
132
+ {
133
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody];
134
+ $params = array_merge($params, $optParams);
135
+ return $this->call('update', [$params], Experiment::class);
136
+ }
137
+ }
138
+
139
+ // Adding a class alias for backwards compatibility with the previous class name.
140
+ class_alias(ManagementExperiments::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementExperiments');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementFilters.php ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Filter;
21
+ use WPMSGoogle\Service\Analytics\Filters;
22
+
23
+ /**
24
+ * The "filters" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $filters = $analyticsService->filters;
29
+ * </code>
30
+ */
31
+ class ManagementFilters extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Delete a filter. (filters.delete)
35
+ *
36
+ * @param string $accountId Account ID to delete the filter for.
37
+ * @param string $filterId ID of the filter to be deleted.
38
+ * @param array $optParams Optional parameters.
39
+ * @return Filter
40
+ */
41
+ public function delete($accountId, $filterId, $optParams = [])
42
+ {
43
+ $params = ['accountId' => $accountId, 'filterId' => $filterId];
44
+ $params = array_merge($params, $optParams);
45
+ return $this->call('delete', [$params], Filter::class);
46
+ }
47
+ /**
48
+ * Returns filters to which the user has access. (filters.get)
49
+ *
50
+ * @param string $accountId Account ID to retrieve filters for.
51
+ * @param string $filterId Filter ID to retrieve filters for.
52
+ * @param array $optParams Optional parameters.
53
+ * @return Filter
54
+ */
55
+ public function get($accountId, $filterId, $optParams = [])
56
+ {
57
+ $params = ['accountId' => $accountId, 'filterId' => $filterId];
58
+ $params = array_merge($params, $optParams);
59
+ return $this->call('get', [$params], Filter::class);
60
+ }
61
+ /**
62
+ * Create a new filter. (filters.insert)
63
+ *
64
+ * @param string $accountId Account ID to create filter for.
65
+ * @param Filter $postBody
66
+ * @param array $optParams Optional parameters.
67
+ * @return Filter
68
+ */
69
+ public function insert($accountId, Filter $postBody, $optParams = [])
70
+ {
71
+ $params = ['accountId' => $accountId, 'postBody' => $postBody];
72
+ $params = array_merge($params, $optParams);
73
+ return $this->call('insert', [$params], Filter::class);
74
+ }
75
+ /**
76
+ * Lists all filters for an account (filters.listManagementFilters)
77
+ *
78
+ * @param string $accountId Account ID to retrieve filters for.
79
+ * @param array $optParams Optional parameters.
80
+ *
81
+ * @opt_param int max-results The maximum number of filters to include in this
82
+ * response.
83
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
84
+ * parameter as a pagination mechanism along with the max-results parameter.
85
+ * @return Filters
86
+ */
87
+ public function listManagementFilters($accountId, $optParams = [])
88
+ {
89
+ $params = ['accountId' => $accountId];
90
+ $params = array_merge($params, $optParams);
91
+ return $this->call('list', [$params], Filters::class);
92
+ }
93
+ /**
94
+ * Updates an existing filter. This method supports patch semantics.
95
+ * (filters.patch)
96
+ *
97
+ * @param string $accountId Account ID to which the filter belongs.
98
+ * @param string $filterId ID of the filter to be updated.
99
+ * @param Filter $postBody
100
+ * @param array $optParams Optional parameters.
101
+ * @return Filter
102
+ */
103
+ public function patch($accountId, $filterId, Filter $postBody, $optParams = [])
104
+ {
105
+ $params = ['accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody];
106
+ $params = array_merge($params, $optParams);
107
+ return $this->call('patch', [$params], Filter::class);
108
+ }
109
+ /**
110
+ * Updates an existing filter. (filters.update)
111
+ *
112
+ * @param string $accountId Account ID to which the filter belongs.
113
+ * @param string $filterId ID of the filter to be updated.
114
+ * @param Filter $postBody
115
+ * @param array $optParams Optional parameters.
116
+ * @return Filter
117
+ */
118
+ public function update($accountId, $filterId, Filter $postBody, $optParams = [])
119
+ {
120
+ $params = ['accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody];
121
+ $params = array_merge($params, $optParams);
122
+ return $this->call('update', [$params], Filter::class);
123
+ }
124
+ }
125
+
126
+ // Adding a class alias for backwards compatibility with the previous class name.
127
+ class_alias(ManagementFilters::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementFilters');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementGoals.php ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Goal;
21
+ use WPMSGoogle\Service\Analytics\Goals;
22
+
23
+ /**
24
+ * The "goals" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $goals = $analyticsService->goals;
29
+ * </code>
30
+ */
31
+ class ManagementGoals extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Gets a goal to which the user has access. (goals.get)
35
+ *
36
+ * @param string $accountId Account ID to retrieve the goal for.
37
+ * @param string $webPropertyId Web property ID to retrieve the goal for.
38
+ * @param string $profileId View (Profile) ID to retrieve the goal for.
39
+ * @param string $goalId Goal ID to retrieve the goal for.
40
+ * @param array $optParams Optional parameters.
41
+ * @return Goal
42
+ */
43
+ public function get($accountId, $webPropertyId, $profileId, $goalId, $optParams = [])
44
+ {
45
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId];
46
+ $params = array_merge($params, $optParams);
47
+ return $this->call('get', [$params], Goal::class);
48
+ }
49
+ /**
50
+ * Create a new goal. (goals.insert)
51
+ *
52
+ * @param string $accountId Account ID to create the goal for.
53
+ * @param string $webPropertyId Web property ID to create the goal for.
54
+ * @param string $profileId View (Profile) ID to create the goal for.
55
+ * @param Goal $postBody
56
+ * @param array $optParams Optional parameters.
57
+ * @return Goal
58
+ */
59
+ public function insert($accountId, $webPropertyId, $profileId, Goal $postBody, $optParams = [])
60
+ {
61
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
62
+ $params = array_merge($params, $optParams);
63
+ return $this->call('insert', [$params], Goal::class);
64
+ }
65
+ /**
66
+ * Lists goals to which the user has access. (goals.listManagementGoals)
67
+ *
68
+ * @param string $accountId Account ID to retrieve goals for. Can either be a
69
+ * specific account ID or '~all', which refers to all the accounts that user has
70
+ * access to.
71
+ * @param string $webPropertyId Web property ID to retrieve goals for. Can
72
+ * either be a specific web property ID or '~all', which refers to all the web
73
+ * properties that user has access to.
74
+ * @param string $profileId View (Profile) ID to retrieve goals for. Can either
75
+ * be a specific view (profile) ID or '~all', which refers to all the views
76
+ * (profiles) that user has access to.
77
+ * @param array $optParams Optional parameters.
78
+ *
79
+ * @opt_param int max-results The maximum number of goals to include in this
80
+ * response.
81
+ * @opt_param int start-index An index of the first goal to retrieve. Use this
82
+ * parameter as a pagination mechanism along with the max-results parameter.
83
+ * @return Goals
84
+ */
85
+ public function listManagementGoals($accountId, $webPropertyId, $profileId, $optParams = [])
86
+ {
87
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
88
+ $params = array_merge($params, $optParams);
89
+ return $this->call('list', [$params], Goals::class);
90
+ }
91
+ /**
92
+ * Updates an existing goal. This method supports patch semantics. (goals.patch)
93
+ *
94
+ * @param string $accountId Account ID to update the goal.
95
+ * @param string $webPropertyId Web property ID to update the goal.
96
+ * @param string $profileId View (Profile) ID to update the goal.
97
+ * @param string $goalId Index of the goal to be updated.
98
+ * @param Goal $postBody
99
+ * @param array $optParams Optional parameters.
100
+ * @return Goal
101
+ */
102
+ public function patch($accountId, $webPropertyId, $profileId, $goalId, Goal $postBody, $optParams = [])
103
+ {
104
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody];
105
+ $params = array_merge($params, $optParams);
106
+ return $this->call('patch', [$params], Goal::class);
107
+ }
108
+ /**
109
+ * Updates an existing goal. (goals.update)
110
+ *
111
+ * @param string $accountId Account ID to update the goal.
112
+ * @param string $webPropertyId Web property ID to update the goal.
113
+ * @param string $profileId View (Profile) ID to update the goal.
114
+ * @param string $goalId Index of the goal to be updated.
115
+ * @param Goal $postBody
116
+ * @param array $optParams Optional parameters.
117
+ * @return Goal
118
+ */
119
+ public function update($accountId, $webPropertyId, $profileId, $goalId, Goal $postBody, $optParams = [])
120
+ {
121
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody];
122
+ $params = array_merge($params, $optParams);
123
+ return $this->call('update', [$params], Goal::class);
124
+ }
125
+ }
126
+
127
+ // Adding a class alias for backwards compatibility with the previous class name.
128
+ class_alias(ManagementGoals::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementGoals');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementProfileFilterLinks.php ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\ProfileFilterLink;
21
+ use WPMSGoogle\Service\Analytics\ProfileFilterLinks;
22
+
23
+ /**
24
+ * The "profileFilterLinks" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $profileFilterLinks = $analyticsService->profileFilterLinks;
29
+ * </code>
30
+ */
31
+ class ManagementProfileFilterLinks extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Delete a profile filter link. (profileFilterLinks.delete)
35
+ *
36
+ * @param string $accountId Account ID to which the profile filter link belongs.
37
+ * @param string $webPropertyId Web property Id to which the profile filter link
38
+ * belongs.
39
+ * @param string $profileId Profile ID to which the filter link belongs.
40
+ * @param string $linkId ID of the profile filter link to delete.
41
+ * @param array $optParams Optional parameters.
42
+ */
43
+ public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = [])
44
+ {
45
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId];
46
+ $params = array_merge($params, $optParams);
47
+ return $this->call('delete', [$params]);
48
+ }
49
+ /**
50
+ * Returns a single profile filter link. (profileFilterLinks.get)
51
+ *
52
+ * @param string $accountId Account ID to retrieve profile filter link for.
53
+ * @param string $webPropertyId Web property Id to retrieve profile filter link
54
+ * for.
55
+ * @param string $profileId Profile ID to retrieve filter link for.
56
+ * @param string $linkId ID of the profile filter link.
57
+ * @param array $optParams Optional parameters.
58
+ * @return ProfileFilterLink
59
+ */
60
+ public function get($accountId, $webPropertyId, $profileId, $linkId, $optParams = [])
61
+ {
62
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId];
63
+ $params = array_merge($params, $optParams);
64
+ return $this->call('get', [$params], ProfileFilterLink::class);
65
+ }
66
+ /**
67
+ * Create a new profile filter link. (profileFilterLinks.insert)
68
+ *
69
+ * @param string $accountId Account ID to create profile filter link for.
70
+ * @param string $webPropertyId Web property Id to create profile filter link
71
+ * for.
72
+ * @param string $profileId Profile ID to create filter link for.
73
+ * @param ProfileFilterLink $postBody
74
+ * @param array $optParams Optional parameters.
75
+ * @return ProfileFilterLink
76
+ */
77
+ public function insert($accountId, $webPropertyId, $profileId, ProfileFilterLink $postBody, $optParams = [])
78
+ {
79
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
80
+ $params = array_merge($params, $optParams);
81
+ return $this->call('insert', [$params], ProfileFilterLink::class);
82
+ }
83
+ /**
84
+ * Lists all profile filter links for a profile.
85
+ * (profileFilterLinks.listManagementProfileFilterLinks)
86
+ *
87
+ * @param string $accountId Account ID to retrieve profile filter links for.
88
+ * @param string $webPropertyId Web property Id for profile filter links for.
89
+ * Can either be a specific web property ID or '~all', which refers to all the
90
+ * web properties that user has access to.
91
+ * @param string $profileId Profile ID to retrieve filter links for. Can either
92
+ * be a specific profile ID or '~all', which refers to all the profiles that
93
+ * user has access to.
94
+ * @param array $optParams Optional parameters.
95
+ *
96
+ * @opt_param int max-results The maximum number of profile filter links to
97
+ * include in this response.
98
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
99
+ * parameter as a pagination mechanism along with the max-results parameter.
100
+ * @return ProfileFilterLinks
101
+ */
102
+ public function listManagementProfileFilterLinks($accountId, $webPropertyId, $profileId, $optParams = [])
103
+ {
104
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
105
+ $params = array_merge($params, $optParams);
106
+ return $this->call('list', [$params], ProfileFilterLinks::class);
107
+ }
108
+ /**
109
+ * Update an existing profile filter link. This method supports patch semantics.
110
+ * (profileFilterLinks.patch)
111
+ *
112
+ * @param string $accountId Account ID to which profile filter link belongs.
113
+ * @param string $webPropertyId Web property Id to which profile filter link
114
+ * belongs
115
+ * @param string $profileId Profile ID to which filter link belongs
116
+ * @param string $linkId ID of the profile filter link to be updated.
117
+ * @param ProfileFilterLink $postBody
118
+ * @param array $optParams Optional parameters.
119
+ * @return ProfileFilterLink
120
+ */
121
+ public function patch($accountId, $webPropertyId, $profileId, $linkId, ProfileFilterLink $postBody, $optParams = [])
122
+ {
123
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody];
124
+ $params = array_merge($params, $optParams);
125
+ return $this->call('patch', [$params], ProfileFilterLink::class);
126
+ }
127
+ /**
128
+ * Update an existing profile filter link. (profileFilterLinks.update)
129
+ *
130
+ * @param string $accountId Account ID to which profile filter link belongs.
131
+ * @param string $webPropertyId Web property Id to which profile filter link
132
+ * belongs
133
+ * @param string $profileId Profile ID to which filter link belongs
134
+ * @param string $linkId ID of the profile filter link to be updated.
135
+ * @param ProfileFilterLink $postBody
136
+ * @param array $optParams Optional parameters.
137
+ * @return ProfileFilterLink
138
+ */
139
+ public function update($accountId, $webPropertyId, $profileId, $linkId, ProfileFilterLink $postBody, $optParams = [])
140
+ {
141
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody];
142
+ $params = array_merge($params, $optParams);
143
+ return $this->call('update', [$params], ProfileFilterLink::class);
144
+ }
145
+ }
146
+
147
+ // Adding a class alias for backwards compatibility with the previous class name.
148
+ class_alias(ManagementProfileFilterLinks::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementProfileFilterLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementProfileUserLinks.php ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\EntityUserLink;
21
+ use WPMSGoogle\Service\Analytics\EntityUserLinks;
22
+
23
+ /**
24
+ * The "profileUserLinks" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $profileUserLinks = $analyticsService->profileUserLinks;
29
+ * </code>
30
+ */
31
+ class ManagementProfileUserLinks extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Removes a user from the given view (profile). (profileUserLinks.delete)
35
+ *
36
+ * @param string $accountId Account ID to delete the user link for.
37
+ * @param string $webPropertyId Web Property ID to delete the user link for.
38
+ * @param string $profileId View (Profile) ID to delete the user link for.
39
+ * @param string $linkId Link ID to delete the user link for.
40
+ * @param array $optParams Optional parameters.
41
+ */
42
+ public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = [])
43
+ {
44
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId];
45
+ $params = array_merge($params, $optParams);
46
+ return $this->call('delete', [$params]);
47
+ }
48
+ /**
49
+ * Adds a new user to the given view (profile). (profileUserLinks.insert)
50
+ *
51
+ * @param string $accountId Account ID to create the user link for.
52
+ * @param string $webPropertyId Web Property ID to create the user link for.
53
+ * @param string $profileId View (Profile) ID to create the user link for.
54
+ * @param EntityUserLink $postBody
55
+ * @param array $optParams Optional parameters.
56
+ * @return EntityUserLink
57
+ */
58
+ public function insert($accountId, $webPropertyId, $profileId, EntityUserLink $postBody, $optParams = [])
59
+ {
60
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
61
+ $params = array_merge($params, $optParams);
62
+ return $this->call('insert', [$params], EntityUserLink::class);
63
+ }
64
+ /**
65
+ * Lists profile-user links for a given view (profile).
66
+ * (profileUserLinks.listManagementProfileUserLinks)
67
+ *
68
+ * @param string $accountId Account ID which the given view (profile) belongs
69
+ * to.
70
+ * @param string $webPropertyId Web Property ID which the given view (profile)
71
+ * belongs to. Can either be a specific web property ID or '~all', which refers
72
+ * to all the web properties that user has access to.
73
+ * @param string $profileId View (Profile) ID to retrieve the profile-user links
74
+ * for. Can either be a specific profile ID or '~all', which refers to all the
75
+ * profiles that user has access to.
76
+ * @param array $optParams Optional parameters.
77
+ *
78
+ * @opt_param int max-results The maximum number of profile-user links to
79
+ * include in this response.
80
+ * @opt_param int start-index An index of the first profile-user link to
81
+ * retrieve. Use this parameter as a pagination mechanism along with the max-
82
+ * results parameter.
83
+ * @return EntityUserLinks
84
+ */
85
+ public function listManagementProfileUserLinks($accountId, $webPropertyId, $profileId, $optParams = [])
86
+ {
87
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
88
+ $params = array_merge($params, $optParams);
89
+ return $this->call('list', [$params], EntityUserLinks::class);
90
+ }
91
+ /**
92
+ * Updates permissions for an existing user on the given view (profile).
93
+ * (profileUserLinks.update)
94
+ *
95
+ * @param string $accountId Account ID to update the user link for.
96
+ * @param string $webPropertyId Web Property ID to update the user link for.
97
+ * @param string $profileId View (Profile ID) to update the user link for.
98
+ * @param string $linkId Link ID to update the user link for.
99
+ * @param EntityUserLink $postBody
100
+ * @param array $optParams Optional parameters.
101
+ * @return EntityUserLink
102
+ */
103
+ public function update($accountId, $webPropertyId, $profileId, $linkId, EntityUserLink $postBody, $optParams = [])
104
+ {
105
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody];
106
+ $params = array_merge($params, $optParams);
107
+ return $this->call('update', [$params], EntityUserLink::class);
108
+ }
109
+ }
110
+
111
+ // Adding a class alias for backwards compatibility with the previous class name.
112
+ class_alias(ManagementProfileUserLinks::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementProfileUserLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementProfiles.php ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Profile;
21
+ use WPMSGoogle\Service\Analytics\Profiles;
22
+
23
+ /**
24
+ * The "profiles" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $profiles = $analyticsService->profiles;
29
+ * </code>
30
+ */
31
+ class ManagementProfiles extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Deletes a view (profile). (profiles.delete)
35
+ *
36
+ * @param string $accountId Account ID to delete the view (profile) for.
37
+ * @param string $webPropertyId Web property ID to delete the view (profile)
38
+ * for.
39
+ * @param string $profileId ID of the view (profile) to be deleted.
40
+ * @param array $optParams Optional parameters.
41
+ */
42
+ public function delete($accountId, $webPropertyId, $profileId, $optParams = [])
43
+ {
44
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
45
+ $params = array_merge($params, $optParams);
46
+ return $this->call('delete', [$params]);
47
+ }
48
+ /**
49
+ * Gets a view (profile) to which the user has access. (profiles.get)
50
+ *
51
+ * @param string $accountId Account ID to retrieve the view (profile) for.
52
+ * @param string $webPropertyId Web property ID to retrieve the view (profile)
53
+ * for.
54
+ * @param string $profileId View (Profile) ID to retrieve the view (profile)
55
+ * for.
56
+ * @param array $optParams Optional parameters.
57
+ * @return Profile
58
+ */
59
+ public function get($accountId, $webPropertyId, $profileId, $optParams = [])
60
+ {
61
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
62
+ $params = array_merge($params, $optParams);
63
+ return $this->call('get', [$params], Profile::class);
64
+ }
65
+ /**
66
+ * Create a new view (profile). (profiles.insert)
67
+ *
68
+ * @param string $accountId Account ID to create the view (profile) for.
69
+ * @param string $webPropertyId Web property ID to create the view (profile)
70
+ * for.
71
+ * @param Profile $postBody
72
+ * @param array $optParams Optional parameters.
73
+ * @return Profile
74
+ */
75
+ public function insert($accountId, $webPropertyId, Profile $postBody, $optParams = [])
76
+ {
77
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody];
78
+ $params = array_merge($params, $optParams);
79
+ return $this->call('insert', [$params], Profile::class);
80
+ }
81
+ /**
82
+ * Lists views (profiles) to which the user has access.
83
+ * (profiles.listManagementProfiles)
84
+ *
85
+ * @param string $accountId Account ID for the view (profiles) to retrieve. Can
86
+ * either be a specific account ID or '~all', which refers to all the accounts
87
+ * to which the user has access.
88
+ * @param string $webPropertyId Web property ID for the views (profiles) to
89
+ * retrieve. Can either be a specific web property ID or '~all', which refers to
90
+ * all the web properties to which the user has access.
91
+ * @param array $optParams Optional parameters.
92
+ *
93
+ * @opt_param int max-results The maximum number of views (profiles) to include
94
+ * in this response.
95
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
96
+ * parameter as a pagination mechanism along with the max-results parameter.
97
+ * @return Profiles
98
+ */
99
+ public function listManagementProfiles($accountId, $webPropertyId, $optParams = [])
100
+ {
101
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
102
+ $params = array_merge($params, $optParams);
103
+ return $this->call('list', [$params], Profiles::class);
104
+ }
105
+ /**
106
+ * Updates an existing view (profile). This method supports patch semantics.
107
+ * (profiles.patch)
108
+ *
109
+ * @param string $accountId Account ID to which the view (profile) belongs
110
+ * @param string $webPropertyId Web property ID to which the view (profile)
111
+ * belongs
112
+ * @param string $profileId ID of the view (profile) to be updated.
113
+ * @param Profile $postBody
114
+ * @param array $optParams Optional parameters.
115
+ * @return Profile
116
+ */
117
+ public function patch($accountId, $webPropertyId, $profileId, Profile $postBody, $optParams = [])
118
+ {
119
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
120
+ $params = array_merge($params, $optParams);
121
+ return $this->call('patch', [$params], Profile::class);
122
+ }
123
+ /**
124
+ * Updates an existing view (profile). (profiles.update)
125
+ *
126
+ * @param string $accountId Account ID to which the view (profile) belongs
127
+ * @param string $webPropertyId Web property ID to which the view (profile)
128
+ * belongs
129
+ * @param string $profileId ID of the view (profile) to be updated.
130
+ * @param Profile $postBody
131
+ * @param array $optParams Optional parameters.
132
+ * @return Profile
133
+ */
134
+ public function update($accountId, $webPropertyId, $profileId, Profile $postBody, $optParams = [])
135
+ {
136
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
137
+ $params = array_merge($params, $optParams);
138
+ return $this->call('update', [$params], Profile::class);
139
+ }
140
+ }
141
+
142
+ // Adding a class alias for backwards compatibility with the previous class name.
143
+ class_alias(ManagementProfiles::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementProfiles');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementRemarketingAudience.php ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\RemarketingAudience;
21
+ use WPMSGoogle\Service\Analytics\RemarketingAudiences;
22
+
23
+ /**
24
+ * The "remarketingAudience" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $remarketingAudience = $analyticsService->remarketingAudience;
29
+ * </code>
30
+ */
31
+ class ManagementRemarketingAudience extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Delete a remarketing audience. (remarketingAudience.delete)
35
+ *
36
+ * @param string $accountId Account ID to which the remarketing audience
37
+ * belongs.
38
+ * @param string $webPropertyId Web property ID to which the remarketing
39
+ * audience belongs.
40
+ * @param string $remarketingAudienceId The ID of the remarketing audience to
41
+ * delete.
42
+ * @param array $optParams Optional parameters.
43
+ */
44
+ public function delete($accountId, $webPropertyId, $remarketingAudienceId, $optParams = [])
45
+ {
46
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId];
47
+ $params = array_merge($params, $optParams);
48
+ return $this->call('delete', [$params]);
49
+ }
50
+ /**
51
+ * Gets a remarketing audience to which the user has access.
52
+ * (remarketingAudience.get)
53
+ *
54
+ * @param string $accountId The account ID of the remarketing audience to
55
+ * retrieve.
56
+ * @param string $webPropertyId The web property ID of the remarketing audience
57
+ * to retrieve.
58
+ * @param string $remarketingAudienceId The ID of the remarketing audience to
59
+ * retrieve.
60
+ * @param array $optParams Optional parameters.
61
+ * @return RemarketingAudience
62
+ */
63
+ public function get($accountId, $webPropertyId, $remarketingAudienceId, $optParams = [])
64
+ {
65
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId];
66
+ $params = array_merge($params, $optParams);
67
+ return $this->call('get', [$params], RemarketingAudience::class);
68
+ }
69
+ /**
70
+ * Creates a new remarketing audience. (remarketingAudience.insert)
71
+ *
72
+ * @param string $accountId The account ID for which to create the remarketing
73
+ * audience.
74
+ * @param string $webPropertyId Web property ID for which to create the
75
+ * remarketing audience.
76
+ * @param RemarketingAudience $postBody
77
+ * @param array $optParams Optional parameters.
78
+ * @return RemarketingAudience
79
+ */
80
+ public function insert($accountId, $webPropertyId, RemarketingAudience $postBody, $optParams = [])
81
+ {
82
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody];
83
+ $params = array_merge($params, $optParams);
84
+ return $this->call('insert', [$params], RemarketingAudience::class);
85
+ }
86
+ /**
87
+ * Lists remarketing audiences to which the user has access.
88
+ * (remarketingAudience.listManagementRemarketingAudience)
89
+ *
90
+ * @param string $accountId The account ID of the remarketing audiences to
91
+ * retrieve.
92
+ * @param string $webPropertyId The web property ID of the remarketing audiences
93
+ * to retrieve.
94
+ * @param array $optParams Optional parameters.
95
+ *
96
+ * @opt_param int max-results The maximum number of remarketing audiences to
97
+ * include in this response.
98
+ * @opt_param int start-index An index of the first entity to retrieve. Use this
99
+ * parameter as a pagination mechanism along with the max-results parameter.
100
+ * @opt_param string type
101
+ * @return RemarketingAudiences
102
+ */
103
+ public function listManagementRemarketingAudience($accountId, $webPropertyId, $optParams = [])
104
+ {
105
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
106
+ $params = array_merge($params, $optParams);
107
+ return $this->call('list', [$params], RemarketingAudiences::class);
108
+ }
109
+ /**
110
+ * Updates an existing remarketing audience. This method supports patch
111
+ * semantics. (remarketingAudience.patch)
112
+ *
113
+ * @param string $accountId The account ID of the remarketing audience to
114
+ * update.
115
+ * @param string $webPropertyId The web property ID of the remarketing audience
116
+ * to update.
117
+ * @param string $remarketingAudienceId The ID of the remarketing audience to
118
+ * update.
119
+ * @param RemarketingAudience $postBody
120
+ * @param array $optParams Optional parameters.
121
+ * @return RemarketingAudience
122
+ */
123
+ public function patch($accountId, $webPropertyId, $remarketingAudienceId, RemarketingAudience $postBody, $optParams = [])
124
+ {
125
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId, 'postBody' => $postBody];
126
+ $params = array_merge($params, $optParams);
127
+ return $this->call('patch', [$params], RemarketingAudience::class);
128
+ }
129
+ /**
130
+ * Updates an existing remarketing audience. (remarketingAudience.update)
131
+ *
132
+ * @param string $accountId The account ID of the remarketing audience to
133
+ * update.
134
+ * @param string $webPropertyId The web property ID of the remarketing audience
135
+ * to update.
136
+ * @param string $remarketingAudienceId The ID of the remarketing audience to
137
+ * update.
138
+ * @param RemarketingAudience $postBody
139
+ * @param array $optParams Optional parameters.
140
+ * @return RemarketingAudience
141
+ */
142
+ public function update($accountId, $webPropertyId, $remarketingAudienceId, RemarketingAudience $postBody, $optParams = [])
143
+ {
144
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'remarketingAudienceId' => $remarketingAudienceId, 'postBody' => $postBody];
145
+ $params = array_merge($params, $optParams);
146
+ return $this->call('update', [$params], RemarketingAudience::class);
147
+ }
148
+ }
149
+
150
+ // Adding a class alias for backwards compatibility with the previous class name.
151
+ class_alias(ManagementRemarketingAudience::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementRemarketingAudience');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementSegments.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Segments;
21
+
22
+ /**
23
+ * The "segments" collection of methods.
24
+ * Typical usage is:
25
+ * <code>
26
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
27
+ * $segments = $analyticsService->segments;
28
+ * </code>
29
+ */
30
+ class ManagementSegments extends \WPMSGoogle\Service\Resource
31
+ {
32
+ /**
33
+ * Lists segments to which the user has access.
34
+ * (segments.listManagementSegments)
35
+ *
36
+ * @param array $optParams Optional parameters.
37
+ *
38
+ * @opt_param int max-results The maximum number of segments to include in this
39
+ * response.
40
+ * @opt_param int start-index An index of the first segment to retrieve. Use
41
+ * this parameter as a pagination mechanism along with the max-results
42
+ * parameter.
43
+ * @return Segments
44
+ */
45
+ public function listManagementSegments($optParams = [])
46
+ {
47
+ $params = [];
48
+ $params = array_merge($params, $optParams);
49
+ return $this->call('list', [$params], Segments::class);
50
+ }
51
+ }
52
+
53
+ // Adding a class alias for backwards compatibility with the previous class name.
54
+ class_alias(ManagementSegments::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementSegments');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementUnsampledReports.php ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\UnsampledReport;
21
+ use WPMSGoogle\Service\Analytics\UnsampledReports;
22
+
23
+ /**
24
+ * The "unsampledReports" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $unsampledReports = $analyticsService->unsampledReports;
29
+ * </code>
30
+ */
31
+ class ManagementUnsampledReports extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Deletes an unsampled report. (unsampledReports.delete)
35
+ *
36
+ * @param string $accountId Account ID to delete the unsampled report for.
37
+ * @param string $webPropertyId Web property ID to delete the unsampled reports
38
+ * for.
39
+ * @param string $profileId View (Profile) ID to delete the unsampled report
40
+ * for.
41
+ * @param string $unsampledReportId ID of the unsampled report to be deleted.
42
+ * @param array $optParams Optional parameters.
43
+ */
44
+ public function delete($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = [])
45
+ {
46
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId];
47
+ $params = array_merge($params, $optParams);
48
+ return $this->call('delete', [$params]);
49
+ }
50
+ /**
51
+ * Returns a single unsampled report. (unsampledReports.get)
52
+ *
53
+ * @param string $accountId Account ID to retrieve unsampled report for.
54
+ * @param string $webPropertyId Web property ID to retrieve unsampled reports
55
+ * for.
56
+ * @param string $profileId View (Profile) ID to retrieve unsampled report for.
57
+ * @param string $unsampledReportId ID of the unsampled report to retrieve.
58
+ * @param array $optParams Optional parameters.
59
+ * @return UnsampledReport
60
+ */
61
+ public function get($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = [])
62
+ {
63
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId];
64
+ $params = array_merge($params, $optParams);
65
+ return $this->call('get', [$params], UnsampledReport::class);
66
+ }
67
+ /**
68
+ * Create a new unsampled report. (unsampledReports.insert)
69
+ *
70
+ * @param string $accountId Account ID to create the unsampled report for.
71
+ * @param string $webPropertyId Web property ID to create the unsampled report
72
+ * for.
73
+ * @param string $profileId View (Profile) ID to create the unsampled report
74
+ * for.
75
+ * @param UnsampledReport $postBody
76
+ * @param array $optParams Optional parameters.
77
+ * @return UnsampledReport
78
+ */
79
+ public function insert($accountId, $webPropertyId, $profileId, UnsampledReport $postBody, $optParams = [])
80
+ {
81
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
82
+ $params = array_merge($params, $optParams);
83
+ return $this->call('insert', [$params], UnsampledReport::class);
84
+ }
85
+ /**
86
+ * Lists unsampled reports to which the user has access.
87
+ * (unsampledReports.listManagementUnsampledReports)
88
+ *
89
+ * @param string $accountId Account ID to retrieve unsampled reports for. Must
90
+ * be a specific account ID, ~all is not supported.
91
+ * @param string $webPropertyId Web property ID to retrieve unsampled reports
92
+ * for. Must be a specific web property ID, ~all is not supported.
93
+ * @param string $profileId View (Profile) ID to retrieve unsampled reports for.
94
+ * Must be a specific view (profile) ID, ~all is not supported.
95
+ * @param array $optParams Optional parameters.
96
+ *
97
+ * @opt_param int max-results The maximum number of unsampled reports to include
98
+ * in this response.
99
+ * @opt_param int start-index An index of the first unsampled report to
100
+ * retrieve. Use this parameter as a pagination mechanism along with the max-
101
+ * results parameter.
102
+ * @return UnsampledReports
103
+ */
104
+ public function listManagementUnsampledReports($accountId, $webPropertyId, $profileId, $optParams = [])
105
+ {
106
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
107
+ $params = array_merge($params, $optParams);
108
+ return $this->call('list', [$params], UnsampledReports::class);
109
+ }
110
+ }
111
+
112
+ // Adding a class alias for backwards compatibility with the previous class name.
113
+ class_alias(ManagementUnsampledReports::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementUnsampledReports');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementUploads.php ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\AnalyticsDataimportDeleteUploadDataRequest;
21
+ use WPMSGoogle\Service\Analytics\Upload;
22
+ use WPMSGoogle\Service\Analytics\Uploads;
23
+
24
+ /**
25
+ * The "uploads" collection of methods.
26
+ * Typical usage is:
27
+ * <code>
28
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
29
+ * $uploads = $analyticsService->uploads;
30
+ * </code>
31
+ */
32
+ class ManagementUploads extends \WPMSGoogle\Service\Resource
33
+ {
34
+ /**
35
+ * Delete data associated with a previous upload. (uploads.deleteUploadData)
36
+ *
37
+ * @param string $accountId Account Id for the uploads to be deleted.
38
+ * @param string $webPropertyId Web property Id for the uploads to be deleted.
39
+ * @param string $customDataSourceId Custom data source Id for the uploads to be
40
+ * deleted.
41
+ * @param AnalyticsDataimportDeleteUploadDataRequest $postBody
42
+ * @param array $optParams Optional parameters.
43
+ */
44
+ public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = [])
45
+ {
46
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody];
47
+ $params = array_merge($params, $optParams);
48
+ return $this->call('deleteUploadData', [$params]);
49
+ }
50
+ /**
51
+ * List uploads to which the user has access. (uploads.get)
52
+ *
53
+ * @param string $accountId Account Id for the upload to retrieve.
54
+ * @param string $webPropertyId Web property Id for the upload to retrieve.
55
+ * @param string $customDataSourceId Custom data source Id for upload to
56
+ * retrieve.
57
+ * @param string $uploadId Upload Id to retrieve.
58
+ * @param array $optParams Optional parameters.
59
+ * @return Upload
60
+ */
61
+ public function get($accountId, $webPropertyId, $customDataSourceId, $uploadId, $optParams = [])
62
+ {
63
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId];
64
+ $params = array_merge($params, $optParams);
65
+ return $this->call('get', [$params], Upload::class);
66
+ }
67
+ /**
68
+ * List uploads to which the user has access. (uploads.listManagementUploads)
69
+ *
70
+ * @param string $accountId Account Id for the uploads to retrieve.
71
+ * @param string $webPropertyId Web property Id for the uploads to retrieve.
72
+ * @param string $customDataSourceId Custom data source Id for uploads to
73
+ * retrieve.
74
+ * @param array $optParams Optional parameters.
75
+ *
76
+ * @opt_param int max-results The maximum number of uploads to include in this
77
+ * response.
78
+ * @opt_param int start-index A 1-based index of the first upload to retrieve.
79
+ * Use this parameter as a pagination mechanism along with the max-results
80
+ * parameter.
81
+ * @return Uploads
82
+ */
83
+ public function listManagementUploads($accountId, $webPropertyId, $customDataSourceId, $optParams = [])
84
+ {
85
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId];
86
+ $params = array_merge($params, $optParams);
87
+ return $this->call('list', [$params], Uploads::class);
88
+ }
89
+ /**
90
+ * Upload data for a custom data source. (uploads.uploadData)
91
+ *
92
+ * @param string $accountId Account Id associated with the upload.
93
+ * @param string $webPropertyId Web property UA-string associated with the
94
+ * upload.
95
+ * @param string $customDataSourceId Custom data source Id to which the data
96
+ * being uploaded belongs.
97
+ * @param array $optParams Optional parameters.
98
+ * @return Upload
99
+ */
100
+ public function uploadData($accountId, $webPropertyId, $customDataSourceId, $optParams = [])
101
+ {
102
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId];
103
+ $params = array_merge($params, $optParams);
104
+ return $this->call('uploadData', [$params], Upload::class);
105
+ }
106
+ }
107
+
108
+ // Adding a class alias for backwards compatibility with the previous class name.
109
+ class_alias(ManagementUploads::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementUploads');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementWebPropertyAdWordsLinks.php ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\EntityAdWordsLink;
21
+ use WPMSGoogle\Service\Analytics\EntityAdWordsLinks;
22
+
23
+ /**
24
+ * The "webPropertyAdWordsLinks" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $webPropertyAdWordsLinks = $analyticsService->webPropertyAdWordsLinks;
29
+ * </code>
30
+ */
31
+ class ManagementWebPropertyAdWordsLinks extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Deletes a web property-Google Ads link. (webPropertyAdWordsLinks.delete)
35
+ *
36
+ * @param string $accountId ID of the account which the given web property
37
+ * belongs to.
38
+ * @param string $webPropertyId Web property ID to delete the Google Ads link
39
+ * for.
40
+ * @param string $webPropertyAdWordsLinkId Web property Google Ads link ID.
41
+ * @param array $optParams Optional parameters.
42
+ */
43
+ public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = [])
44
+ {
45
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId];
46
+ $params = array_merge($params, $optParams);
47
+ return $this->call('delete', [$params]);
48
+ }
49
+ /**
50
+ * Returns a web property-Google Ads link to which the user has access.
51
+ * (webPropertyAdWordsLinks.get)
52
+ *
53
+ * @param string $accountId ID of the account which the given web property
54
+ * belongs to.
55
+ * @param string $webPropertyId Web property ID to retrieve the Google Ads link
56
+ * for.
57
+ * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
58
+ * @param array $optParams Optional parameters.
59
+ * @return EntityAdWordsLink
60
+ */
61
+ public function get($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = [])
62
+ {
63
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId];
64
+ $params = array_merge($params, $optParams);
65
+ return $this->call('get', [$params], EntityAdWordsLink::class);
66
+ }
67
+ /**
68
+ * Creates a webProperty-Google Ads link. (webPropertyAdWordsLinks.insert)
69
+ *
70
+ * @param string $accountId ID of the Google Analytics account to create the
71
+ * link for.
72
+ * @param string $webPropertyId Web property ID to create the link for.
73
+ * @param EntityAdWordsLink $postBody
74
+ * @param array $optParams Optional parameters.
75
+ * @return EntityAdWordsLink
76
+ */
77
+ public function insert($accountId, $webPropertyId, EntityAdWordsLink $postBody, $optParams = [])
78
+ {
79
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody];
80
+ $params = array_merge($params, $optParams);
81
+ return $this->call('insert', [$params], EntityAdWordsLink::class);
82
+ }
83
+ /**
84
+ * Lists webProperty-Google Ads links for a given web property.
85
+ * (webPropertyAdWordsLinks.listManagementWebPropertyAdWordsLinks)
86
+ *
87
+ * @param string $accountId ID of the account which the given web property
88
+ * belongs to.
89
+ * @param string $webPropertyId Web property ID to retrieve the Google Ads links
90
+ * for.
91
+ * @param array $optParams Optional parameters.
92
+ *
93
+ * @opt_param int max-results The maximum number of webProperty-Google Ads links
94
+ * to include in this response.
95
+ * @opt_param int start-index An index of the first webProperty-Google Ads link
96
+ * to retrieve. Use this parameter as a pagination mechanism along with the max-
97
+ * results parameter.
98
+ * @return EntityAdWordsLinks
99
+ */
100
+ public function listManagementWebPropertyAdWordsLinks($accountId, $webPropertyId, $optParams = [])
101
+ {
102
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
103
+ $params = array_merge($params, $optParams);
104
+ return $this->call('list', [$params], EntityAdWordsLinks::class);
105
+ }
106
+ /**
107
+ * Updates an existing webProperty-Google Ads link. This method supports patch
108
+ * semantics. (webPropertyAdWordsLinks.patch)
109
+ *
110
+ * @param string $accountId ID of the account which the given web property
111
+ * belongs to.
112
+ * @param string $webPropertyId Web property ID to retrieve the Google Ads link
113
+ * for.
114
+ * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
115
+ * @param EntityAdWordsLink $postBody
116
+ * @param array $optParams Optional parameters.
117
+ * @return EntityAdWordsLink
118
+ */
119
+ public function patch($accountId, $webPropertyId, $webPropertyAdWordsLinkId, EntityAdWordsLink $postBody, $optParams = [])
120
+ {
121
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody];
122
+ $params = array_merge($params, $optParams);
123
+ return $this->call('patch', [$params], EntityAdWordsLink::class);
124
+ }
125
+ /**
126
+ * Updates an existing webProperty-Google Ads link.
127
+ * (webPropertyAdWordsLinks.update)
128
+ *
129
+ * @param string $accountId ID of the account which the given web property
130
+ * belongs to.
131
+ * @param string $webPropertyId Web property ID to retrieve the Google Ads link
132
+ * for.
133
+ * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
134
+ * @param EntityAdWordsLink $postBody
135
+ * @param array $optParams Optional parameters.
136
+ * @return EntityAdWordsLink
137
+ */
138
+ public function update($accountId, $webPropertyId, $webPropertyAdWordsLinkId, EntityAdWordsLink $postBody, $optParams = [])
139
+ {
140
+ $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody];
141
+ $params = array_merge($params, $optParams);
142
+ return $this->call('update', [$params], EntityAdWordsLink::class);
143
+ }
144
+ }
145
+
146
+ // Adding a class alias for backwards compatibility with the previous class name.
147
+ class_alias(ManagementWebPropertyAdWordsLinks::class, 'WPMSGoogle_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks');
inc/lib/google-api/vendor/google/apiclient-services/src/Analytics/Resource/ManagementWebproperties.php ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Copyright 2014 Google Inc.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6
+ * use this file except in compliance with the License. You may obtain a copy of
7
+ * the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations under
15
+ * the License.
16
+ */
17
+
18
+ namespace WPMSGoogle\Service\Analytics\Resource;
19
+
20
+ use WPMSGoogle\Service\Analytics\Webproperties;
21
+ use WPMSGoogle\Service\Analytics\Webproperty;
22
+
23
+ /**
24
+ * The "webproperties" collection of methods.
25
+ * Typical usage is:
26
+ * <code>
27
+ * $analyticsService = new WPMSGoogle\Service\Analytics(...);
28
+ * $webproperties = $analyticsService->webproperties;
29
+ * </code>
30
+ */
31
+ class ManagementWebproperties extends \WPMSGoogle\Service\Resource
32
+ {
33
+ /**
34
+ * Gets a web property to which the user has access. (webproperties.get)
35
+ *
36
+ * @param string $accountId Account ID to retrieve the w