Version Description
- 2022-07-05 =
- Add - Filter Ads accounts to exclude manager and test accounts.
- Add - Return account names when retrieving the list of existing accounts.
- Fix - Normalize image URLs before validation.
- Tweak - WooCommerce 6.7 compatibility.
Download this release
Release Info
Developer | mikkamp |
Plugin | Google Listings & Ads |
Version | 2.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.13.6 to 2.0.0
- changelog.txt +6 -0
- google-listings-and-ads.php +3 -3
- js/build/index.asset.php +1 -1
- js/build/index.js +2 -1
- languages/google-listings-and-ads.pot +324 -318
- readme.txt +7 -12
- src/API/Google/Ads.php +55 -14
- src/API/Google/Query/AdsAccountAccessQuery.php +22 -0
- src/API/Google/Query/AdsAccountQuery.php +2 -2
- src/API/Google/Query/AdsQuery.php +19 -0
- src/API/Site/Controllers/Ads/AccountController.php +1 -1
- src/Ads/AccountService.php +4 -4
- src/ConnectionTest.php +4 -4
- src/Product/WCProductAdapter.php +11 -2
- vendor/autoload.php +6 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/InstalledVersions.php +9 -7
- vendor/composer/autoload_classmap.php +2 -1
- vendor/composer/autoload_files.php +1 -1
- vendor/composer/autoload_namespaces.php +1 -1
- vendor/composer/autoload_psr4.php +1 -1
- vendor/composer/autoload_real.php +9 -32
- vendor/composer/autoload_static.php +5 -4
- vendor/composer/installed.php +50 -50
- vendor/composer/jetpack_autoload_classmap.php +4439 -4451
changelog.txt
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
*** WooCommerce Google Listings and Ads Changelog ***
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
= 1.13.6 - 2022-06-21 =
|
4 |
* Fix - Cannot disconnect Jetpack when other activated plugins are using Jetpack connection.
|
5 |
* Fix - Compatibility CES prompts with WC 6.6.0.
|
1 |
*** WooCommerce Google Listings and Ads Changelog ***
|
2 |
|
3 |
+
= 2.0.0 - 2022-07-05 =
|
4 |
+
* Add - Filter Ads accounts to exclude manager and test accounts.
|
5 |
+
* Add - Return account names when retrieving the list of existing accounts.
|
6 |
+
* Fix - Normalize image URLs before validation.
|
7 |
+
* Tweak - WooCommerce 6.7 compatibility.
|
8 |
+
|
9 |
= 1.13.6 - 2022-06-21 =
|
10 |
* Fix - Cannot disconnect Jetpack when other activated plugins are using Jetpack connection.
|
11 |
* Fix - Compatibility CES prompts with WC 6.6.0.
|
google-listings-and-ads.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Google Listings and Ads
|
4 |
* Plugin URL: https://wordpress.org/plugins/google-listings-and-ads/
|
5 |
* Description: Native integration with Google that allows merchants to easily display their products across Google’s network.
|
6 |
-
* Version:
|
7 |
* Author: WooCommerce
|
8 |
* Author URI: https://woocommerce.com/
|
9 |
* Text Domain: google-listings-and-ads
|
@@ -12,7 +12,7 @@
|
|
12 |
* Requires PHP: 7.3
|
13 |
*
|
14 |
* WC requires at least: 6.0
|
15 |
-
* WC tested up to: 6.
|
16 |
* Woo:
|
17 |
*
|
18 |
* @package WooCommerce\Admin
|
@@ -28,7 +28,7 @@ use Psr\Container\ContainerInterface;
|
|
28 |
|
29 |
defined( 'ABSPATH' ) || exit;
|
30 |
|
31 |
-
define( 'WC_GLA_VERSION', '
|
32 |
define( 'WC_GLA_MIN_PHP_VER', '7.3' );
|
33 |
define( 'WC_GLA_MIN_WC_VER', '6.0' );
|
34 |
|
3 |
* Plugin Name: Google Listings and Ads
|
4 |
* Plugin URL: https://wordpress.org/plugins/google-listings-and-ads/
|
5 |
* Description: Native integration with Google that allows merchants to easily display their products across Google’s network.
|
6 |
+
* Version: 2.0.0
|
7 |
* Author: WooCommerce
|
8 |
* Author URI: https://woocommerce.com/
|
9 |
* Text Domain: google-listings-and-ads
|
12 |
* Requires PHP: 7.3
|
13 |
*
|
14 |
* WC requires at least: 6.0
|
15 |
+
* WC tested up to: 6.7
|
16 |
* Woo:
|
17 |
*
|
18 |
* @package WooCommerce\Admin
|
28 |
|
29 |
defined( 'ABSPATH' ) || exit;
|
30 |
|
31 |
+
define( 'WC_GLA_VERSION', '2.0.0' ); // WRCS: DEFINED_VERSION.
|
32 |
define( 'WC_GLA_MIN_PHP_VER', '7.3' );
|
33 |
define( 'WC_GLA_MIN_WC_VER', '6.0' );
|
34 |
|
js/build/index.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wc-components', 'wc-customer-effort-score', 'wc-navigation', 'wc-settings', 'wc-store-data', 'wp-a11y', 'wp-api-fetch', 'wp-data', 'wp-data-controls', 'wp-date', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-url', 'wp-warning'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'wc-components', 'wc-customer-effort-score', 'wc-navigation', 'wc-settings', 'wc-store-data', 'wp-a11y', 'wp-api-fetch', 'wp-data', 'wp-data-controls', 'wp-date', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-url', 'wp-warning'), 'version' => '44b41b19e77c9c17bd5ca2197747daf5');
|
js/build/index.js
CHANGED
@@ -20,7 +20,8 @@ textResendCooldown:(0,o.__)("Resend code (in %ds)","google-listings-and-ads"),te
|
|
20 |
// translators: %d: seconds to wait until the next verification code can be requested via phone call.
|
21 |
textResendCooldown:(0,o.__)("Call again (in %ds)","google-listings-and-ads"),textSwitch:(0,o.__)("Or, receive a verification code through text message","google-listings-and-ads")}};function i_(e){let{verificationMethod:t,country:n,number:r,display:a,onVerificationStateChange:i}=e;const l=Mv(),[c,u]=(0,s.useState)(t),{second:d,callCount:g,startCountdown:p}=function(e){const t=(0,s.useRef)({}),[n,r]=(0,s.useState)(0);t.current.usingHandle=e,t.current[e]=t.current[e]||{callCount:0};const o=(0,s.useCallback)((n=>{r(n);const o=t.current[e],a=(new Date).getTime()+1e3*n;o.id&&clearInterval(o.id),o.updateSecond=()=>{let n=(a-(new Date).getTime())/1e3;n=Math.max(Math.round(n),0),t.current.usingHandle===e&&r(n),0===n&&clearInterval(o.id)},o.id=setInterval(o.updateSecond,1e3),o.callCount+=1}),[e]);(0,s.useEffect)((()=>{const{updateSecond:n}=t.current[e];n&&n()}),[e]),(0,s.useEffect)((()=>{const e=t.current;return()=>{Object.values(e).forEach((e=>clearInterval(e.id)))}}),[]);const{callCount:a}=t.current[e];return{second:n,callCount:a,startCountdown:o}}(c),[f,m]=(0,s.useState)(null),[h,y]=(0,s.useState)(!1),[v,b]=(0,s.useState)(null),_=(0,s.useRef)({}),{requestPhoneVerificationCode:w,verifyPhoneNumber:E}=Og(),$=c===o_.SMS,C=(0,s.useCallback)((()=>{b(null),p(60),_.current[c]=null,w(n,r,c).then((e=>{let{verificationId:t}=e;_.current[c]=t})).catch((e=>{l()&&(b(e),p(0))}))}),[n,r,c,p,w,l]);(0,s.useEffect)((()=>{0===g&&C()}),[c,g,C]);const{toInstruction:k,textResend:S,textResendCooldown:x,textSwitch:O}=a_[c],P=_.current[c],A=!(null!=f&&f.isFilled&&P);return(0,s.createElement)("form",{onSubmit:e=>{e.preventDefault(),b(null),y(!0),i(!0,!1);const t=_.current[c];E(t,f.code,c).then((()=>{i(!1,!0)})).catch((e=>{l()&&(b(e),y(!1),i(!1,!1))}))}},(0,s.createElement)(gp.Card.Body,null,v&&(0,s.createElement)(cp,null,(0,s.createElement)(Fc,{status:"error",isDismissible:!1},v.display)),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Enter verification code","google-listings-and-ads")),k(a)),(0,s.createElement)(cp,null,(0,s.createElement)(r_,{resetNeedle:c+g,onCodeChange:m})),(0,s.createElement)(cp,null,(0,s.createElement)(ae,{justify:"normal",gap:4},(0,s.createElement)(gc,{isSecondary:!0,disabled:A,loading:h,text:(0,o.__)("Verify phone number","google-listings-and-ads"),type:"submit"}),(0,s.createElement)(gc,{isSecondary:!0,disabled:d>0||h,text:d?(0,o.sprintf)(x,d):S,onClick:C})))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:h,text:O,onClick:()=>{u($?o_.PHONE_CALL:o_.SMS)}})))}function s_(e){return new ab(e).getCountries()}var l_=e=>{const{label:t,helperText:n,className:r,...o}=e;return(0,s.createElement)("div",{className:d()("wcdl-select-control",r)},t&&(0,s.createElement)("div",{className:"wcdl-select-control__label"},t),(0,s.createElement)("div",{className:"wcdl-select-control__input"},(0,s.createElement)(Bl.SelectControl,l({},o,{help:""}))),n&&(0,s.createElement)("div",{className:"wcdl-select-control__helper-text"},n))};const c_=[{label:(0,o.__)("Text message","google-listings-and-ads"),value:o_.SMS},{label:(0,o.__)("Phone call","google-listings-and-ads"),value:o_.PHONE_CALL}];function u_(e){let{initCountry:t,initNationalNumber:n,onSendVerificationCodeClick:r}=e;const a=function(){const e=Xy();return(0,s.useMemo)((()=>function(){return Uv(s_,arguments)}().reduce(((t,n)=>{const r=e[n];if(r){const e=function(){return Uv(pb,arguments)}(n);t.push(((e,t,n)=>({key:e,keywords:[n,t,e],label:`${n} (+${t})`}))(n,e,r))}return t}),[])),[e])}(),[i,l]=(0,s.useState)(t),[c,u]=(0,s.useState)(n),[d,g]=(0,s.useState)(o_.SMS),[p,f]=(0,s.useState)(null);return(0,s.useEffect)((()=>{const e=Xb(c,i),t=!!e&&e.isValid();f(e?{...e,isValid:t,display:e.formatInternational(),verificationMethod:d}:{isValid:t,country:i,number:"",display:"",verificationMethod:d})}),[c,i,d]),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(ae,{gap:4},(0,s.createElement)(ze,null,(0,s.createElement)(l_,{label:(0,o.__)("Country code","google-listings-and-ads"),isSearchable:!0,excludeSelectedOptions:!1,options:a,selected:i,onChange:l})),(0,s.createElement)(Li,null,(0,s.createElement)(Eh,{label:(0,o.__)("Phone number","google-listings-and-ads"),value:c,onChange:u}))),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select verification method","google-listings-and-ads")),(0,s.createElement)(hy,{selected:d,options:c_,onChange:g})),(0,s.createElement)(cp,null,(0,s.createElement)(gc,{isSecondary:!0,disabled:!(null!=p&&p.isValid),text:(0,o.__)("Send verification code","google-listings-and-ads"),onClick:()=>r(p)})))}const d_=()=>{},g_={className:"gla-phone-number-card",appearance:Ep.PHONE};function p_(e){let{phoneNumber:t,onPhoneNumberVerified:n}=e;const{loaded:r,data:a}=t,[i,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(null);let g=(0,s.createElement)(Wg,null);r&&(g=u?(0,s.createElement)(i_,l({},u,{onVerificationStateChange:(e,t)=>{c(e),t&&n()}})):(0,s.createElement)(u_,{initCountry:a.country,initNationalNumber:a.nationalNumber,onSendVerificationCodeClick:d}));const p=u?u.display:(0,o.__)("Please enter a phone number to be used for verification.","google-listings-and-ads"),f=u?(0,s.createElement)(gc,{isSecondary:!0,text:(0,o.__)("Edit","google-listings-and-ads"),disabled:i,onClick:()=>d(null)}):null;return(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}),(0,s.createElement)(ef,null),g)}var f_=e=>{let{view:t,phoneNumber:n,initEditing:r=null,onEditClick:a,onPhoneNumberVerified:i=d_}=e;const{loaded:c,data:u}=n,[d,g]=(0,s.useState)(r);if((0,s.useEffect)((()=>{c&&null===d&&g(!u.isValid)}),[c,u.isValid,d]),null===d)return(0,s.createElement)(xp,l({},g_,{indicator:(0,s.createElement)(Bl.Spinner,null)}));if(d){const e=()=>{g(!1),i()};return(0,s.createElement)(p_,{phoneNumber:n,onPhoneNumberVerified:e})}let p=null,f=(0,s.createElement)(Bl.Spinner,null);return c&&(p=u.display,f=(0,s.createElement)(gc,{isSecondary:!0,eventName:"gla_mc_phone_number_edit_button_click",eventProps:{view:t},onClick:()=>{a?a():g(!0)}},(0,o.__)("Edit","google-listings-and-ads"))),(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}))},m_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8zm1.13 9.38l.35-6.46H8.52l.35 6.46h2.26zm-.09 3.36c.24-.23.37-.55.37-.96 0-.42-.12-.74-.36-.97s-.59-.35-1.06-.35-.82.12-1.07.35-.37.55-.37.97c0 .41.13.73.38.96.26.23.61.34 1.06.34s.8-.11 1.05-.34z"}));function h_(e){let{editHref:t,editEventName:n,loading:r,content:a,appearance:i,warning:l}=e;const{subpath:c}=(0,pc.getQuery)(),u=(0,s.createElement)(gc,{isSecondary:!0,href:t,text:(0,o.__)("Edit","google-listings-and-ads"),eventName:n,eventProps:{path:(0,pc.getPath)(),subpath:c}});let d,g;return r?d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__placeholder","aria-busy":"true",title:(0,o.__)("Loading…","google-listings-and-ads")}):l?(g=(0,s.createElement)(s.Fragment,null,(0,s.createElement)(vp,{icon:m_,size:24,className:"gla-contact-info-preview-card__notice-icon"}),l),d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__notice-details"},a)):d=a,(0,s.createElement)(xp,{appearance:i,className:"gla-contact-info-preview-card",icon:null,title:g,description:d,indicator:u})}function y_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=e_();let i,l;return r&&(a.isValid?i=a.display:(l=(0,o.__)("Please add your phone number","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the phone number for all stores using Google Merchant Center. ","google-listings-and-ads"),n))),(0,s.createElement)(h_,{appearance:Ep.PHONE,editHref:t,editEventName:"gla_edit_mc_phone_number",learnMore:n,loading:!r,warning:l,content:i})}var v_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10.2 3.28c3.53 0 6.43 2.61 6.92 6h2.08l-3.5 4-3.5-4h2.32c-.45-1.97-2.21-3.45-4.32-3.45-1.45 0-2.73.71-3.54 1.78L4.95 5.66C6.23 4.2 8.11 3.28 10.2 3.28zm-.4 13.44c-3.52 0-6.43-2.61-6.92-6H.8l3.5-4c1.17 1.33 2.33 2.67 3.5 4H5.48c.45 1.97 2.21 3.45 4.32 3.45 1.45 0 2.73-.71 3.54-1.78l1.71 1.95c-1.28 1.46-3.15 2.38-5.25 2.38z"})),b_=()=>{const{loaded:e,data:t,refetch:n}=zv(),{subpath:r}=(0,pc.getQuery)(),a=(0,s.createElement)(gc,{isSecondary:!0,icon:v_,iconSize:20,iconPosition:"right",text:(0,o.__)("Refresh to sync","google-listings-and-ads"),onClick:n,disabled:!e});let i;const l=(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Edit your store address in your <link>WooCommerce settings</link>.","google-listings-and-ads"),{link:(0,s.createElement)(ql,{target:"_blank",type:"external",href:"admin.php?page=wc-settings",eventName:"gla_edit_wc_store_address",eventProps:{path:(0,pc.getPath)(),subpath:r}})})),(0,s.createElement)("p",null,(0,o.__)("Once you’ve saved your new address there, refresh to sync your new address with Google.","google-listings-and-ads")));if(e){const{address:e,address2:n,city:r,state:o,country:a,postcode:l}=t,c=[r,o?`${o} - ${a}`:a,l].filter(Boolean).join(", ");i=(0,s.createElement)("div",null,(0,s.createElement)("div",null,e),n&&(0,s.createElement)("div",null,n),(0,s.createElement)("div",null,c))}else i=(0,s.createElement)(Bl.Spinner,null);return(0,s.createElement)(xp,{className:"gla-store-address-card",appearance:Ep.ADDRESS,alignIcon:"top",alignIndicator:"top",description:l,indicator:a},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Store address","google-listings-and-ads")),i))};function w_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=zv("mc");let i,l;if(r){const{isAddressFilled:e,isMCAddressDifferent:t,address:r,address2:c,city:u,state:d,country:g,postcode:p}=a,f=d?`${d} - ${g}`:g;e&&!t?i=[r,c,u,f,p].filter(Boolean).join(", "):(l=(0,o.__)("Please add your store address","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the store address for all stores using Google Merchant Center. ","google-listings-and-ads"),n))}return(0,s.createElement)(h_,{appearance:Ep.ADDRESS,editHref:t,editEventName:"gla_edit_mc_store_address",loading:!r,warning:l,content:i})}var E_=e=>{let{loaded:t,data:{display:n,isValid:r}}=e;const o=!!n,a=(0,pc.getPath)();(0,s.useEffect)((()=>{t&&(0,Dl.recordEvent)("gla_mc_phone_number_check",{path:a,exist:o,isValid:r})}),[o,r,t,a])};const $_="contact-information-read-more",C_="https://docs.woocommerce.com/document/google-listings-and-ads/#contact-information",k_=(0,o.__)("Your contact information is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers.","google-listings-and-ads"),S_=(0,o.__)("Enter contact information","google-listings-and-ads"),x_=(0,o.__)("Contact information","google-listings-and-ads");function O_(){return(0,s.createElement)(gp,{title:x_,description:k_},(0,s.createElement)(fp,{size:"overlap"},(0,s.createElement)(y_,{editHref:(0,pc.getNewPath)({subpath:bc},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-phone-number-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))}),(0,s.createElement)(w_,{editHref:(0,pc.getNewPath)({subpath:_c},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-store-address-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))})))}var P_=e=>{let{onPhoneNumberVerified:t}=e;const n=e_(),r=S_;return E_(n),(0,s.createElement)(gp,{title:r,description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,k_),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-contact-information",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))))},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(f_,{view:"setup-mc",phoneNumber:n,initEditing:!0,onPhoneNumberVerified:t}),(0,s.createElement)(b_,null)))},A_=e=>{let{id:t,children:n}=e;const[r,o]=(0,s.useState)(!1);return(0,s.createElement)("span",{className:"help-popover"},(0,s.createElement)("button",{onClick:()=>{o(!0),(0,Dl.recordEvent)("gla_tooltip_viewed",{id:t})}},(0,s.createElement)(zg.Z,{size:16})),r&&(0,s.createElement)(cl,{focusOnMount:"container",onClose:()=>{o(!1)}},n))},N_=e=>{const{formProps:t}=e,{getInputProps:n}=t;return(0,s.createElement)("div",{className:"gla-pre-launch-checklist"},(0,s.createElement)(gp,{title:(0,o.__)("Pre-Launch Checklist","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Ensure you meet Google Merchant Center requirements by reviewing this checklist. Otherwise, your products may be disapproved or your Google Merchant Center account may be suspended by Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"checklist-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy"},(0,o.__)("Read Google Merchant requirements","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(fp,{size:"large"},(0,s.createElement)("div",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store website is live.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"website_live"},(0,s.createInterpolateElement)((0,o.__)("Ensure your store website and products are online and accessible to your customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-website-is-live",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#store-is-live"})})))},n("website_live")))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("I have a complete and secure checkout process.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"checkout_process_secure"},(0,s.createElement)("p",null,(0,o.__)("Ensure customers are able to successfully add items to the cart and fully complete the checkout process.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Payment and transaction processing, as well as collection of any sensitive and financial personal information from the user, must be conducted over a secure processing server (SSL-protected, with a valid SSL certificate - https://). <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-checkout-process",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#complete-checkout"})}))))},n("checkout_process_secure"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My payment methods are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"payment_methods_visible"},(0,s.createInterpolateElement)((0,o.__)("Ensure customers have at least one valid payment method, such as credit card, direct bank transfer, or cash on delivery. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-payment-methods",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#payment-methods"})})))},n("payment_methods_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My refund policy and terms of service are visible on my online store.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"refund_tos_visible"},(0,s.createInterpolateElement)((0,o.__)("Your site must provide a clear and conspicuous return policy and billing terms to customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-refund-policy",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#refund-and-terms"})})))},n("refund_tos_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store’s phone number, email and/or address are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"contact_info_visible"},(0,s.createInterpolateElement)((0,o.__)("Your website must display sufficient and accurate contact information to your customers, including a telephone number and/or email. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-phone-numbers",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#contact-info"})})))},n("contact_info_visible"))))))))};function R_(e){const t={};return!0!==e.website_live&&(t.website_live=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.checkout_process_secure&&(t.checkout_process_secure=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.payment_methods_visible&&(t.payment_methods_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.refund_tos_visible&&(t.refund_tos_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.contact_info_visible&&(t.contact_info_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),t}function T_(){const e=Bv(),{updateGoogleMCContactInformation:t,saveSettings:n}=Og(),{createNotice:r}=Np(),{data:a}=zv(),{settings:i}=cy(),[l,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(!1);return i?(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Confirm store requirements","google-listings-and-ads"),description:(0,o.__)("Review and confirm that your store meets Google Merchant Center requirements.","google-listings-and-ads")}),(0,s.createElement)(Bl.Form,{initialValues:{website_live:i.website_live,checkout_process_secure:i.checkout_process_secure,payment_methods_visible:i.payment_methods_visible,refund_tos_visible:i.refund_tos_visible,contact_info_visible:i.contact_info_visible},validate:R_,onChange:(e,t)=>{n(t)},onSubmit:async()=>{try{d(!0),await t(),await Uc()({path:"/wc/gla/mc/settings/sync",method:"POST"});const n=(0,pc.getNewPath)({guide:"submission-success"},"/google/product-feed");window.location.href=e+n}catch(e){d(!1),r("error",(0,o.__)("Unable to complete your setup. Please try again later.","google-listings-and-ads"))}}},(e=>{const{handleSubmit:t,isValidForm:n}=e,r=n&&l&&a.isAddressFilled;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(P_,{onPhoneNumberVerified:()=>c(!0)}),(0,s.createElement)(N_,{formProps:e}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,loading:u,disabled:!r,onClick:t},(0,o.__)("Complete setup","google-listings-and-ads"))))}))):(0,s.createElement)(Wg,null)}var M_={accounts:"1",target_audience:"2",shipping_and_taxes:"3",store_requirements:"4"},j_=e=>{let{savedStep:t,onRefetchSavedStep:n=(()=>{})}=e;const[r,a]=(0,s.useState)(t),i=e=>{Number(e)<=Number(t)&&a(e)};return(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:r,steps:[{key:M_.accounts,label:(0,o.__)("Set up your accounts","google-listings-and-ads"),content:(0,s.createElement)(iy,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step1_continue",trigger:"click"}),a(M_.target_audience),n()}}),onClick:i},{key:M_.target_audience,label:(0,o.__)("Choose your audience","google-listings-and-ads"),content:(0,s.createElement)(Gv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step2_continue",trigger:"click"}),a(M_.shipping_and_taxes),n()}}),onClick:i},{key:M_.shipping_and_taxes,label:(0,o.__)("Configure your product listings","google-listings-and-ads"),content:(0,s.createElement)(Dv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step3_continue",trigger:"click"}),a(M_.store_requirements),n()}}),onClick:i},{key:M_.store_requirements,label:(0,o.__)("Confirm store requirements","google-listings-and-ads"),content:(0,s.createElement)(T_,null),onClick:i}]})},I_=()=>{const{hasFinishedResolution:e,data:t,invalidateResolution:n}=Ag("getMCSetup");if(!e&&!t)return(0,s.createElement)(Wg,null);if(e&&!t)return null;const{status:r,step:o}=t;return"complete"===r?((0,pc.getHistory)().replace((0,pc.getNewPath)({},"/google/dashboard")),null):(0,s.createElement)(j_,{savedStep:M_[o],onRefetchSavedStep:()=>{n()}})},F_=()=>(Gg("full-page"),(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Vg,null),(0,s.createElement)(I_,null)));function D_(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:()=>!0;(0,s.useEffect)((()=>{const r=t=>{t.preventDefault(),t.returnValue=e};t&&window.addEventListener("beforeunload",r);const o=(0,pc.getHistory)().block((r=>{if(t&&n(r))return e}));return()=>{o(),window.removeEventListener("beforeunload",r)}}),[e,t,n])}const L_="getGoogleAdsAccount";var G_=()=>{const{google:e,isResolving:t}=Jg(),n=Og(),r=(0,s.useCallback)((()=>{n.invalidateResolution(L_,[])}),[n]);return(0,dn.useSelect)((n=>{if(!e||"no"===e.active)return{googleAdsAccount:void 0,isResolving:t};const o=n(Lc);return{googleAdsAccount:o.getGoogleAdsAccount(),isResolving:o.isResolving(L_),refetchGoogleAdsAccount:r,hasFinishedResolution:o.hasFinishedResolution(L_)}}),[e,t,r])};function B_(e){
|
22 |
// translators: %s: user's account ID
|
23 |
-
return(0,o.sprintf)((0,o.__)("Account %s","google-listings-and-ads"),e)}function q_(e){let{googleAdsAccount:t,...n}=e;return(0,s.createElement)(xp,l({appearance:Ep.GOOGLE_ADS,description:B_(t.id),indicator:(0,s.createElement)(Pp,null)},n))}var z_=e=>{let{onCreateAccount:t=(()=>{}),onRequestClose:n=(()=>{})}=e;const[r,a]=(0,s.useState)(!1);return(0,s.createElement)(Bh,{className:"gla-ads-terms-modal",title:(0,o.__)("Create Google Ads Account","google-listings-and-ads"),buttons:[(0,s.createElement)(gc,{key:"1",isPrimary:!0,disabled:!r,eventName:"gla_ads_account_create_button_click",onClick:()=>{t(),n()}},(0,o.__)("Create account","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",{className:"main"},(0,o.__)("By creating a Google Ads account, you agree to the following terms and conditions:","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("You agree to comply with Google’s terms and policies, including <policylink>Shopping ads policies</policylink> and <termslink>Google Ads Terms and Conditions</termslink>.","google-listings-and-ads"),{policylink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"shopping-ads-policies",href:"https://support.google.com/merchants/answer/6149970"}),termslink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"google-ads-terms-of-service",href:"https://support.google.com/adspolicy/answer/54818"})})),(0,s.createElement)(Vh,{label:(0,o.__)("I have read and accept these terms","google-listings-and-ads"),checked:r,onChange:a}))};function H_(e){let{text:t}=e;return(0,s.createElement)("div",{className:"gla-loading-label"},(0,s.createElement)(Bl.Spinner,null),t)}var U_=e=>{const{onCreateAccount:t,...n}=e,[r,a]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,n.loading?(0,s.createElement)(H_,{text:(0,o.__)("Creating…","google-listings-and-ads")}):(0,s.createElement)(gc,l({isSecondary:!0},n,{text:(0,o.__)("Create account","google-listings-and-ads"),onClick:()=>{a(!0)}})),r&&(0,s.createElement)(z_,{onCreateAccount:t,onRequestClose:()=>{a(!1)}}))};const V_=()=>{const{createNotice:e}=Np(),{fetchGoogleAdsAccount:t}=Og(),[n,r]=(0,s.useState)(!1),[a,{loading:i}]=Lp({path:"/wc/gla/ads/accounts",method:"POST"});return(0,s.createElement)(U_,{loading:i||n,onCreateAccount:async()=>{try{await a({parse:!1})}catch(t){if(428!==t.status)return void e("error",(0,o.__)("Unable to create Google Ads account. Please try again later.","google-listings-and-ads"))}r(!0),await t(),r(!1)}})};var W_=e=>{const{allowShowExisting:t,onShowExisting:n}=e;return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(V_,null)},t&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, use your existing Google Ads account","google-listings-and-ads"))))},Y_=e=>{const{accounts:t,...n}=e,r=[{value:"",label:(0,o.__)("Select one","google-listings-and-ads")},...t.map((e=>({value:e,label:B_(e)})))];return(0,s.createElement)(Kf,l({options:r},n))},K_=e=>{const{accounts:t,onCreateNew:n=(()=>{})}=e,[r,a]=(0,s.useState)(),[i,l]=(0,s.useState)(!1),[c]=Lp({path:"/wc/gla/ads/accounts",method:"POST",data:{id:r}}),{refetchGoogleAdsAccount:u}=G_(),{createNotice:d}=Np(),g=t.length>1;return(0,s.createElement)(xp,{className:"gla-connect-ads",appearance:Ep.GOOGLE_ADS},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select an existing account","google-listings-and-ads")),g&&(0,s.createElement)(cp.Body,null,(0,s.createInterpolateElement)((0,o.__)("If you manage multiple sub-accounts in Google Ads, please connect the relevant sub-account, not a manager account. <link>Learn more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-ads-connect-account",linkId:"connect-sub-account",href:"https://support.google.com/google-ads/answer/6139186"})})),(0,s.createElement)(Zf,null,(0,s.createElement)(Y_,{accounts:t,value:r,onChange:a}),i?(0,s.createElement)(H_,{text:(0,o.__)("Connecting…","google-listings-and-ads")}):(0,s.createElement)(gc,{isSecondary:!0,disabled:!r,eventName:"gla_ads_account_connect_button_click",onClick:async()=>{if(r){l(!0);try{await c(),await u()}catch(e){l(!1),d("error",(0,o.__)("Unable to connect your Google Ads account. Please try again later.","google-listings-and-ads"))}}}},(0,o.__)("Connect","google-listings-and-ads")))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, create a new Google Ads account","google-listings-and-ads"))))},Q_=()=>{const{existingAccounts:e}=(0,dn.useSelect)((e=>({existingAccounts:e(Lc).getExistingGoogleAdsAccounts(),isResolving:e(Lc).isResolving("getExistingGoogleAdsAccounts")})),[]),[t,n]=(0,s.useState)(!1);if(!e)return(0,s.createElement)(Qp,null);return 0===e.length||t?(0,s.createElement)(W_,{allowShowExisting:t,onShowExisting:()=>{n(!1)}}):(0,s.createElement)(K_,{accounts:e,onCreateNew:()=>{n(!0)}})};const Z_="setup-ads";var X_=e=>{let{additionalScopeEmail:t}=e;const{createNotice:n}=Np(),[r,{loading:a,data:i}]=zp(Z_,t);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(gc,{isSecondary:!0,loading:a||i,onClick:()=>{r().then((e=>{let{url:t}=e;window.location.href=t})).catch((()=>{n("error",(0,o.__)("Unable to get Google authorization page. Please try again later.","google-listings-and-ads"))}))},text:(0,o.__)("Allow full access","google-listings-and-ads"),eventName:"gla_google_account_connect_button_click",eventProps:{context:Z_,action:"scope"}})})};function J_(){const{google:e,scope:t}=Jg(),{googleAdsAccount:n}=G_();return e&&n?t.adsRequired?"disconnected"===n.status?(0,s.createElement)(Q_,null):(0,s.createElement)(q_,{googleAdsAccount:n}):(0,s.createElement)(X_,{additionalScopeEmail:e.email}):(0,s.createElement)(Qp,null)}var ew=__webpack_require__(3119),tw=[["DZ",250,"USD"],["AR",25e3,"ARS"],["AM",300,"USD"],["AU",600,"AUD"],["AT",400,"EUR"],["AZ",300,"USD"],["BH",300,"USD"],["BY",300,"USD"],["BE",400,"EUR"],["BO",350,"USD"],["BA",350,"EUR"],["BR",1200,"BRL"],["BG",700,"BGN"],["CA",600,"CAD"],["CL",350,"USD"],["CN",3e3,"CNY"],["CO",350,"USD"],["CR",350,"USD"],["HR",2500,"HRK"],["CY",350,"EUR"],["CZ",8500,"CZK"],["DK",3e3,"DKK"],["DO",350,"USD"],["EC",350,"USD"],["EG",3e3,"EGP"],["SV",350,"USD"],["EE",350,"EUR"],["FI",400,"EUR"],["FR",400,"EUR"],["GE",300,"USD"],["DE",400,"EUR"],["GR",350,"EUR"],["GT",350,"USD"],["HN",350,"USD"],["HK",3e3,"HKD"],["HU",12e4,"HUF"],["IS",400,"EUR"],["IN",2e4,"INR"],["ID",3e6,"IDR"],["IE",400,"EUR"],["IL",1500,"ILS"],["IT",400,"EUR"],["JP",6e4,"JPY"],["JO",250,"USD"],["KZ",300,"USD"],["KE",300,"USD"],["KR",6e5,"KRW"],["KW",300,"USD"],["LV",350,"EUR"],["LB",250,"USD"],["LY",250,"USD"],["LT",350,"EUR"],["LU",400,"EUR"],["MK",300,"USD"],["MY",1500,"MYR"],["MT",350,"EUR"],["MX",7e3,"MXN"],["ME",350,"EUR"],["MA",250,"USD"],["NL",400,"EUR"],["NZ",600,"NZD"],["NI",350,"USD"],["NG",300,"USD"],["NO",4e3,"NOK"],["OM",250,"USD"],["PK",400,"USD"],["PS",250,"USD"],["PA",350,"USD"],["PY",350,"USD"],["PE",350,"USD"],["PH",2e4,"PHP"],["PL",1200,"PLN"],["PT",400,"EUR"],["PR",350,"USD"],["QA",300,"USD"],["RO",1500,"RON"],["RU",3e4,"RUB"],["SA",1300,"SAR"],["RS",350,"EUR"],["SG",600,"SGD"],["SK",350,"EUR"],["SI",350,"EUR"],["ZA",6e3,"ZAR"],["ES",400,"EUR"],["LK",400,"USD"],["SE",4e3,"SEK"],["CH",400,"CHF"],["TW",12e3,"TWD"],["TH",12e3,"THB"],["TN",250,"USD"],["TR",2500,"TRY"],["UA",1e4,"UAH"],["AE",1600,"AED"],["GB",400,"GBP"],["US",500,"USD"],["UY",350,"USD"],["VE",350,"USD"],["VN",56e5,"VND"]],nw=e=>{const t=Xy();return(0,s.createElement)(Bh,l({className:"gla-free-ad-credit-country-modal",title:(0,o.__)("Check your maximum free credit","google-listings-and-ads")},e),(0,s.createElement)("p",null,(0,o.__)("Whatever you spend in the next month will be added back to your Google Ads account as free credit, up to a maximum limit depending on your store’s country.","google-listings-and-ads")),(0,s.createElement)("table",null,(0,s.createElement)("tbody",null,tw.map(((e,n)=>{const[r,o,a]=e;return(0,s.createElement)("tr",{key:n},(0,s.createElement)("td",null,t[r]),(0,s.createElement)("td",null,`${o} ${a}`))})))))},rw=()=>{const[e,t]=(0,s.useState)(!1);return(0,s.createElement)("div",{className:"gla-free-ad-credit"},(0,s.createElement)(ew.Z,null),(0,s.createElement)("div",null,(0,s.createElement)("div",{className:"gla-free-ad-credit__title"},(0,o.__)("Spend $500 to get $500 in Google Ads credits!","google-listings-and-ads")),(0,s.createElement)("div",{className:"gla-free-ad-credit__description"},(0,s.createInterpolateElement)((0,o.__)("New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days. Check how much credit you can receive in your country <checkLink>here</checkLink>. <termLink>Terms and conditions apply</termLink>.","google-listings-and-ads"),{checkLink:(0,s.createElement)(ql,{eventName:"gla_free_ad_credit_country_click",eventProps:{context:"setup-ads"},href:"#",type:"wp-admin",onClick:()=>{t(!0)}}),termLink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"free-ad-credit-terms",href:"https://www.google.com/ads/coupons/terms/"})})),e&&(0,s.createElement)(nw,{onRequestClose:()=>{t(!1)}})))},ow=e=>{const{onContinue:t=(()=>{})}=e,{google:n}=Jg(),{googleAdsAccount:r}=G_(),a=(()=>{const{googleAdsAccount:e}=G_();return e&&e.sub_account&&(0,Ed.getDateDifferenceInDays)(new Date,new Date(1e3*e.created_timestamp))<60})();if(!n||"yes"===n.active&&!r)return(0,s.createElement)(Wg,null);const i=!r.id;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Set up your accounts","google-listings-and-ads"),description:(0,o.__)("Connect your Google account and your Google Ads account to set up a paid Performance Max campaign.","google-listings-and-ads")}),(0,s.createElement)(gp,{title:(0,o.__)("Connect accounts","google-listings-and-ads"),description:(0,o.__)("Any campaigns created through this app will appear in your Google Ads account. You will be billed directly through Google.","google-listings-and-ads")},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(Vp,{googleAccount:n,hideAccountSwitch:!0,helper:(0,o.__)("This Google account is connected to your store’s product feed.","google-listings-and-ads")}),(0,s.createElement)(J_,null),a&&(0,s.createElement)(rw,null))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:i,onClick:t},(0,o.__)("Continue","google-listings-and-ads"))))};function aw(e,t){return e.map((e=>({label:t[e],value:e})))}var iw=e=>{const{formProps:{getInputProps:t},multiple:n=!0,disabled:r=!1,countrySelectHelperText:a}=e,i=Xy(),l=t("countryCodes"),c=n?(0,s.createElement)(yv,{label:(0,o.__)("Select countries","google-listings-and-ads"),help:a,disabled:r,value:l.value,additionalCountryCodes:r?l.value:void 0,onChange:l.onChange}):(0,s.createElement)(Yf,{label:(0,o.__)("Select one country","google-listings-and-ads"),help:a,disabled:r,options:aw(l.value,i),value:l.selected[0],onChange:l.onChange,role:"combobox"});return(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Choose where do you want your product ads to appear.","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,c)))},sw=__webpack_require__(7132),lw=e=>{const{countryCodes:t,dailyAverageCost:n=1/0}=e,{data:r}=(e=>{const t={country_codes:e},n=(0,tg.addQueryArgs)("/wc/gla/ads/campaigns/budget-recommendation",t);return Iv({path:n})})(t),a=Xy();if(!r)return null;const{currency:i,recommendations:l}=r,{daily_budget_low:c,daily_budget_high:u,country:d}=function(e){return e.reduce(((e,t)=>t.daily_budget_high>e.daily_budget_high?t:e))}(l),g=a[d],p=function(e){const t={strong:(0,s.createElement)("strong",null)},n=e?// translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount.
|
|
|
24 |
(0,o.__)("Most merchants targeting similar countries set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week.","google-listings-and-ads"):// translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount, 4: a country name selected by the merchant.
|
25 |
(0,o.__)("Most merchants targeting <strong>%4$s</strong> set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week.","google-listings-and-ads");for(var r=arguments.length,a=new Array(r>1?r-1:0),i=1;i<r;i++)a[i-1]=arguments[i];return(0,s.createInterpolateElement)((0,o.sprintf)(n,...a),t)}(l.length>1,c,u,i,g),f=n<c;return(0,s.createElement)("div",{className:"gla-budget-recommendation"},(0,s.createElement)("div",{className:"gla-budget-recommendation__recommendation"},(0,s.createElement)(sw.Z,null),(0,s.createElement)("div",null,p)),f&&(0,s.createElement)("div",{className:"gla-budget-recommendation__low-budget"},(0,s.createElement)(sw.Z,null),(0,s.createElement)("div",null,(0,o.__)("With a budget lower than your competitor range, your campaign may not get noticeable results.","google-listings-and-ads"))))};const cw={noPointerEvents:!0,readOnly:!0,tabIndex:-1};var uw=e=>{const{formProps:{getInputProps:t,setValue:n,values:r},disabled:a=!1}=e,{countryCodes:i,amount:c}=r,{googleAdsAccount:u}=G_(),d=30.4*c,g=null==u?void 0:u.currency,p=(0,s.useRef)(c);return(0,s.useEffect)((()=>{const e=a?void 0:p.current;n("amount",e)}),[a,n]),(0,s.createElement)("div",{className:"gla-budget-section"},(0,s.createElement)(gp,{disabled:a,title:(0,o.__)("Budget","google-listings-and-ads"),description:(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,o.__)("Enter a daily average cost that works best for your business and the results that you want. You can change your budget or cancel your ad at any time.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("You will be billed directly by Google Ads.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Google will optimize your ads to maximize performance across your selected country(s).","google-listings-and-ads")))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,{className:"gla-budget-section__card-body"},(0,s.createElement)("div",{className:"gla-budget-section__card-body__cost"},(0,s.createElement)(jy,l({label:(0,o.__)("Daily average cost","google-listings-and-ads"),suffix:g},t("amount"),a&&cw)),(0,s.createElement)(jy,{disabled:!0,label:(0,o.__)("Monthly max, estimated ","google-listings-and-ads"),suffix:g,value:d})),i.length>0&&(0,s.createElement)(lw,{countryCodes:i,dailyAverageCost:c})))))},dw=()=>{const e=e=>t=>{(0,Dl.recordEvent)("gla_setup_ads_faq",{id:e,action:t?"expand":"collapse"})};return(0,s.createElement)(gp,null,(0,s.createElement)(Yi,{header:(0,o.__)("Frequently asked questions","google-listings-and-ads")},(0,s.createElement)(Il,{initialOpen:!1,title:(0,o.__)("What do I pay for?","google-listings-and-ads"),onToggle:e("what-do-i-pay-for")},(0,s.createElement)(Fl,null,(0,o.__)("You only pay when someone clicks on your product ads to your store.","google-listings-and-ads"))),(0,s.createElement)(Il,{initialOpen:!1,title:(0,o.__)("What does daily average or monthly max mean?","google-listings-and-ads"),onToggle:e("what-does-daily-average-monthly-max-mean")},(0,s.createElement)(Fl,null,(0,o.__)("Some days you might spend less than your daily average, and on others you might spend up to 4 times as much. But over a month, your total spend across the month will be approximately as calculated above.","google-listings-and-ads")))))},gw=e=>{const{formProps:t}=e,n=!t.values.countryCodes.length;return(0,s.createElement)("div",{className:"gla-campaign-form-content"},(0,s.createElement)(iw,{formProps:t}),(0,s.createElement)(uw,{formProps:t,disabled:n}),(0,s.createElement)(dw,null))},pw=e=>{const{formProps:t,onContinue:n=(()=>{})}=e,{isValidForm:r}=t;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Create your paid campaign","google-listings-and-ads"),description:(0,s.createInterpolateElement)((0,o.__)("Paid Performance Max campaigns are automatically optimized for you by Google. <link>See what your ads will look like.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-ads",linkId:"see-what-ads-look-like",href:"https://support.google.com/google-ads/answer/6275294"})})}),(0,s.createElement)(gw,{formProps:t}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,disabled:!r,onClick:n},(0,o.__)("Continue","google-listings-and-ads"))))},fw=e=>{const{title:t,button:n}=e;return(0,s.createElement)(Zf,{className:"gla-title-button-layout"},(0,s.createElement)(cp.Title,{className:"title"},t),n)},mw=(e,t)=>{const n=(()=>{const[e,t]=(0,s.useState)(document.hasFocus());return(0,s.useEffect)((()=>{const e=()=>{t(!0)},n=()=>{t(!1)};return window.addEventListener("focus",e),window.addEventListener("blur",n),()=>{window.removeEventListener("focus",e),window.removeEventListener("blur",n)}}),[]),e})();(0,s.useEffect)((()=>{if(!n)return;e();const r=setInterval(e,1e3*t);return()=>clearInterval(r)}),[e,t,n])};const hw=()=>Uc()({path:"/wc/gla/ads/accounts",method:"POST"});var yw=e=>{let{billingUrl:t,onSetupComplete:n}=e;const{googleAdsAccount:r}=G_();return function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:()=>{};const{createNotice:t}=Np(),{receiveGoogleAdsAccountBillingStatus:n}=Og(),r=(0,s.useCallback)((async()=>{const r=await Uc()({path:"/wc/gla/ads/billing-status"});if("approved"===r.status)try{await hw(),await e(),n(r)}catch(e){t("error",(0,o.__)("Unable to complete your Google Ads account setup. Please try again later.","google-listings-and-ads"))}}),[t,e,n]);mw(r,30)}(n),r?(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card"},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card__account-number"},(0,s.createElement)(fw,{title:B_(r.id)})),(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card__description"},(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card__description__text"},(0,o.__)("You do not have billing information set up in your Google Ads account. Once you have completed your billing setup, your campaign will launch automatically.","google-listings-and-ads")),(0,s.createElement)(gc,{isSecondary:!0,href:t,target:"_blank",eventName:"gla_ads_set_up_billing_click",eventProps:{context:"setup-ads",link_id:"set-up-billing",href:t}},(0,o.__)("Set up billing","google-listings-and-ads")))))):(0,s.createElement)(Wg,null)},vw=__webpack_require__(7188),bw=()=>{const{googleAdsAccount:e}=G_();return e?(0,s.createElement)("div",{className:"gla-google-ads-billing-saved-card"},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)("div",{className:"gla-google-ads-billing-saved-card__account-number"},(0,s.createElement)(fw,{title:B_(e.id)})),(0,s.createElement)("div",{className:"gla-google-ads-billing-saved-card__description"},(0,s.createElement)(vw.Z,null),(0,s.createElement)("div",null,(0,s.createInterpolateElement)((0,o.__)("Great! You already have billing information saved for this <link>Google Ads account</link>.","google-listings-and-ads"),{link:(0,s.createElement)(ql,{eventName:"gla_google_ads_account_link_click",eventProps:{context:"setup-ads",link_id:"google-ads-account",href:"https://ads.google.com/aw/overview "},type:"external",target:"_blank",href:"https://ads.google.com/aw/overview"})})))))):(0,s.createElement)(Wg,null)},_w=e=>{const{formProps:{isSubmitting:t,handleSubmit:n}}=e,{billingStatus:r}=(0,dn.useSelect)((e=>({billingStatus:e(Lc).getGoogleAdsAccountBillingStatus()})),[]);return r?(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Set up billing","google-listings-and-ads"),description:"approved"===r.status?(0,o.__)("You will be billed directly by Google Ads, and you only pay when you get results.","google-listings-and-ads"):(0,o.__)("In order to launch your paid campaign, your billing information is required. You will be billed directly by Google and only pay when someone clicks on your ad.","google-listings-and-ads")}),(0,s.createElement)(gp,{title:(0,o.__)("Payment info through Google Ads","google-listings-and-ads")},"approved"===r.status?(0,s.createElement)(bw,null):(0,s.createElement)(yw,{billingUrl:r.billing_url||"https://support.google.com/google-ads/answer/2375375",onSetupComplete:n})),"approved"===r.status&&(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,loading:t,onClick:n},(0,o.__)("Launch paid campaign","google-listings-and-ads")))):(0,s.createElement)(Wg,null)},ww=e=>{const{formProps:t}=e,[n,r]=(0,s.useState)("1"),a=e=>{e<n&&r(e)};return(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:n,steps:[{key:"1",label:(0,o.__)("Set up your accounts","google-listings-and-ads"),content:(0,s.createElement)(ow,{onContinue:()=>{r("2")}}),onClick:a},{key:"2",label:(0,o.__)("Create your paid campaign","google-listings-and-ads"),content:(0,s.createElement)(pw,{formProps:t,onContinue:()=>{r("3")}}),onClick:a},{key:"3",label:(0,o.__)("Set up billing","google-listings-and-ads"),content:(0,s.createElement)(_w,{formProps:t}),onClick:a}]})},Ew=()=>(0,s.createElement)(qg,{title:(0,o.__)("Set up paid campaign","google-listings-and-ads"),helpButton:(0,s.createElement)(Ug,{eventContext:"setup-ads"}),backHref:(0,pc.getNewPath)({},"/google/dashboard"),onBackButtonClick:()=>{(0,Dl.recordEvent)("gla_setup_ads",{target:"back",trigger:"click"})}}),$w=e=>{const{formProps:t}=e;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Ew,null),(0,s.createElement)(ww,{formProps:t}))},Cw=e=>{const t={};return 0===e.countryCodes.length&&(t.countryCodes=(0,o.__)("Please select at least one country for your ads campaign.","google-listings-and-ads")),e.amount<=0&&(t.amount=(0,o.__)("Please make sure daily average cost is greater than 0.","google-listings-and-ads")),t},kw=()=>{const[e,t]=(0,s.useState)(!1),[n,r]=(0,s.useState)(!1),[a,i]=function(){const{createAdsCampaign:e}=Og(),{createNotice:t}=Np(),[n,r]=(0,s.useState)(!1),a=(0,s.useCallback)((()=>Uc()({path:"/wc/gla/ads/setup/complete",method:"POST"}).catch((()=>(t("error",(0,o.__)("Unable to complete your ads setup. Please try again later.","google-listings-and-ads")),Promise.reject())))),[t]);return[(0,s.useCallback)(((t,n,o)=>{r(!0),e(t,n).then(a).then(o).catch((()=>r(!1)))}),[e,a]),n]}(),l=Bv(),{data:c}=Cy(),u={amount:0,countryCodes:c};(0,s.useEffect)((()=>{if(n){const e=(0,pc.getNewPath)({guide:"campaign-creation-success"},"/google/dashboard");window.location.href=l+e}}),[n,l]);const d=e&&!n;return D_((0,o.__)("You have unsaved campaign data. Are you sure you want to leave?","google-listings-and-ads"),d),c?(0,s.createElement)(Bl.Form,{initialValues:u,validate:Cw,onChange:(e,n)=>{t(!(0,ie.isEqual)(u,n))},onSubmit:e=>{const{amount:t,countryCodes:n}=e;(0,Dl.recordEvent)("gla_launch_paid_campaign_button_click",{audiences:n.join(","),budget:t}),a(t,n,(()=>{r(!0)}))}},(e=>{const t={...e,isSubmitting:i};return(0,s.createElement)($w,{formProps:t})})):null},Sw=()=>(Gg("full-page"),(0,s.createElement)(kw,null)),xw=e=>{let{context:t}=e;const{googleAdsAccount:n}=G_(),{code:r}=Ay();return n&&"connected"===n.status&&n.currency!==r?(0,s.createElement)(Fc,{className:"gla-different-currency-notice",status:"warning",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("Note: The currency set in your Google Ads account is <adsCurrency />, which is different from your store currency, <storeCurrency />. <readMoreLink>Read more</readMoreLink>","google-listings-and-ads"),{adsCurrency:(0,s.createElement)("strong",null,n.currency),storeCurrency:(0,s.createElement)("strong",null,r),readMoreLink:(0,s.createElement)(zl,{className:"gla-different-currency-notice__link",href:"https://support.google.com/google-ads/answer/9841530",context:t,linkId:"setting-up-currency"})})):null};var Ow=["menuitem","menuitemradio","menuitemcheckbox"],Pw=function(e){Ns(o,e);var t,n,r=(t=o,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=Ms(t);if(n){var o=Ms(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return Ts(this,e)});function o(){var e;return Os(this,o),(e=r.apply(this,arguments)).onKeyDown=e.onKeyDown.bind(Rs(e)),e.bindContainer=e.bindContainer.bind(Rs(e)),e.getFocusableContext=e.getFocusableContext.bind(Rs(e)),e.getFocusableIndex=e.getFocusableIndex.bind(Rs(e)),e}return As(o,[{key:"componentDidMount",value:function(){this.container.addEventListener("keydown",this.onKeyDown),this.container.addEventListener("focus",this.onFocus)}},{key:"componentWillUnmount",value:function(){this.container.removeEventListener("keydown",this.onKeyDown),this.container.removeEventListener("focus",this.onFocus)}},{key:"bindContainer",value:function(e){var t=this.props.forwardedRef;this.container=e,(0,ie.isFunction)(t)?t(e):t&&"current"in t&&(t.current=e)}},{key:"getFocusableContext",value:function(e){var t=(this.props.onlyBrowserTabstops?ls.focus.tabbable:ls.focus.focusable).find(this.container),n=this.getFocusableIndex(t,e);return n>-1&&e?{index:n,target:e,focusables:t}:null}},{key:"getFocusableIndex",value:function(e,t){var n=e.indexOf(t);if(-1!==n)return n}},{key:"onKeyDown",value:function(e){this.props.onKeyDown&&this.props.onKeyDown(e);var t=this.getFocusableContext,n=this.props,r=n.cycle,o=void 0===r||r,a=n.eventToOffset,i=n.onNavigate,s=void 0===i?ie.noop:i,l=n.stopNavigationEvents,c=a(e);if(void 0!==c&&l){e.stopImmediatePropagation();var u=e.target.getAttribute("role");Ow.includes(u)&&e.preventDefault()}if(c){var d=t(e.target.ownerDocument.activeElement);if(d){var g=d.index,p=d.focusables,f=o?function(e,t,n){var r=e+n;return r<0?t+r:r>=t?r-t:r}(g,p.length,c):g+c;f>=0&&f<p.length&&(p[f].focus(),s(f,p[f]))}}}},{key:"render",value:function(){var e=this.props,t=e.children,n=c(e,["children"]);return(0,s.createElement)("div",l({ref:this.bindContainer},(0,ie.omit)(n,["stopNavigationEvents","eventToOffset","onNavigate","onKeyDown","cycle","onlyBrowserTabstops","forwardedRef"])),t)}}]),o}(s.Component),Aw=function(e,t){return(0,s.createElement)(Pw,l({},e,{forwardedRef:t}))};Aw.displayName="NavigableContainer";var Nw=(0,s.forwardRef)(Aw),Rw=(0,s.forwardRef)((function(e,t){var n=e.role,r=void 0===n?"menu":n,o=e.orientation,a=void 0===o?"vertical":o,i=c(e,["role","orientation"]);return(0,s.createElement)(Nw,l({ref:t,stopNavigationEvents:!0,onlyBrowserTabstops:!1,role:r,"aria-orientation":"presentation"===r?null:a,eventToOffset:function(e){var t=e.keyCode,n=[cs.DOWN],r=[cs.UP];return"horizontal"===a&&(n=[cs.RIGHT],r=[cs.LEFT]),"both"===a&&(n=[cs.RIGHT,cs.DOWN],r=[cs.LEFT,cs.UP]),(0,ie.includes)(n,t)?1:(0,ie.includes)(r,t)?-1:(0,ie.includes)([cs.DOWN,cs.UP,cs.LEFT,cs.RIGHT],t)?0:void 0}},i))}));const Tw=e=>{let{tabId:t,href:n,children:r,selected:o,...a}=e;return(0,s.createElement)(Bl.Link,l({role:"tab",tabIndex:o?null:-1,"aria-selected":o,id:t,href:n},a),r)};var Mw=e=>{const{selectedKey:t,tabs:n}=e;return(0,s.createElement)("div",{className:"app-tab-nav"},(0,s.createElement)(Rw,{role:"tablist",orientation:"horizontal",className:"app-tab-nav__tabs"},n.map((e=>(0,s.createElement)(Tw,{className:d()("components-button","app-tab-nav__tabs-item",{"is-active":e.key===t}),tabId:`${e.key}`,"aria-controls":`${e.key}-view`,selected:e.key===t,key:e.key,href:e.href},e.title)))))},jw=()=>{var e;return!(null===(e=window.wcAdminFeatures)||void 0===e||!e.navigation)};const Iw={match:{url:"/google/dashboard"},wpOpenMenu:"toplevel_page_woocommerce-marketing"};function Fw(){const e=jw();return(0,s.useEffect)((()=>{e||window.wpNavMenuClassChange(Iw,Iw.match.url)}),[e])}let Dw=[{key:"dashboard",title:(0,o.__)("Dashboard","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/dashboard",{})},{key:"reports",title:(0,o.__)("Reports","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/reports",{})},{key:"product-feed",title:(0,o.__)("Product Feed","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/product-feed",{})},{key:"settings",title:(0,o.__)("Settings","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/settings",{})}];Zl.enableReports||(Dw=Dw.filter((e=>{let{key:t}=e;return"reports"!==t})));var Lw=()=>{Fw();const e=(()=>{var e;const t=(0,pc.getPath)();return null===(e=Dw.find((e=>t.includes(e.key))))||void 0===e?void 0:e.key})();return(0,s.createElement)(Mw,{tabs:Dw,selectedKey:e})},Gw=()=>jw()?null:(0,s.createElement)(Lw,null),Bw=window.wc.customerEffortScore;const qw="undefined"!=typeof window&&"localStorage"in window,zw={get:e=>qw?window.localStorage.getItem(e):null,set:(e,t)=>qw?window.localStorage.setItem(e,t):null,remove:e=>qw?window.localStorage.removeItem(e):null};var Hw=zw,Uw=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Gc;return(0,dn.useSelect)((t=>t(e).getNotices()),[e])};const Vw=__webpack_require__.n(Bw)()||Bw.CustomerEffortScore;var Ww=e=>{let{eventContext:t,label:n}=e;return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Gc;const n=Uw(t).find((t=>t.content===e));(0,s.useEffect)((()=>{const{removeNotice:e}=(0,dn.dispatch)(t);return()=>{n&&e(n.id)}}),[n,t])}(n,"core/notices2"),(0,s.createElement)(Vw,{label:n,recordScoreCallback:(e,n)=>{(0,Dl.recordEvent)("gla_ces_feedback",{context:t,score:e,comments:n||""})},onNoticeShownCallback:()=>{Hw.remove(ac),(0,Dl.recordEvent)("gla_ces_snackbar_open",{context:t})},onNoticeDismissedCallback:()=>{(0,Dl.recordEvent)("gla_ces_snackbar_closed",{context:t})},onModalShownCallback:()=>{(0,Dl.recordEvent)("gla_ces_modal_open",{context:t})},icon:(0,s.createElement)("span",{style:{height:21,width:21},role:"img","aria-label":(0,o.__)("Pencil icon","google-listings-and-ads")},"✏️")})},Yw=e=>{const{trackEventReportId:t}=e,n=(()=>{const e=(0,pc.getQuery)(),{period:t,compare:n,before:r,after:o}=(0,Ed.getDateParamsFromQuery)(e),{primary:a,secondary:i}=(0,Ed.getCurrentDates)(e);return{period:t,compare:n,before:r,after:o,primaryDate:a,secondaryDate:i}})();return(0,s.createElement)(Bl.DateRangeFilterPicker,{dateQuery:n,onRangeSelect:e=>{t&&(0,Dl.recordEvent)("gla_datepicker_update",{report:t,...e}),(0,pc.updateQueryString)(e)},isoDateFormat:"YYYY-MM-DD"})},Kw=function(e){let t;function n(e){const n={code:"USD",symbol:"$",symbolPosition:"left",thousandSeparator:",",decimalSeparator:".",precision:2,...e};t={code:n.code.toString(),symbol:n.symbol.toString(),symbolPosition:n.symbolPosition.toString(),decimalSeparator:n.decimalSeparator.toString(),priceFormat:a(n),thousandSeparator:n.thousandSeparator.toString(),precision:parseInt(n.precision,10)}}function r(e,n=!1){const r=Py(t,e);if(""===r)return r;const{priceFormat:a,symbol:i,code:s}=t;return(0,o.sprintf)(a,n?s:i,r)}function a(e){if(e.priceFormat)return function(e){const t=document.createElement("DIV");return t.innerHTML=e,t.textContent||t.innerText||""}(e.priceFormat.toString());switch(e.symbolPosition){case"left":return"%1$s%2$s";case"right":return"%2$s%1$s";case"left_space":return"%1$s %2$s";case"right_space":return"%2$s %1$s"}return"%1$s%2$s"}return n(e),{getCurrencyConfig:()=>({...t}),getDataForCountry:function(e,t={},n={}){const r=t[e]||{},o=n[r.currency_code];return o?{code:r.currency_code,symbol:(0,Zy.decodeEntities)(o),symbolPosition:r.currency_pos,thousandSeparator:r.thousand_sep,decimalSeparator:r.decimal_sep,precision:r.num_decimals}:{}},setCurrency:n,formatAmount:r,formatCurrency:function(e){return ss()("Currency().formatCurrency",{version:"5.0.0",alternative:"Currency().formatAmount",plugin:"WooCommerce",hint:"`formatAmount` accepts the same arguments as formatCurrency"}),r(e)},getPriceFormat:a,formatDecimal(e){if("number"!=typeof e&&(e=parseFloat(e)),Number.isNaN(e))return 0;const{precision:n}=t;return Math.round(e*Math.pow(10,n))/Math.pow(10,n)},formatDecimalString(e){if("number"!=typeof e&&(e=parseFloat(e)),Number.isNaN(e))return"";const{precision:n}=t;return e.toFixed(n)},render:e=>("number"!=typeof e&&(e=parseFloat(e)),e<0?(0,s.createElement)("span",{className:"is-negative"},r(e)):r(e))}};function Qw(){const e=Ay(),{googleAdsAccount:t}=G_(),n=(null==t?void 0:t.currency)||"",r=(null==t?void 0:t.symbol)||"",o=(0,s.useMemo)((()=>({...e,code:n,symbol:r})),[e,n,r]),a=(0,s.useMemo)((()=>Kw(o).formatAmount),[o]);return{adsCurrencyConfig:o,formatAmount:a}}function Zw(){const e=(0,pc.getQuery)();return Pg(e)}function Xw(e){const t=Zw();return(0,dn.useSelect)((n=>{const{getDashboardPerformance:r}=n(Lc),o=r(e,t,"primary"),a=r(e,t,"secondary");let i=null;const s=o.loaded&&a.loaded;return s&&o.data&&a.data&&(i=Od(o.data,a.data)),{loaded:s,data:i}}),[e,t])}var Jw=e=>{let t,{loaded:n,data:r,children:o,noDataMessage:a}=e;return t=n?r?(0,s.createElement)(Bl.SummaryList,null,(()=>o(r))):(0,s.createElement)("div",{className:"gla-summary-card__body"},(0,s.createElement)("p",null,a.body),(0,s.createElement)(gc,{eventName:a.eventName,eventProps:{context:"dashboard",href:a.link},href:a.link,target:"_blank",isSmall:!0,isSecondary:!0},a.buttonLabel)):(0,s.createElement)(Bl.SummaryListPlaceholder,{numberOfItems:2}),t},eE=e=>{let{title:t,children:n}=e;return(0,s.createElement)(De,{className:"gla-summary-card"},(0,s.createElement)(zi,{size:"medium"},(0,s.createElement)(Ii,{variant:"title.small"},t)),n)},tE=e=>{const{eventName:t="gla_add_paid_campaign_clicked",eventProps:n,children:r,onClick:a=(()=>{}),...i}=e,{adsSetupComplete:c}=Zl,u=c?kc():(0,pc.getNewPath)({},"/google/setup-ads",{}),d={context:"",href:u};return(0,s.createElement)(gc,l({isSmall:!0,isSecondary:!0,onClick:function(){(0,Dl.recordEvent)(t,{...d,...n}),(0,pc.getHistory)().push(u),a(...arguments)}},i),r||(0,o.__)("Add paid campaign","google-listings-and-ads"))};const nE=e=>{let{adsAccount:t}=e;const n=t.sub_account||"disconnected"===t.status;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,n?(0,o.__)("Create your first campaign and get $500 in ad credit*","google-listings-and-ads"):(0,o.__)("Create your first campaign","google-listings-and-ads")),(0,s.createElement)(tE,{eventProps:{context:"add-paid-campaign-promotion"}}))};var rE=function(){const{googleAdsAccount:e}=G_();return(0,s.createElement)("div",{className:"gla-summary-card__body"},e?(0,s.createElement)(nE,{adsAccount:e}):(0,s.createElement)(Bl.Spinner,null))};const oE={precision:0},aE=()=>{const e=Ty(oE),{data:t,loaded:n}=Xw(ec);return(0,s.createElement)(Jw,{loaded:n,data:t,noDataMessage:{body:(0,o.__)("We're having trouble loading this data. Try again later, or track your performance in Google Merchant Center.","google-listings-and-ads"),link:"https://merchants.google.com/mc/reporting/dashboard",eventName:"gla_google_mc_link_click",buttonLabel:(0,o.__)("Open Google Merchant Center","google-listings-and-ads")}},(t=>[(0,s.createElement)(Bl.SummaryNumber,{key:"1",label:(0,o.__)("Clicks","google-listings-and-ads"),value:e(t.clicks.value),prevValue:e(t.clicks.prevValue),delta:t.clicks.delta}),(0,s.createElement)(Bl.SummaryNumber,{key:"2",label:(0,o.__)("Total Spend","google-listings-and-ads"),value:(0,o.__)("Free","google-listings-and-ads"),delta:null})]))},iE=()=>{const{formatAmount:e}=Qw(),{data:t,loaded:n}=Xw(Jl);return(0,s.createElement)(Jw,{loaded:n,data:t,noDataMessage:{body:(0,o.__)("We're having trouble loading this data. Try again later, or track your performance in Google Ads.","google-listings-and-ads"),link:"https://ads.google.com/",eventName:"gla_google_ads_link_click",buttonLabel:(0,o.__)("Open Google Ads","google-listings-and-ads")}},(t=>[(0,s.createElement)(Bl.SummaryNumber,{key:"1",label:(0,o.__)("Total Sales","google-listings-and-ads"),value:e(t.sales.value,!0),prevValue:e(t.sales.prevValue,!0),delta:t.sales.delta}),(0,s.createElement)(Bl.SummaryNumber,{key:"2",label:(0,o.__)("Total Spend","google-listings-and-ads"),value:e(t.spend.value,!0),prevValue:e(t.spend.prevValue,!0),delta:t.spend.delta})]))};function sE(){const{adsSetupComplete:e}=Zl;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(eE,{title:(0,o.__)("Performance (Free Listing)","google-listings-and-ads")},(0,s.createElement)(aE,null)),(0,s.createElement)(eE,{title:(0,o.__)("Performance (Paid Campaigns)","google-listings-and-ads")},e?(0,s.createElement)(iE,null):(0,s.createElement)(rE,null)))}function lE(e){let{title:t,children:n}=e;return(0,s.createElement)("div",{className:"gla-guide__page-content"},(0,s.createElement)("h2",{className:"gla-guide__page-content__header"},t),(0,s.createElement)("div",{className:"gla-guide__page-content__body"},n))}function cE(e){const{context:t,href:n,className:r,...o}=e;return(0,s.createElement)(ql,l({className:d()("gla-guide__page-content__link",r),eventName:"gla_modal_content_link_click",eventProps:{context:t,href:n},type:"external",target:"_blank",href:n},o))}var uE=__webpack_require__(221);const dE="create-another-campaign",gE="confirm";function pE(e){let{onGuideRequestClose:t=(()=>{})}=e;(0,s.useEffect)((()=>{(0,Dl.recordEvent)("gla_modal_open",{context:oc})}),[]);const n=(0,s.useCallback)((e=>t(e,"dismiss")),[t]);return(0,s.createElement)(Bh,{className:"gla-campaign-creation-success-guide",onRequestClose:n,buttons:[(0,s.createElement)(xl,{key:"0",isTertiary:!0,"data-action":dE,onClick:t},(0,o.__)("Create another campaign","google-listings-and-ads")),(0,s.createElement)(xl,{key:"1",isPrimary:!0,"data-action":gE,onClick:t},(0,o.__)("Got it","google-listings-and-ads"))]},(0,s.createElement)("div",{className:"gla-campaign-creation-success-guide__header-image"},(0,s.createElement)("img",{src:uE,alt:(0,o.__)("Drawing of a person who successfuly launched a campaign","google-listings-and-ads"),width:"413",height:"160"})),(0,s.createElement)(lE,{title:(0,o.__)("You've set up a paid Performance Max Campaign!","google-listings-and-ads")},(0,s.createInterpolateElement)((0,o.__)("You can pause or edit your campaign at any time. For best results, we recommend allowing your campaign to run for at least 14 days without pausing or editing. <link>Learn more about Performance Max technology.</link>","google-listings-and-ads"),{link:(0,s.createElement)(cE,{href:"https://support.google.com/google-ads/answer/10724817",context:"campaign-creation-performance-max"})})))}var fE=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",l({className:d()("app-table-card-div",t)},n))};const mE=(e,t,n)=>{const r=t.includes(n)?"on":"off";(0,Dl.recordEvent)("gla_table_header_toggle",{report:e,column:n,status:r})},hE=(e,t,n)=>{(0,Dl.recordEvent)("gla_table_sort",{report:e,column:t,direction:n})};var yE=e=>{const{trackEventReportId:t,...n}=e;function r(e,n){return function(){for(var r=arguments.length,o=new Array(r),a=0;a<r;a++)o[a]=arguments[a];t&&e(t,...o),n&&n(...o)}}return(0,s.createElement)(fE,null,(0,s.createElement)(Bl.TableCard,l({},n,{onColumnsChange:r(mE,e.onColumnsChange),onSort:r(hE,e.onSort)})))},vE=e=>{const{programId:t,onRequestClose:n}=e,[r,a]=(0,s.useState)(!1),i=Og(),l=()=>{r||n()};return(0,s.createElement)(Bh,{className:"gla-remove-program-modal",title:(0,o.__)("Permanently Remove?","google-listings-and-ads"),isDismissible:!r,buttons:[(0,s.createElement)(xl,{key:"keep",isSecondary:!0,disabled:r,onClick:l},(0,o.__)("Keep Campaign","google-listings-and-ads")),(0,s.createElement)(gc,{key:"remove",isPrimary:!0,isDestructive:!0,loading:r,onClick:()=>{a(!0),i.deleteAdsCampaign(t).then((()=>n())).catch((()=>a(!1)))}},(0,o.__)("Remove Campaign","google-listings-and-ads"))],onRequestClose:l},(0,s.createElement)("p",null,(0,o.__)("Results typically improve with time with Google’s paid ad campaigns. Removing a paid ad campaign will result in the loss of any optimisations learned from those campaigns.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Once a campaign is removed, it cannot be re-enabled.","google-listings-and-ads")))},bE=e=>{const{programId:t}=e,[n,r]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{isDestructive:!0,isLink:!0,onClick:()=>{r(!0)}},(0,o.__)("Remove","google-listings-and-ads")),n&&(0,s.createElement)(vE,{programId:t,onRequestClose:()=>{r(!1)}}))},_E=e=>{let{programId:t,onRequestClose:n}=e;return(0,s.createElement)(Bh,{className:"gla-edit-program-prompt-modal",title:(0,o.__)("Before you edit…","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"no",isSecondary:!0,onClick:()=>{n()}},(0,o.__)("Don't edit","google-listings-and-ads")),(0,s.createElement)(xl,{key:"yes",isPrimary:!0,onClick:()=>{const e=0===t?(0,pc.getNewPath)({subpath:hc},$c):(e=>(0,pc.getNewPath)({subpath:yc,programId:e},$c))(t);(0,pc.getHistory)().push(e),(0,Dl.recordEvent)("gla_dashboard_edit_program_click",{programId:t,url:e})}},(0,o.__)("Continue to edit","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",null,(0,o.__)("Results typically improve with time with Google’s Free Listing and paid ad campaigns.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Editing will result in the loss of any optimisations learned over time.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("We recommend allowing your programs to run for at least 14 days after set up, without pausing or editing, for optimal performance.","google-listings-and-ads")))},wE=e=>{const{programId:t}=e;return(0,s.createElement)(xy,{button:(0,s.createElement)(xl,{isLink:!0},(0,o.__)("Edit","google-listings-and-ads")),modal:(0,s.createElement)(_E,{programId:t})})};const EE="getAdsCampaigns";var $E=()=>(0,dn.useSelect)((e=>{const{adsSetupComplete:t}=Zl;if(!t)return{loading:!1,loaded:!0,data:[]};const n=e(Lc),r=n[EE]();return{loading:n.isResolving(EE),loaded:n.hasFinishedResolution(EE),data:r}}),[]),CE=e=>{const{onPauseCampaign:t=(()=>{}),onRequestClose:n}=e;return(0,s.createElement)(Bh,{className:"gla-pause-program-modal",title:(0,o.__)("Before you pause…","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"1",isSecondary:!0,onClick:()=>{n()}},(0,o.__)("Keep Active","google-listings-and-ads")),(0,s.createElement)(xl,{key:"2",isPrimary:!0,onClick:()=>{t()}},(0,o.__)("Pause Campaign","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",null,(0,o.__)("Results typically improve with time with Google’s paid ad campaigns. If you pause, your products won’t be shown to people looking for what you offer.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Pausing a paid ad campaign will result in the loss of any optimisations learned from those campaigns.","google-listings-and-ads")))},kE=function(e){var t=e.className,n=e.checked,r=e.id,o=e.disabled,a=e.onChange,i=void 0===a?ie.noop:a,u=c(e,["className","checked","id","disabled","onChange"]),g=d()("components-form-toggle",t,{"is-checked":n,"is-disabled":o});return(0,s.createElement)("span",{className:g},(0,s.createElement)("input",l({className:"components-form-toggle__input",id:r,type:"checkbox",checked:n,onChange:i,disabled:o},u)),(0,s.createElement)("span",{className:"components-form-toggle__track"}),(0,s.createElement)("span",{className:"components-form-toggle__thumb"}))};function SE(e){var t,n,r=e.label,o=e.checked,a=e.help,i=e.className,l=e.onChange,c=e.disabled,u=rf(SE),g="inspector-toggle-control-".concat(u);return a&&(t=g+"__help",n=(0,ie.isFunction)(a)?a(o):a),(0,s.createElement)(gf,{id:g,help:n,className:d()("components-toggle-control",i)},(0,s.createElement)(kE,{id:g,checked:o,onChange:function(e){l(e.target.checked)},"aria-describedby":t,disabled:c}),(0,s.createElement)("label",{htmlFor:g,className:"components-toggle-control__label"},r))}var xE=e=>(0,s.createElement)("div",{className:"app-standalone-toggle-control"},(0,s.createElement)(SE,e)),OE=e=>{const{program:t}=e,[n,r]=(0,s.useState)(t.active),[o,a]=(0,s.useState)(!1),{updateAdsCampaign:i}=Og();return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xE,{checked:n,onChange:e=>{!1!==e?(r(e),i(t.id,{status:"enabled"})):a(!0)}}),o&&(0,s.createElement)(CE,{programId:t.id,onPauseCampaign:()=>{a(!1),r(!1),i(t.id,{status:"paused"})},onRequestClose:()=>{a(!1)}}))},PE=()=>(0,s.createElement)(Kp,{text:(0,o.__)("Free listings cannot be paused through WooCommerce. Go to Google Merchant Center for advanced settings.","google-listings-and-ads")},(0,s.createElement)(xE,{checked:!0,disabled:!0}));const AE=[{key:"title",label:(0,o.__)("Program","google-listings-and-ads"),isLeftAligned:!0,required:!0},{key:"country",label:(0,o.__)("Country","google-listings-and-ads"),isLeftAligned:!0},{key:"dailyBudget",label:(0,o.__)("Daily budget","google-listings-and-ads")},{key:"enabled",label:(0,o.__)("Enabled","google-listings-and-ads")},{key:"actions",label:"",required:!0}];function NE(e){let{countryCodes:t,countryNameMap:n}=e;const[r]=t;return(0,s.createElement)("span",null,n[r],t.length>=2&&(0,o.sprintf)(// translators: %d: number of countries, with minimum value of 1.
|
26 |
(0,o.__)(" + %d more","google-listings-and-ads"),t.length-1))}var RE=e=>{const t=(0,pc.getQuery)(),{formatAmount:n}=Qw(),{data:r}=Cy(),{data:a}=$E(),i=Xy();if(!r||!a)return(0,s.createElement)(Wg,null);const c=[{id:0,title:(0,o.__)("Free listings","google-listings-and-ads"),dailyBudget:(0,o.__)("Free","google-listings-and-ads"),country:(0,s.createElement)(NE,{countryCodes:r,countryNameMap:i}),active:!0},...a.map((e=>({id:e.id,title:e.name,dailyBudget:n(e.amount,!0),country:(0,s.createElement)(NE,{countryCodes:e.displayCountries,countryNameMap:i}),active:"enabled"===e.status})))];return(0,s.createElement)(yE,l({className:"gla-all-programs-table-card",title:(0,o.__)("Programs","google-listings-and-ads"),actions:(0,s.createElement)(tE,{eventProps:{context:"programs-table-card"}}),headers:AE,rows:c.map((e=>[{display:e.title},{display:e.country},{display:e.dailyBudget},{display:0===e.id?(0,s.createElement)(PE,null):(0,s.createElement)(OE,{key:e.id,program:e})},{display:(0,s.createElement)("div",{className:"program-actions",key:e.id},(0,s.createElement)(wE,{programId:e.id}),0!==e.id&&(0,s.createElement)(bE,{programId:e.id}))}])),totalRows:c.length,rowsPerPage:c.length,query:t,onQueryChange:pc.onQueryChange},e))},TE=()=>{var e;return!(null===(e=window.wcTracks)||void 0===e||!e.isEnabled)},ME=e=>{const{formProps:t}=e,{values:n,isValidForm:r,getInputProps:a,handleSubmit:i}=t,{locale:c,language:u}=n;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Where do you want to sell your products?","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Language","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,s.createInterpolateElement)((0,o.__)("Listings can only be displayed in your site language. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-audience",linkId:"site-language",href:"https://support.google.com/merchants/answer/160637"})})),(0,s.createElement)(hy,{selected:c,options:[{label:u,value:c}]})),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Location","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,o.__)("Your store should already have the appropriate shipping and tax rates (if required) for potential customers in your selected location(s).","google-listings-and-ads")),(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(yy,l({},a("location"),{collapsible:!0,label:(0,o.__)("Selected countries only","google-listings-and-ads"),value:"selected"}),(0,s.createElement)("div",{className:"input"},(0,s.createElement)(Wy,l({multiple:!0},a("countries")))),(0,s.createElement)("div",{className:"cannot-find-country"},(0,o.__)("Can’t find a country? Only supported countries can be selected.","google-listings-and-ads"))),(0,s.createElement)(yy,l({},a("location"),{label:(0,o.__)("All countries","google-listings-and-ads"),value:"all"}),(0,s.createElement)(my,null,(0,o.__)("Your listings will be shown in all supported countries.","google-listings-and-ads")))))))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:!r,onClick:i},(0,o.__)("Continue","google-listings-and-ads"))))};function jE(e){let{initialData:t,onChange:n=(()=>{}),onContinue:r=(()=>{})}=e;return t?(0,s.createElement)("div",{className:"gla-choose-audience"},(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Choose your audience","google-listings-and-ads"),description:(0,o.__)("Configure who sees your product listings on Google.","google-listings-and-ads")}),t&&(0,s.createElement)(Bl.Form,{initialValues:{locale:t.locale,language:t.language,location:t.location,countries:t.countries||[]},validate:e=>{const t={};return e.location||(t.location=(0,o.__)("Please select a location option.","google-listings-and-ads")),"selected"===e.location&&0===e.countries.length&&(t.countries=(0,o.__)("Please select at least one country.","google-listings-and-ads")),t},onSubmit:r,onChange:n},(e=>(0,s.createElement)(ME,{formProps:e}))))):(0,s.createElement)(Wg,null)}var IE=e=>{let{countries:t,onRequestClose:n,onSubmit:r}=e;const[a,i]=(0,s.useState)(!1);return(0,s.createElement)(Bl.Form,{initialValues:{countries:t,time:0},validate:vv,onSubmit:e=>{r(e),n()}},(e=>{const{getInputProps:r,isValidForm:c,handleSubmit:u}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!a,shouldCloseOnClickOutside:!a,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!c,onClick:u},(0,o.__)("Add shipping time","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)(fp,null,(0,s.createElement)(Wy,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),countryCodes:t,onDropdownVisibilityChange:i},r("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},r("time")))))}))},FE=e=>{const[t,n]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{isSecondary:!0,icon:(0,s.createElement)(Sy.Z,null),onClick:()=>{n(!0)}},(0,o.__)("Add another time","google-listings-and-ads")),t&&(0,s.createElement)(IE,l({onRequestClose:()=>{n(!1)}},e)))},DE=e=>{let{audienceCountries:t,time:n,onDelete:r,onSubmit:a,onRequestClose:i}=e;const[c,u]=(0,s.useState)(!1),d=Array.from(new Set([...n.countries,...t])),g=()=>{r(n.countries)};return(0,s.createElement)(Bl.Form,{initialValues:{countries:n.countries,time:n.time},validate:vv,onSubmit:e=>{const t=new Set(e.countries),r=n.countries.filter((e=>!t.has(e)));a(e,r)}},(e=>{const{getInputProps:t,isValidForm:n,handleSubmit:r}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!c,shouldCloseOnClickOutside:!c,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"delete",isTertiary:!0,isDestructive:!0,onClick:g},(0,o.__)("Delete","google-listings-and-ads")),(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!n,onClick:r},(0,o.__)("Update shipping time","google-listings-and-ads"))],onRequestClose:i},(0,s.createElement)(fp,null,(0,s.createElement)(Wy,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),countryCodes:d,onDropdownVisibilityChange:u},t("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},t("time")))))}))},LE=e=>{let{audienceCountries:t,time:n,onChange:r,onDelete:a}=e;const[i,l]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{className:"gla-edit-time-button",isTertiary:!0,onClick:()=>{l(!0)}},(0,o.__)("Edit","google-listings-and-ads")),i&&(0,s.createElement)(DE,{audienceCountries:t,time:n,onSubmit:function(){r(...arguments),l(!1)},onDelete:e=>{a(e),l(!1)},onRequestClose:()=>{l(!1)}}))},GE=e=>{let{value:t,audienceCountries:n,onChange:r,onDelete:a}=e;const{countries:i,time:l}=t;return n?(0,s.createElement)("div",{className:"gla-countries-time-input"},(0,s.createElement)(My,{label:(0,s.createElement)("div",{className:"label"},(0,s.createElement)(wv,{countries:i}),(0,s.createElement)(LE,{audienceCountries:n,onChange:r,onDelete:a,time:t})),suffix:(0,o.__)("days","google-listings-and-ads"),value:l,onBlur:(e,t)=>{l!==t&&r({countries:i,time:t})}})):(0,s.createElement)(Wg,null)};function BE(e){let{value:t,selectedCountryCodes:n,onChange:r}=e;const o=t.length,a=new Map(t.map((e=>[e.countryCode,e]))),i=n.filter((e=>!a.has(e))),l=i.length,c=(e=>{const t=new Map;return e.forEach((e=>{const{countryCode:n,time:r}=e,o=t.get(r)||{countries:[],time:r};o.countries.push(n),t.set(r,o)})),Array.from(t.values())})(t);function u(e){r(t.filter((t=>!e.includes(t.countryCode))))}function d(e){let{countries:t,time:n}=e,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];o.forEach((e=>a.delete(e))),t.forEach((e=>{a.set(e,{countryCode:e,time:n})})),r(Array.from(a.values()))}return 0===c.length&&c.push({countries:n,time:null}),(0,s.createElement)("div",{className:"countries-time"},(0,s.createElement)(fp,null,c.map((e=>(0,s.createElement)("div",{key:e.countries.join("-"),className:"countries-time-input-form"},(0,s.createElement)(GE,{value:e,audienceCountries:n,onChange:d,onDelete:u})))),o>=1&&l>=1&&(0,s.createElement)("div",{className:"add-time-button"},(0,s.createElement)(FE,{countries:i,onSubmit:function(e){let{countries:n,time:o}=e;const a=n.map((e=>({countryCode:e,time:o})));r(t.concat(a))}}))))}var qE=e=>{let{formProps:t,selectedCountryCodes:n}=e;const{getInputProps:r}=t;return n?(0,s.createElement)("div",{className:"gla-shipping-time-setup"},(0,s.createElement)(fp,null,(0,s.createElement)(BE,l({},r("shipping_country_times"),{selectedCountryCodes:n})))):(0,s.createElement)(Wg,null)},zE=e=>{let{formProps:t,countries:n}=e;return(0,s.createElement)(gp,{title:(0,o.__)("Shipping times","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Your shipping times will be shown to potential customers on Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-read-more",href:"https://support.google.com/merchants/answer/7050921"},(0,o.__)("Read more","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(gp.Card.Title,null,(0,o.__)("Estimated shipping times","google-listings-and-ads")),(0,s.createElement)(qE,{selectedCountryCodes:n,formProps:t}))))},HE=e=>{let{countries:t,formProps:n,saving:r=!1,submitLabel:a=(0,o.__)("Complete setup","google-listings-and-ads")}=e;const{values:i,isValidForm:l,handleSubmit:c}=n,u=Ey(t),d="flat"===i.shipping_time,g=null===u||!l;return(0,s.createElement)(tp,null,(0,s.createElement)(mv,{formProps:n,audienceCountries:t}),d&&(0,s.createElement)(zE,{formProps:n,countries:t}),(0,s.createElement)(ky,{show:u},(0,s.createElement)(vy,{formProps:n})),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,disabled:g,loading:r,onClick:c},a)))};const UE=["shipping_rate","shipping_time","tax_rate","website_live","checkout_process_secure","payment_methods_visible","refund_tos_visible","contact_info_visible"];var VE=e=>{let{countries:t,settings:n,onSettingsChange:r=(()=>{}),shippingRates:o,onShippingRatesChange:a=(()=>{}),shippingTimes:i,onShippingTimesChange:l=(()=>{}),onContinue:c=(()=>{}),submitLabel:u}=e;const[d,g]=(0,s.useState)(!1);return n&&o&&i&&t?(0,s.createElement)("div",{className:"gla-setup-free-listings"},(0,s.createElement)(ly,null),(0,s.createElement)(Bl.Form,{initialValues:{shipping_rate:n.shipping_rate,shipping_time:n.shipping_time,tax_rate:n.tax_rate,website_live:n.website_live,checkout_process_secure:n.checkout_process_secure,payment_methods_visible:n.payment_methods_visible,refund_tos_visible:n.refund_tos_visible,contact_info_visible:n.contact_info_visible,offer_free_shipping:jv(o),shipping_country_rates:o,shipping_country_times:i},onChange:(e,t)=>{"shipping_country_rates"===e.name?a(t.shipping_country_rates):"shipping_country_times"===e.name?l(t.shipping_country_times):UE.includes(e.name)&&r(e,(e=>(0,ie.pick)(e,UE))(t))},validate:e=>{const{shipping_country_times:n}=e;return fy(e,n,t)},onSubmit:async()=>{g(!0),await c(),g(!1)}},(e=>(0,s.createElement)(HE,{formProps:e,countries:t,submitLabel:u,saving:d})))):(0,s.createElement)(Wg,null)},WE=()=>{const{data:e}=hv(),{deleteShippingTimes:t,upsertShippingTimes:n}=Og(),r=(0,s.useCallback)((async r=>{const o=((e,t)=>((e,t)=>(0,ie.differenceBy)(t,e,"countryCode"))(e,t).map((e=>e.countryCode)))(r,e);o.length&&await t(o);const a=(i=r,s=e,(0,ie.differenceWith)(i,s,ie.isEqual));var i,s;if(a.length){const e=(e=>{const t=new Map;return e.forEach((e=>{let{countryCode:n,time:r}=e;const o=t.get(r)||{countryCodes:[],time:r};o.countryCodes.push(n),t.set(r,o)})),Array.from(t.values())})(a).map((e=>n(e)));await Promise.all(e)}}),[t,e,n]);return{saveShippingTimes:r}};function YE(e){const t=new Set(["/"+(0,pc.getNewPath)({pageStep:void 0}),"/"+(0,pc.getNewPath)({pageStep:1}),"/"+(0,pc.getNewPath)({pageStep:2})]),n=e.pathname+e.search;return!t.has(n)}var KE=()=>{Gg("full-content");const{targetAudience:e,getFinalCountries:t}=Cy(),{settings:n}=cy(),{saveTargetAudience:r,saveSettings:a}=Og(),{saveShippingRates:i}=Rv(),{saveShippingTimes:l}=WE(),[c,u]=(0,s.useState)(e),[d,g]=(0,s.useState)(n),{hasFinishedResolution:p,data:f}=Nv(),[m,h]=(0,s.useState)(f),y=p?m:null,{hasFinishedResolution:v,data:b}=hv(),[_,w]=(0,s.useState)(b),E=v?_:null;(0,s.useEffect)((()=>g(n)),[n]),(0,s.useEffect)((()=>u(e)),[e]),(0,s.useEffect)((()=>h(f)),[f]),(0,s.useEffect)((()=>w(b)),[b]);const[$]=Lp({path:"/wc/gla/mc/settings/sync",method:"POST"}),{createNotice:C}=Np(),k=!(0,ie.isEqual)(...[c,e].map((e=>({...e,countries:new Set(null==e?void 0:e.countries)})))),S=!(0,ie.isEqual)(d,n),x=(P=f,(O=m).length!==P.length||Pv(O,P).length>0);var O,P;const A=!(0,ie.isEqual)(new Set(_),new Set(b)),N=k||S||x||A;D_((0,o.__)("You have unsaved campaign data. Are you sure you want to leave?","google-listings-and-ads"),N,YE);const{pageStep:R="1"}=(0,pc.getQuery)(),T=(0,pc.getNewPath)({pageStep:void 0,subpath:void 0},"/google/dashboard"),M=()=>{const e=t(c),n=y.filter((t=>e.includes(t.country)));h(n);const r=E.filter((t=>e.includes(t.countryCode)));w(r)},j=e=>{"2"===e&&M(),(0,pc.getHistory)().push((0,pc.getNewPath)({pageStep:e}))};return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(qg,{title:(0,o.__)("Edit free listings","google-listings-and-ads"),helpButton:(0,s.createElement)(Ug,{eventContext:"edit-free-listings"}),backHref:T}),(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:R,steps:[{key:"1",label:(0,o.__)("Choose your audience","google-listings-and-ads"),content:(0,s.createElement)(jE,{initialData:c,onChange:(e,t)=>{u(t)},onContinue:()=>{M(),(0,pc.getHistory)().push((0,pc.getNewPath)({pageStep:"2"}))}}),onClick:j},{key:"2",label:(0,o.__)("Configure your product listings","google-listings-and-ads"),content:(0,s.createElement)(VE,{countries:t(c),settings:d,onSettingsChange:(e,t)=>{g(t)},shippingRates:y,onShippingRatesChange:h,shippingTimes:E,onShippingTimesChange:w,onContinue:async()=>{try{await Promise.allSettled([r(c),a(d),i(m),l(_)]),await $(),C("success",(0,o.__)("Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account.","google-listings-and-ads")),(0,Dl.recordEvent)("gla_free_campaign_edited")}catch(e){C("error",(0,o.__)("Something went wrong while saving your changes. Please try again later.","google-listings-and-ads"))}},submitLabel:(0,o.__)("Save changes","google-listings-and-ads")}),onClick:j}]}))},QE=e=>{let{formProps:t,allowMultiple:n=!0}=e;const r=n?(0,o.__)("Once a campaign has been created, you cannot change the target country(s).","google-listings-and-ads"):(0,o.__)("Once a campaign has been created, you cannot change the target country.","google-listings-and-ads");return(0,s.createElement)("div",{className:"gla-campaign-form-content"},(0,s.createElement)(iw,{disabled:!0,multiple:n,countrySelectHelperText:r,formProps:t}),(0,s.createElement)(uw,{formProps:t}),(0,s.createElement)(dw,null))},ZE=e=>{const{campaign:t}=e,{amount:n,allowMultiple:r,displayCountries:a}=t,[i,l]=(0,s.useState)(!1),{updateAdsCampaign:c}=Og();return(0,s.createElement)(Bl.Form,{initialValues:{amount:n,countryCodes:a},validate:e=>Cw(e),onSubmit:async e=>{l(!0);try{await c(t.id,{amount:e.amount})}catch(e){return void l(!1)}(0,pc.getHistory)().push(xc())}},(e=>{const{isValidForm:t,handleSubmit:n}=e;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Edit your paid campaign","google-listings-and-ads"),description:(0,s.createElement)(s.Fragment,null,(0,o.__)("Paid ad campaigns are automatically optimized for you by Google.","google-listings-and-ads"),(0,s.createElement)("br",null),(0,s.createElement)(zl,{context:"edit-ads",linkId:"see-what-ads-look-like",href:"https://support.google.com/google-ads/answer/6275294"},(0,o.__)("See what your ads will look like.","google-listings-and-ads")))}),(0,s.createElement)(QE,{formProps:e,allowMultiple:r}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,disabled:!t,loading:i,onClick:n},(0,o.__)("Save changes","google-listings-and-ads"))))}))};const XE=(0,pc.getNewPath)({},"/google/dashboard",{}),JE=(0,s.createElement)(Ug,{eventContext:"edit-ads"});var e$=()=>{Gg("full-content");const e=Number((0,pc.getQuery)().programId),{loaded:t,data:n}=$E(),r=null==n?void 0:n.find((t=>t.id===e));return t?r?(0,s.createElement)(s.Fragment,null,(0,s.createElement)(qg,{title:(0,o.sprintf)(// translators: %s: campaign's name.
|
20 |
// translators: %d: seconds to wait until the next verification code can be requested via phone call.
|
21 |
textResendCooldown:(0,o.__)("Call again (in %ds)","google-listings-and-ads"),textSwitch:(0,o.__)("Or, receive a verification code through text message","google-listings-and-ads")}};function i_(e){let{verificationMethod:t,country:n,number:r,display:a,onVerificationStateChange:i}=e;const l=Mv(),[c,u]=(0,s.useState)(t),{second:d,callCount:g,startCountdown:p}=function(e){const t=(0,s.useRef)({}),[n,r]=(0,s.useState)(0);t.current.usingHandle=e,t.current[e]=t.current[e]||{callCount:0};const o=(0,s.useCallback)((n=>{r(n);const o=t.current[e],a=(new Date).getTime()+1e3*n;o.id&&clearInterval(o.id),o.updateSecond=()=>{let n=(a-(new Date).getTime())/1e3;n=Math.max(Math.round(n),0),t.current.usingHandle===e&&r(n),0===n&&clearInterval(o.id)},o.id=setInterval(o.updateSecond,1e3),o.callCount+=1}),[e]);(0,s.useEffect)((()=>{const{updateSecond:n}=t.current[e];n&&n()}),[e]),(0,s.useEffect)((()=>{const e=t.current;return()=>{Object.values(e).forEach((e=>clearInterval(e.id)))}}),[]);const{callCount:a}=t.current[e];return{second:n,callCount:a,startCountdown:o}}(c),[f,m]=(0,s.useState)(null),[h,y]=(0,s.useState)(!1),[v,b]=(0,s.useState)(null),_=(0,s.useRef)({}),{requestPhoneVerificationCode:w,verifyPhoneNumber:E}=Og(),$=c===o_.SMS,C=(0,s.useCallback)((()=>{b(null),p(60),_.current[c]=null,w(n,r,c).then((e=>{let{verificationId:t}=e;_.current[c]=t})).catch((e=>{l()&&(b(e),p(0))}))}),[n,r,c,p,w,l]);(0,s.useEffect)((()=>{0===g&&C()}),[c,g,C]);const{toInstruction:k,textResend:S,textResendCooldown:x,textSwitch:O}=a_[c],P=_.current[c],A=!(null!=f&&f.isFilled&&P);return(0,s.createElement)("form",{onSubmit:e=>{e.preventDefault(),b(null),y(!0),i(!0,!1);const t=_.current[c];E(t,f.code,c).then((()=>{i(!1,!0)})).catch((e=>{l()&&(b(e),y(!1),i(!1,!1))}))}},(0,s.createElement)(gp.Card.Body,null,v&&(0,s.createElement)(cp,null,(0,s.createElement)(Fc,{status:"error",isDismissible:!1},v.display)),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Enter verification code","google-listings-and-ads")),k(a)),(0,s.createElement)(cp,null,(0,s.createElement)(r_,{resetNeedle:c+g,onCodeChange:m})),(0,s.createElement)(cp,null,(0,s.createElement)(ae,{justify:"normal",gap:4},(0,s.createElement)(gc,{isSecondary:!0,disabled:A,loading:h,text:(0,o.__)("Verify phone number","google-listings-and-ads"),type:"submit"}),(0,s.createElement)(gc,{isSecondary:!0,disabled:d>0||h,text:d?(0,o.sprintf)(x,d):S,onClick:C})))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(gc,{isLink:!0,disabled:h,text:O,onClick:()=>{u($?o_.PHONE_CALL:o_.SMS)}})))}function s_(e){return new ab(e).getCountries()}var l_=e=>{const{label:t,helperText:n,className:r,...o}=e;return(0,s.createElement)("div",{className:d()("wcdl-select-control",r)},t&&(0,s.createElement)("div",{className:"wcdl-select-control__label"},t),(0,s.createElement)("div",{className:"wcdl-select-control__input"},(0,s.createElement)(Bl.SelectControl,l({},o,{help:""}))),n&&(0,s.createElement)("div",{className:"wcdl-select-control__helper-text"},n))};const c_=[{label:(0,o.__)("Text message","google-listings-and-ads"),value:o_.SMS},{label:(0,o.__)("Phone call","google-listings-and-ads"),value:o_.PHONE_CALL}];function u_(e){let{initCountry:t,initNationalNumber:n,onSendVerificationCodeClick:r}=e;const a=function(){const e=Xy();return(0,s.useMemo)((()=>function(){return Uv(s_,arguments)}().reduce(((t,n)=>{const r=e[n];if(r){const e=function(){return Uv(pb,arguments)}(n);t.push(((e,t,n)=>({key:e,keywords:[n,t,e],label:`${n} (+${t})`}))(n,e,r))}return t}),[])),[e])}(),[i,l]=(0,s.useState)(t),[c,u]=(0,s.useState)(n),[d,g]=(0,s.useState)(o_.SMS),[p,f]=(0,s.useState)(null);return(0,s.useEffect)((()=>{const e=Xb(c,i),t=!!e&&e.isValid();f(e?{...e,isValid:t,display:e.formatInternational(),verificationMethod:d}:{isValid:t,country:i,number:"",display:"",verificationMethod:d})}),[c,i,d]),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(ae,{gap:4},(0,s.createElement)(ze,null,(0,s.createElement)(l_,{label:(0,o.__)("Country code","google-listings-and-ads"),isSearchable:!0,excludeSelectedOptions:!1,options:a,selected:i,onChange:l})),(0,s.createElement)(Li,null,(0,s.createElement)(Eh,{label:(0,o.__)("Phone number","google-listings-and-ads"),value:c,onChange:u}))),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select verification method","google-listings-and-ads")),(0,s.createElement)(hy,{selected:d,options:c_,onChange:g})),(0,s.createElement)(cp,null,(0,s.createElement)(gc,{isSecondary:!0,disabled:!(null!=p&&p.isValid),text:(0,o.__)("Send verification code","google-listings-and-ads"),onClick:()=>r(p)})))}const d_=()=>{},g_={className:"gla-phone-number-card",appearance:Ep.PHONE};function p_(e){let{phoneNumber:t,onPhoneNumberVerified:n}=e;const{loaded:r,data:a}=t,[i,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(null);let g=(0,s.createElement)(Wg,null);r&&(g=u?(0,s.createElement)(i_,l({},u,{onVerificationStateChange:(e,t)=>{c(e),t&&n()}})):(0,s.createElement)(u_,{initCountry:a.country,initNationalNumber:a.nationalNumber,onSendVerificationCodeClick:d}));const p=u?u.display:(0,o.__)("Please enter a phone number to be used for verification.","google-listings-and-ads"),f=u?(0,s.createElement)(gc,{isSecondary:!0,text:(0,o.__)("Edit","google-listings-and-ads"),disabled:i,onClick:()=>d(null)}):null;return(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}),(0,s.createElement)(ef,null),g)}var f_=e=>{let{view:t,phoneNumber:n,initEditing:r=null,onEditClick:a,onPhoneNumberVerified:i=d_}=e;const{loaded:c,data:u}=n,[d,g]=(0,s.useState)(r);if((0,s.useEffect)((()=>{c&&null===d&&g(!u.isValid)}),[c,u.isValid,d]),null===d)return(0,s.createElement)(xp,l({},g_,{indicator:(0,s.createElement)(Bl.Spinner,null)}));if(d){const e=()=>{g(!1),i()};return(0,s.createElement)(p_,{phoneNumber:n,onPhoneNumberVerified:e})}let p=null,f=(0,s.createElement)(Bl.Spinner,null);return c&&(p=u.display,f=(0,s.createElement)(gc,{isSecondary:!0,eventName:"gla_mc_phone_number_edit_button_click",eventProps:{view:t},onClick:()=>{a?a():g(!0)}},(0,o.__)("Edit","google-listings-and-ads"))),(0,s.createElement)(xp,l({},g_,{description:p,indicator:f}))},m_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8 3.58-8 8-8zm1.13 9.38l.35-6.46H8.52l.35 6.46h2.26zm-.09 3.36c.24-.23.37-.55.37-.96 0-.42-.12-.74-.36-.97s-.59-.35-1.06-.35-.82.12-1.07.35-.37.55-.37.97c0 .41.13.73.38.96.26.23.61.34 1.06.34s.8-.11 1.05-.34z"}));function h_(e){let{editHref:t,editEventName:n,loading:r,content:a,appearance:i,warning:l}=e;const{subpath:c}=(0,pc.getQuery)(),u=(0,s.createElement)(gc,{isSecondary:!0,href:t,text:(0,o.__)("Edit","google-listings-and-ads"),eventName:n,eventProps:{path:(0,pc.getPath)(),subpath:c}});let d,g;return r?d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__placeholder","aria-busy":"true",title:(0,o.__)("Loading…","google-listings-and-ads")}):l?(g=(0,s.createElement)(s.Fragment,null,(0,s.createElement)(vp,{icon:m_,size:24,className:"gla-contact-info-preview-card__notice-icon"}),l),d=(0,s.createElement)("span",{className:"gla-contact-info-preview-card__notice-details"},a)):d=a,(0,s.createElement)(xp,{appearance:i,className:"gla-contact-info-preview-card",icon:null,title:g,description:d,indicator:u})}function y_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=e_();let i,l;return r&&(a.isValid?i=a.display:(l=(0,o.__)("Please add your phone number","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the phone number for all stores using Google Merchant Center. ","google-listings-and-ads"),n))),(0,s.createElement)(h_,{appearance:Ep.PHONE,editHref:t,editEventName:"gla_edit_mc_phone_number",learnMore:n,loading:!r,warning:l,content:i})}var v_=(0,s.createElement)(rs,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},(0,s.createElement)(ns,{d:"M10.2 3.28c3.53 0 6.43 2.61 6.92 6h2.08l-3.5 4-3.5-4h2.32c-.45-1.97-2.21-3.45-4.32-3.45-1.45 0-2.73.71-3.54 1.78L4.95 5.66C6.23 4.2 8.11 3.28 10.2 3.28zm-.4 13.44c-3.52 0-6.43-2.61-6.92-6H.8l3.5-4c1.17 1.33 2.33 2.67 3.5 4H5.48c.45 1.97 2.21 3.45 4.32 3.45 1.45 0 2.73-.71 3.54-1.78l1.71 1.95c-1.28 1.46-3.15 2.38-5.25 2.38z"})),b_=()=>{const{loaded:e,data:t,refetch:n}=zv(),{subpath:r}=(0,pc.getQuery)(),a=(0,s.createElement)(gc,{isSecondary:!0,icon:v_,iconSize:20,iconPosition:"right",text:(0,o.__)("Refresh to sync","google-listings-and-ads"),onClick:n,disabled:!e});let i;const l=(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Edit your store address in your <link>WooCommerce settings</link>.","google-listings-and-ads"),{link:(0,s.createElement)(ql,{target:"_blank",type:"external",href:"admin.php?page=wc-settings",eventName:"gla_edit_wc_store_address",eventProps:{path:(0,pc.getPath)(),subpath:r}})})),(0,s.createElement)("p",null,(0,o.__)("Once you’ve saved your new address there, refresh to sync your new address with Google.","google-listings-and-ads")));if(e){const{address:e,address2:n,city:r,state:o,country:a,postcode:l}=t,c=[r,o?`${o} - ${a}`:a,l].filter(Boolean).join(", ");i=(0,s.createElement)("div",null,(0,s.createElement)("div",null,e),n&&(0,s.createElement)("div",null,n),(0,s.createElement)("div",null,c))}else i=(0,s.createElement)(Bl.Spinner,null);return(0,s.createElement)(xp,{className:"gla-store-address-card",appearance:Ep.ADDRESS,alignIcon:"top",alignIndicator:"top",description:l,indicator:a},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Store address","google-listings-and-ads")),i))};function w_(e){let{editHref:t,learnMore:n}=e;const{loaded:r,data:a}=zv("mc");let i,l;if(r){const{isAddressFilled:e,isMCAddressDifferent:t,address:r,address2:c,city:u,state:d,country:g,postcode:p}=a,f=d?`${d} - ${g}`:g;e&&!t?i=[r,c,u,f,p].filter(Boolean).join(", "):(l=(0,o.__)("Please add your store address","google-listings-and-ads"),i=(0,s.createElement)(s.Fragment,null,(0,o.__)("Google requires the store address for all stores using Google Merchant Center. ","google-listings-and-ads"),n))}return(0,s.createElement)(h_,{appearance:Ep.ADDRESS,editHref:t,editEventName:"gla_edit_mc_store_address",loading:!r,warning:l,content:i})}var E_=e=>{let{loaded:t,data:{display:n,isValid:r}}=e;const o=!!n,a=(0,pc.getPath)();(0,s.useEffect)((()=>{t&&(0,Dl.recordEvent)("gla_mc_phone_number_check",{path:a,exist:o,isValid:r})}),[o,r,t,a])};const $_="contact-information-read-more",C_="https://docs.woocommerce.com/document/google-listings-and-ads/#contact-information",k_=(0,o.__)("Your contact information is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers.","google-listings-and-ads"),S_=(0,o.__)("Enter contact information","google-listings-and-ads"),x_=(0,o.__)("Contact information","google-listings-and-ads");function O_(){return(0,s.createElement)(gp,{title:x_,description:k_},(0,s.createElement)(fp,{size:"overlap"},(0,s.createElement)(y_,{editHref:(0,pc.getNewPath)({subpath:bc},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-phone-number-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))}),(0,s.createElement)(w_,{editHref:(0,pc.getNewPath)({subpath:_c},Cc,null),learnMore:(0,s.createElement)(zl,{context:"settings-no-store-address-notice",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))})))}var P_=e=>{let{onPhoneNumberVerified:t}=e;const n=e_(),r=S_;return E_(n),(0,s.createElement)(gp,{title:r,description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,k_),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-contact-information",linkId:$_,href:C_},(0,o.__)("Learn more","google-listings-and-ads"))))},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(f_,{view:"setup-mc",phoneNumber:n,initEditing:!0,onPhoneNumberVerified:t}),(0,s.createElement)(b_,null)))},A_=e=>{let{id:t,children:n}=e;const[r,o]=(0,s.useState)(!1);return(0,s.createElement)("span",{className:"help-popover"},(0,s.createElement)("button",{onClick:()=>{o(!0),(0,Dl.recordEvent)("gla_tooltip_viewed",{id:t})}},(0,s.createElement)(zg.Z,{size:16})),r&&(0,s.createElement)(cl,{focusOnMount:"container",onClose:()=>{o(!1)}},n))},N_=e=>{const{formProps:t}=e,{getInputProps:n}=t;return(0,s.createElement)("div",{className:"gla-pre-launch-checklist"},(0,s.createElement)(gp,{title:(0,o.__)("Pre-Launch Checklist","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Ensure you meet Google Merchant Center requirements by reviewing this checklist. Otherwise, your products may be disapproved or your Google Merchant Center account may be suspended by Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"checklist-requirements",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy"},(0,o.__)("Read Google Merchant requirements","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(fp,{size:"large"},(0,s.createElement)("div",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store website is live.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"website_live"},(0,s.createInterpolateElement)((0,o.__)("Ensure your store website and products are online and accessible to your customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-website-is-live",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#store-is-live"})})))},n("website_live")))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("I have a complete and secure checkout process.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"checkout_process_secure"},(0,s.createElement)("p",null,(0,o.__)("Ensure customers are able to successfully add items to the cart and fully complete the checkout process.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("Payment and transaction processing, as well as collection of any sensitive and financial personal information from the user, must be conducted over a secure processing server (SSL-protected, with a valid SSL certificate - https://). <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-checkout-process",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#complete-checkout"})}))))},n("checkout_process_secure"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My payment methods are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"payment_methods_visible"},(0,s.createInterpolateElement)((0,o.__)("Ensure customers have at least one valid payment method, such as credit card, direct bank transfer, or cash on delivery. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-payment-methods",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#payment-methods"})})))},n("payment_methods_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My refund policy and terms of service are visible on my online store.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"refund_tos_visible"},(0,s.createInterpolateElement)((0,o.__)("Your site must provide a clear and conspicuous return policy and billing terms to customers. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-refund-policy",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#refund-and-terms"})})))},n("refund_tos_visible"))),(0,s.createElement)(Vh,l({label:(0,s.createElement)("span",{className:"gla-pre-launch-checklist__checkbox_popover"},(0,s.createElement)("span",{className:"checkbox-label"},(0,o.__)("My store’s phone number, email and/or address are visible on my website.","google-listings-and-ads")),(0,s.createElement)(A_,{id:"contact_info_visible"},(0,s.createInterpolateElement)((0,o.__)("Your website must display sufficient and accurate contact information to your customers, including a telephone number and/or email. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-checklist",linkId:"check-phone-numbers",href:"https://woocommerce.com/document/google-listings-and-ads/compliance-policy/#contact-info"})})))},n("contact_info_visible"))))))))};function R_(e){const t={};return!0!==e.website_live&&(t.website_live=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.checkout_process_secure&&(t.checkout_process_secure=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.payment_methods_visible&&(t.payment_methods_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.refund_tos_visible&&(t.refund_tos_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),!0!==e.contact_info_visible&&(t.contact_info_visible=(0,o.__)("Please check the requirement.","google-listings-and-ads")),t}function T_(){const e=Bv(),{updateGoogleMCContactInformation:t,saveSettings:n}=Og(),{createNotice:r}=Np(),{data:a}=zv(),{settings:i}=cy(),[l,c]=(0,s.useState)(!1),[u,d]=(0,s.useState)(!1);return i?(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Confirm store requirements","google-listings-and-ads"),description:(0,o.__)("Review and confirm that your store meets Google Merchant Center requirements.","google-listings-and-ads")}),(0,s.createElement)(Bl.Form,{initialValues:{website_live:i.website_live,checkout_process_secure:i.checkout_process_secure,payment_methods_visible:i.payment_methods_visible,refund_tos_visible:i.refund_tos_visible,contact_info_visible:i.contact_info_visible},validate:R_,onChange:(e,t)=>{n(t)},onSubmit:async()=>{try{d(!0),await t(),await Uc()({path:"/wc/gla/mc/settings/sync",method:"POST"});const n=(0,pc.getNewPath)({guide:"submission-success"},"/google/product-feed");window.location.href=e+n}catch(e){d(!1),r("error",(0,o.__)("Unable to complete your setup. Please try again later.","google-listings-and-ads"))}}},(e=>{const{handleSubmit:t,isValidForm:n}=e,r=n&&l&&a.isAddressFilled;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(P_,{onPhoneNumberVerified:()=>c(!0)}),(0,s.createElement)(N_,{formProps:e}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,loading:u,disabled:!r,onClick:t},(0,o.__)("Complete setup","google-listings-and-ads"))))}))):(0,s.createElement)(Wg,null)}var M_={accounts:"1",target_audience:"2",shipping_and_taxes:"3",store_requirements:"4"},j_=e=>{let{savedStep:t,onRefetchSavedStep:n=(()=>{})}=e;const[r,a]=(0,s.useState)(t),i=e=>{Number(e)<=Number(t)&&a(e)};return(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:r,steps:[{key:M_.accounts,label:(0,o.__)("Set up your accounts","google-listings-and-ads"),content:(0,s.createElement)(iy,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step1_continue",trigger:"click"}),a(M_.target_audience),n()}}),onClick:i},{key:M_.target_audience,label:(0,o.__)("Choose your audience","google-listings-and-ads"),content:(0,s.createElement)(Gv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step2_continue",trigger:"click"}),a(M_.shipping_and_taxes),n()}}),onClick:i},{key:M_.shipping_and_taxes,label:(0,o.__)("Configure your product listings","google-listings-and-ads"),content:(0,s.createElement)(Dv,{onContinue:()=>{(0,Dl.recordEvent)("gla_setup_mc",{target:"step3_continue",trigger:"click"}),a(M_.store_requirements),n()}}),onClick:i},{key:M_.store_requirements,label:(0,o.__)("Confirm store requirements","google-listings-and-ads"),content:(0,s.createElement)(T_,null),onClick:i}]})},I_=()=>{const{hasFinishedResolution:e,data:t,invalidateResolution:n}=Ag("getMCSetup");if(!e&&!t)return(0,s.createElement)(Wg,null);if(e&&!t)return null;const{status:r,step:o}=t;return"complete"===r?((0,pc.getHistory)().replace((0,pc.getNewPath)({},"/google/dashboard")),null):(0,s.createElement)(j_,{savedStep:M_[o],onRefetchSavedStep:()=>{n()}})},F_=()=>(Gg("full-page"),(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Vg,null),(0,s.createElement)(I_,null)));function D_(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:()=>!0;(0,s.useEffect)((()=>{const r=t=>{t.preventDefault(),t.returnValue=e};t&&window.addEventListener("beforeunload",r);const o=(0,pc.getHistory)().block((r=>{if(t&&n(r))return e}));return()=>{o(),window.removeEventListener("beforeunload",r)}}),[e,t,n])}const L_="getGoogleAdsAccount";var G_=()=>{const{google:e,isResolving:t}=Jg(),n=Og(),r=(0,s.useCallback)((()=>{n.invalidateResolution(L_,[])}),[n]);return(0,dn.useSelect)((n=>{if(!e||"no"===e.active)return{googleAdsAccount:void 0,isResolving:t};const o=n(Lc);return{googleAdsAccount:o.getGoogleAdsAccount(),isResolving:o.isResolving(L_),refetchGoogleAdsAccount:r,hasFinishedResolution:o.hasFinishedResolution(L_)}}),[e,t,r])};function B_(e){
|
22 |
// translators: %s: user's account ID
|
23 |
+
return(0,o.sprintf)((0,o.__)("Account %s","google-listings-and-ads"),e)}function q_(e){let{googleAdsAccount:t,...n}=e;return(0,s.createElement)(xp,l({appearance:Ep.GOOGLE_ADS,description:B_(t.id),indicator:(0,s.createElement)(Pp,null)},n))}var z_=e=>{let{onCreateAccount:t=(()=>{}),onRequestClose:n=(()=>{})}=e;const[r,a]=(0,s.useState)(!1);return(0,s.createElement)(Bh,{className:"gla-ads-terms-modal",title:(0,o.__)("Create Google Ads Account","google-listings-and-ads"),buttons:[(0,s.createElement)(gc,{key:"1",isPrimary:!0,disabled:!r,eventName:"gla_ads_account_create_button_click",onClick:()=>{t(),n()}},(0,o.__)("Create account","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",{className:"main"},(0,o.__)("By creating a Google Ads account, you agree to the following terms and conditions:","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createInterpolateElement)((0,o.__)("You agree to comply with Google’s terms and policies, including <policylink>Shopping ads policies</policylink> and <termslink>Google Ads Terms and Conditions</termslink>.","google-listings-and-ads"),{policylink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"shopping-ads-policies",href:"https://support.google.com/merchants/answer/6149970"}),termslink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"google-ads-terms-of-service",href:"https://support.google.com/adspolicy/answer/54818"})})),(0,s.createElement)(Vh,{label:(0,o.__)("I have read and accept these terms","google-listings-and-ads"),checked:r,onChange:a}))};function H_(e){let{text:t}=e;return(0,s.createElement)("div",{className:"gla-loading-label"},(0,s.createElement)(Bl.Spinner,null),t)}var U_=e=>{const{onCreateAccount:t,...n}=e,[r,a]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,n.loading?(0,s.createElement)(H_,{text:(0,o.__)("Creating…","google-listings-and-ads")}):(0,s.createElement)(gc,l({isSecondary:!0},n,{text:(0,o.__)("Create account","google-listings-and-ads"),onClick:()=>{a(!0)}})),r&&(0,s.createElement)(z_,{onCreateAccount:t,onRequestClose:()=>{a(!1)}}))};const V_=()=>{const{createNotice:e}=Np(),{fetchGoogleAdsAccount:t}=Og(),[n,r]=(0,s.useState)(!1),[a,{loading:i}]=Lp({path:"/wc/gla/ads/accounts",method:"POST"});return(0,s.createElement)(U_,{loading:i||n,onCreateAccount:async()=>{try{await a({parse:!1})}catch(t){if(428!==t.status)return void e("error",(0,o.__)("Unable to create Google Ads account. Please try again later.","google-listings-and-ads"))}r(!0),await t(),r(!1)}})};var W_=e=>{const{allowShowExisting:t,onShowExisting:n}=e;return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(V_,null)},t&&(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, use your existing Google Ads account","google-listings-and-ads"))))},Y_=e=>{const{accounts:t,...n}=e,r=[{value:"",label:(0,o.__)("Select one","google-listings-and-ads")},...t.map((e=>({value:e.id,label:(0,o.sprintf)(// translators: 1: account name, 2: account ID.
|
24 |
+
(0,o.__)("%1$s (%2$s)","google-listings-and-ads"),e.name,e.id)})))];return(0,s.createElement)(Kf,l({options:r},n))},K_=e=>{const{accounts:t,onCreateNew:n=(()=>{})}=e,[r,a]=(0,s.useState)(),[i,l]=(0,s.useState)(!1),[c]=Lp({path:"/wc/gla/ads/accounts",method:"POST",data:{id:r}}),{refetchGoogleAdsAccount:u}=G_(),{createNotice:d}=Np(),g=t.length>1;return(0,s.createElement)(xp,{className:"gla-connect-ads",appearance:Ep.GOOGLE_ADS},(0,s.createElement)(ef,null),(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Select an existing account","google-listings-and-ads")),g&&(0,s.createElement)(cp.Body,null,(0,s.createInterpolateElement)((0,o.__)("If you manage multiple sub-accounts in Google Ads, please connect the relevant sub-account, not a manager account. <link>Learn more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-ads-connect-account",linkId:"connect-sub-account",href:"https://support.google.com/google-ads/answer/6139186"})})),(0,s.createElement)(Zf,null,(0,s.createElement)(Y_,{accounts:t,value:r,onChange:a}),i?(0,s.createElement)(H_,{text:(0,o.__)("Connecting…","google-listings-and-ads")}):(0,s.createElement)(gc,{isSecondary:!0,disabled:!r,eventName:"gla_ads_account_connect_button_click",onClick:async()=>{if(r){l(!0);try{await c(),await u()}catch(e){l(!1),d("error",(0,o.__)("Unable to connect your Google Ads account. Please try again later.","google-listings-and-ads"))}}}},(0,o.__)("Connect","google-listings-and-ads")))),(0,s.createElement)(gp.Card.Footer,null,(0,s.createElement)(xl,{isLink:!0,onClick:n},(0,o.__)("Or, create a new Google Ads account","google-listings-and-ads"))))},Q_=()=>{const{existingAccounts:e}=(0,dn.useSelect)((e=>({existingAccounts:e(Lc).getExistingGoogleAdsAccounts(),isResolving:e(Lc).isResolving("getExistingGoogleAdsAccounts")})),[]),[t,n]=(0,s.useState)(!1);if(!e)return(0,s.createElement)(Qp,null);return 0===e.length||t?(0,s.createElement)(W_,{allowShowExisting:t,onShowExisting:()=>{n(!1)}}):(0,s.createElement)(K_,{accounts:e,onCreateNew:()=>{n(!0)}})};const Z_="setup-ads";var X_=e=>{let{additionalScopeEmail:t}=e;const{createNotice:n}=Np(),[r,{loading:a,data:i}]=zp(Z_,t);return(0,s.createElement)(xp,{appearance:Ep.GOOGLE_ADS,indicator:(0,s.createElement)(gc,{isSecondary:!0,loading:a||i,onClick:()=>{r().then((e=>{let{url:t}=e;window.location.href=t})).catch((()=>{n("error",(0,o.__)("Unable to get Google authorization page. Please try again later.","google-listings-and-ads"))}))},text:(0,o.__)("Allow full access","google-listings-and-ads"),eventName:"gla_google_account_connect_button_click",eventProps:{context:Z_,action:"scope"}})})};function J_(){const{google:e,scope:t}=Jg(),{googleAdsAccount:n}=G_();return e&&n?t.adsRequired?"disconnected"===n.status?(0,s.createElement)(Q_,null):(0,s.createElement)(q_,{googleAdsAccount:n}):(0,s.createElement)(X_,{additionalScopeEmail:e.email}):(0,s.createElement)(Qp,null)}var ew=__webpack_require__(3119),tw=[["DZ",250,"USD"],["AR",25e3,"ARS"],["AM",300,"USD"],["AU",600,"AUD"],["AT",400,"EUR"],["AZ",300,"USD"],["BH",300,"USD"],["BY",300,"USD"],["BE",400,"EUR"],["BO",350,"USD"],["BA",350,"EUR"],["BR",1200,"BRL"],["BG",700,"BGN"],["CA",600,"CAD"],["CL",350,"USD"],["CN",3e3,"CNY"],["CO",350,"USD"],["CR",350,"USD"],["HR",2500,"HRK"],["CY",350,"EUR"],["CZ",8500,"CZK"],["DK",3e3,"DKK"],["DO",350,"USD"],["EC",350,"USD"],["EG",3e3,"EGP"],["SV",350,"USD"],["EE",350,"EUR"],["FI",400,"EUR"],["FR",400,"EUR"],["GE",300,"USD"],["DE",400,"EUR"],["GR",350,"EUR"],["GT",350,"USD"],["HN",350,"USD"],["HK",3e3,"HKD"],["HU",12e4,"HUF"],["IS",400,"EUR"],["IN",2e4,"INR"],["ID",3e6,"IDR"],["IE",400,"EUR"],["IL",1500,"ILS"],["IT",400,"EUR"],["JP",6e4,"JPY"],["JO",250,"USD"],["KZ",300,"USD"],["KE",300,"USD"],["KR",6e5,"KRW"],["KW",300,"USD"],["LV",350,"EUR"],["LB",250,"USD"],["LY",250,"USD"],["LT",350,"EUR"],["LU",400,"EUR"],["MK",300,"USD"],["MY",1500,"MYR"],["MT",350,"EUR"],["MX",7e3,"MXN"],["ME",350,"EUR"],["MA",250,"USD"],["NL",400,"EUR"],["NZ",600,"NZD"],["NI",350,"USD"],["NG",300,"USD"],["NO",4e3,"NOK"],["OM",250,"USD"],["PK",400,"USD"],["PS",250,"USD"],["PA",350,"USD"],["PY",350,"USD"],["PE",350,"USD"],["PH",2e4,"PHP"],["PL",1200,"PLN"],["PT",400,"EUR"],["PR",350,"USD"],["QA",300,"USD"],["RO",1500,"RON"],["RU",3e4,"RUB"],["SA",1300,"SAR"],["RS",350,"EUR"],["SG",600,"SGD"],["SK",350,"EUR"],["SI",350,"EUR"],["ZA",6e3,"ZAR"],["ES",400,"EUR"],["LK",400,"USD"],["SE",4e3,"SEK"],["CH",400,"CHF"],["TW",12e3,"TWD"],["TH",12e3,"THB"],["TN",250,"USD"],["TR",2500,"TRY"],["UA",1e4,"UAH"],["AE",1600,"AED"],["GB",400,"GBP"],["US",500,"USD"],["UY",350,"USD"],["VE",350,"USD"],["VN",56e5,"VND"]],nw=e=>{const t=Xy();return(0,s.createElement)(Bh,l({className:"gla-free-ad-credit-country-modal",title:(0,o.__)("Check your maximum free credit","google-listings-and-ads")},e),(0,s.createElement)("p",null,(0,o.__)("Whatever you spend in the next month will be added back to your Google Ads account as free credit, up to a maximum limit depending on your store’s country.","google-listings-and-ads")),(0,s.createElement)("table",null,(0,s.createElement)("tbody",null,tw.map(((e,n)=>{const[r,o,a]=e;return(0,s.createElement)("tr",{key:n},(0,s.createElement)("td",null,t[r]),(0,s.createElement)("td",null,`${o} ${a}`))})))))},rw=()=>{const[e,t]=(0,s.useState)(!1);return(0,s.createElement)("div",{className:"gla-free-ad-credit"},(0,s.createElement)(ew.Z,null),(0,s.createElement)("div",null,(0,s.createElement)("div",{className:"gla-free-ad-credit__title"},(0,o.__)("Spend $500 to get $500 in Google Ads credits!","google-listings-and-ads")),(0,s.createElement)("div",{className:"gla-free-ad-credit__description"},(0,s.createInterpolateElement)((0,o.__)("New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days. Check how much credit you can receive in your country <checkLink>here</checkLink>. <termLink>Terms and conditions apply</termLink>.","google-listings-and-ads"),{checkLink:(0,s.createElement)(ql,{eventName:"gla_free_ad_credit_country_click",eventProps:{context:"setup-ads"},href:"#",type:"wp-admin",onClick:()=>{t(!0)}}),termLink:(0,s.createElement)(zl,{context:"setup-ads",linkId:"free-ad-credit-terms",href:"https://www.google.com/ads/coupons/terms/"})})),e&&(0,s.createElement)(nw,{onRequestClose:()=>{t(!1)}})))},ow=e=>{const{onContinue:t=(()=>{})}=e,{google:n}=Jg(),{googleAdsAccount:r}=G_(),a=(()=>{const{googleAdsAccount:e}=G_();return e&&e.sub_account&&(0,Ed.getDateDifferenceInDays)(new Date,new Date(1e3*e.created_timestamp))<60})();if(!n||"yes"===n.active&&!r)return(0,s.createElement)(Wg,null);const i=!r.id;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Set up your accounts","google-listings-and-ads"),description:(0,o.__)("Connect your Google account and your Google Ads account to set up a paid Performance Max campaign.","google-listings-and-ads")}),(0,s.createElement)(gp,{title:(0,o.__)("Connect accounts","google-listings-and-ads"),description:(0,o.__)("Any campaigns created through this app will appear in your Google Ads account. You will be billed directly through Google.","google-listings-and-ads")},(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(Vp,{googleAccount:n,hideAccountSwitch:!0,helper:(0,o.__)("This Google account is connected to your store’s product feed.","google-listings-and-ads")}),(0,s.createElement)(J_,null),a&&(0,s.createElement)(rw,null))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:i,onClick:t},(0,o.__)("Continue","google-listings-and-ads"))))};function aw(e,t){return e.map((e=>({label:t[e],value:e})))}var iw=e=>{const{formProps:{getInputProps:t},multiple:n=!0,disabled:r=!1,countrySelectHelperText:a}=e,i=Xy(),l=t("countryCodes"),c=n?(0,s.createElement)(yv,{label:(0,o.__)("Select countries","google-listings-and-ads"),help:a,disabled:r,value:l.value,additionalCountryCodes:r?l.value:void 0,onChange:l.onChange}):(0,s.createElement)(Yf,{label:(0,o.__)("Select one country","google-listings-and-ads"),help:a,disabled:r,options:aw(l.value,i),value:l.selected[0],onChange:l.onChange,role:"combobox"});return(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Choose where do you want your product ads to appear.","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,c)))},sw=__webpack_require__(7132),lw=e=>{const{countryCodes:t,dailyAverageCost:n=1/0}=e,{data:r}=(e=>{const t={country_codes:e},n=(0,tg.addQueryArgs)("/wc/gla/ads/campaigns/budget-recommendation",t);return Iv({path:n})})(t),a=Xy();if(!r)return null;const{currency:i,recommendations:l}=r,{daily_budget_low:c,daily_budget_high:u,country:d}=function(e){return e.reduce(((e,t)=>t.daily_budget_high>e.daily_budget_high?t:e))}(l),g=a[d],p=function(e){const t={strong:(0,s.createElement)("strong",null)},n=e?// translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount.
|
25 |
(0,o.__)("Most merchants targeting similar countries set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week.","google-listings-and-ads"):// translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount, 4: a country name selected by the merchant.
|
26 |
(0,o.__)("Most merchants targeting <strong>%4$s</strong> set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week.","google-listings-and-ads");for(var r=arguments.length,a=new Array(r>1?r-1:0),i=1;i<r;i++)a[i-1]=arguments[i];return(0,s.createInterpolateElement)((0,o.sprintf)(n,...a),t)}(l.length>1,c,u,i,g),f=n<c;return(0,s.createElement)("div",{className:"gla-budget-recommendation"},(0,s.createElement)("div",{className:"gla-budget-recommendation__recommendation"},(0,s.createElement)(sw.Z,null),(0,s.createElement)("div",null,p)),f&&(0,s.createElement)("div",{className:"gla-budget-recommendation__low-budget"},(0,s.createElement)(sw.Z,null),(0,s.createElement)("div",null,(0,o.__)("With a budget lower than your competitor range, your campaign may not get noticeable results.","google-listings-and-ads"))))};const cw={noPointerEvents:!0,readOnly:!0,tabIndex:-1};var uw=e=>{const{formProps:{getInputProps:t,setValue:n,values:r},disabled:a=!1}=e,{countryCodes:i,amount:c}=r,{googleAdsAccount:u}=G_(),d=30.4*c,g=null==u?void 0:u.currency,p=(0,s.useRef)(c);return(0,s.useEffect)((()=>{const e=a?void 0:p.current;n("amount",e)}),[a,n]),(0,s.createElement)("div",{className:"gla-budget-section"},(0,s.createElement)(gp,{disabled:a,title:(0,o.__)("Budget","google-listings-and-ads"),description:(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,(0,o.__)("Enter a daily average cost that works best for your business and the results that you want. You can change your budget or cancel your ad at any time.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("You will be billed directly by Google Ads.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Google will optimize your ads to maximize performance across your selected country(s).","google-listings-and-ads")))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,{className:"gla-budget-section__card-body"},(0,s.createElement)("div",{className:"gla-budget-section__card-body__cost"},(0,s.createElement)(jy,l({label:(0,o.__)("Daily average cost","google-listings-and-ads"),suffix:g},t("amount"),a&&cw)),(0,s.createElement)(jy,{disabled:!0,label:(0,o.__)("Monthly max, estimated ","google-listings-and-ads"),suffix:g,value:d})),i.length>0&&(0,s.createElement)(lw,{countryCodes:i,dailyAverageCost:c})))))},dw=()=>{const e=e=>t=>{(0,Dl.recordEvent)("gla_setup_ads_faq",{id:e,action:t?"expand":"collapse"})};return(0,s.createElement)(gp,null,(0,s.createElement)(Yi,{header:(0,o.__)("Frequently asked questions","google-listings-and-ads")},(0,s.createElement)(Il,{initialOpen:!1,title:(0,o.__)("What do I pay for?","google-listings-and-ads"),onToggle:e("what-do-i-pay-for")},(0,s.createElement)(Fl,null,(0,o.__)("You only pay when someone clicks on your product ads to your store.","google-listings-and-ads"))),(0,s.createElement)(Il,{initialOpen:!1,title:(0,o.__)("What does daily average or monthly max mean?","google-listings-and-ads"),onToggle:e("what-does-daily-average-monthly-max-mean")},(0,s.createElement)(Fl,null,(0,o.__)("Some days you might spend less than your daily average, and on others you might spend up to 4 times as much. But over a month, your total spend across the month will be approximately as calculated above.","google-listings-and-ads")))))},gw=e=>{const{formProps:t}=e,n=!t.values.countryCodes.length;return(0,s.createElement)("div",{className:"gla-campaign-form-content"},(0,s.createElement)(iw,{formProps:t}),(0,s.createElement)(uw,{formProps:t,disabled:n}),(0,s.createElement)(dw,null))},pw=e=>{const{formProps:t,onContinue:n=(()=>{})}=e,{isValidForm:r}=t;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Create your paid campaign","google-listings-and-ads"),description:(0,s.createInterpolateElement)((0,o.__)("Paid Performance Max campaigns are automatically optimized for you by Google. <link>See what your ads will look like.</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-ads",linkId:"see-what-ads-look-like",href:"https://support.google.com/google-ads/answer/6275294"})})}),(0,s.createElement)(gw,{formProps:t}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,disabled:!r,onClick:n},(0,o.__)("Continue","google-listings-and-ads"))))},fw=e=>{const{title:t,button:n}=e;return(0,s.createElement)(Zf,{className:"gla-title-button-layout"},(0,s.createElement)(cp.Title,{className:"title"},t),n)},mw=(e,t)=>{const n=(()=>{const[e,t]=(0,s.useState)(document.hasFocus());return(0,s.useEffect)((()=>{const e=()=>{t(!0)},n=()=>{t(!1)};return window.addEventListener("focus",e),window.addEventListener("blur",n),()=>{window.removeEventListener("focus",e),window.removeEventListener("blur",n)}}),[]),e})();(0,s.useEffect)((()=>{if(!n)return;e();const r=setInterval(e,1e3*t);return()=>clearInterval(r)}),[e,t,n])};const hw=()=>Uc()({path:"/wc/gla/ads/accounts",method:"POST"});var yw=e=>{let{billingUrl:t,onSetupComplete:n}=e;const{googleAdsAccount:r}=G_();return function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:()=>{};const{createNotice:t}=Np(),{receiveGoogleAdsAccountBillingStatus:n}=Og(),r=(0,s.useCallback)((async()=>{const r=await Uc()({path:"/wc/gla/ads/billing-status"});if("approved"===r.status)try{await hw(),await e(),n(r)}catch(e){t("error",(0,o.__)("Unable to complete your Google Ads account setup. Please try again later.","google-listings-and-ads"))}}),[t,e,n]);mw(r,30)}(n),r?(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card"},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card__account-number"},(0,s.createElement)(fw,{title:B_(r.id)})),(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card__description"},(0,s.createElement)("div",{className:"gla-google-ads-billing-setup-card__description__text"},(0,o.__)("You do not have billing information set up in your Google Ads account. Once you have completed your billing setup, your campaign will launch automatically.","google-listings-and-ads")),(0,s.createElement)(gc,{isSecondary:!0,href:t,target:"_blank",eventName:"gla_ads_set_up_billing_click",eventProps:{context:"setup-ads",link_id:"set-up-billing",href:t}},(0,o.__)("Set up billing","google-listings-and-ads")))))):(0,s.createElement)(Wg,null)},vw=__webpack_require__(7188),bw=()=>{const{googleAdsAccount:e}=G_();return e?(0,s.createElement)("div",{className:"gla-google-ads-billing-saved-card"},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)("div",{className:"gla-google-ads-billing-saved-card__account-number"},(0,s.createElement)(fw,{title:B_(e.id)})),(0,s.createElement)("div",{className:"gla-google-ads-billing-saved-card__description"},(0,s.createElement)(vw.Z,null),(0,s.createElement)("div",null,(0,s.createInterpolateElement)((0,o.__)("Great! You already have billing information saved for this <link>Google Ads account</link>.","google-listings-and-ads"),{link:(0,s.createElement)(ql,{eventName:"gla_google_ads_account_link_click",eventProps:{context:"setup-ads",link_id:"google-ads-account",href:"https://ads.google.com/aw/overview "},type:"external",target:"_blank",href:"https://ads.google.com/aw/overview"})})))))):(0,s.createElement)(Wg,null)},_w=e=>{const{formProps:{isSubmitting:t,handleSubmit:n}}=e,{billingStatus:r}=(0,dn.useSelect)((e=>({billingStatus:e(Lc).getGoogleAdsAccountBillingStatus()})),[]);return r?(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Set up billing","google-listings-and-ads"),description:"approved"===r.status?(0,o.__)("You will be billed directly by Google Ads, and you only pay when you get results.","google-listings-and-ads"):(0,o.__)("In order to launch your paid campaign, your billing information is required. You will be billed directly by Google and only pay when someone clicks on your ad.","google-listings-and-ads")}),(0,s.createElement)(gp,{title:(0,o.__)("Payment info through Google Ads","google-listings-and-ads")},"approved"===r.status?(0,s.createElement)(bw,null):(0,s.createElement)(yw,{billingUrl:r.billing_url||"https://support.google.com/google-ads/answer/2375375",onSetupComplete:n})),"approved"===r.status&&(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,loading:t,onClick:n},(0,o.__)("Launch paid campaign","google-listings-and-ads")))):(0,s.createElement)(Wg,null)},ww=e=>{const{formProps:t}=e,[n,r]=(0,s.useState)("1"),a=e=>{e<n&&r(e)};return(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:n,steps:[{key:"1",label:(0,o.__)("Set up your accounts","google-listings-and-ads"),content:(0,s.createElement)(ow,{onContinue:()=>{r("2")}}),onClick:a},{key:"2",label:(0,o.__)("Create your paid campaign","google-listings-and-ads"),content:(0,s.createElement)(pw,{formProps:t,onContinue:()=>{r("3")}}),onClick:a},{key:"3",label:(0,o.__)("Set up billing","google-listings-and-ads"),content:(0,s.createElement)(_w,{formProps:t}),onClick:a}]})},Ew=()=>(0,s.createElement)(qg,{title:(0,o.__)("Set up paid campaign","google-listings-and-ads"),helpButton:(0,s.createElement)(Ug,{eventContext:"setup-ads"}),backHref:(0,pc.getNewPath)({},"/google/dashboard"),onBackButtonClick:()=>{(0,Dl.recordEvent)("gla_setup_ads",{target:"back",trigger:"click"})}}),$w=e=>{const{formProps:t}=e;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(Ew,null),(0,s.createElement)(ww,{formProps:t}))},Cw=e=>{const t={};return 0===e.countryCodes.length&&(t.countryCodes=(0,o.__)("Please select at least one country for your ads campaign.","google-listings-and-ads")),e.amount<=0&&(t.amount=(0,o.__)("Please make sure daily average cost is greater than 0.","google-listings-and-ads")),t},kw=()=>{const[e,t]=(0,s.useState)(!1),[n,r]=(0,s.useState)(!1),[a,i]=function(){const{createAdsCampaign:e}=Og(),{createNotice:t}=Np(),[n,r]=(0,s.useState)(!1),a=(0,s.useCallback)((()=>Uc()({path:"/wc/gla/ads/setup/complete",method:"POST"}).catch((()=>(t("error",(0,o.__)("Unable to complete your ads setup. Please try again later.","google-listings-and-ads")),Promise.reject())))),[t]);return[(0,s.useCallback)(((t,n,o)=>{r(!0),e(t,n).then(a).then(o).catch((()=>r(!1)))}),[e,a]),n]}(),l=Bv(),{data:c}=Cy(),u={amount:0,countryCodes:c};(0,s.useEffect)((()=>{if(n){const e=(0,pc.getNewPath)({guide:"campaign-creation-success"},"/google/dashboard");window.location.href=l+e}}),[n,l]);const d=e&&!n;return D_((0,o.__)("You have unsaved campaign data. Are you sure you want to leave?","google-listings-and-ads"),d),c?(0,s.createElement)(Bl.Form,{initialValues:u,validate:Cw,onChange:(e,n)=>{t(!(0,ie.isEqual)(u,n))},onSubmit:e=>{const{amount:t,countryCodes:n}=e;(0,Dl.recordEvent)("gla_launch_paid_campaign_button_click",{audiences:n.join(","),budget:t}),a(t,n,(()=>{r(!0)}))}},(e=>{const t={...e,isSubmitting:i};return(0,s.createElement)($w,{formProps:t})})):null},Sw=()=>(Gg("full-page"),(0,s.createElement)(kw,null)),xw=e=>{let{context:t}=e;const{googleAdsAccount:n}=G_(),{code:r}=Ay();return n&&"connected"===n.status&&n.currency!==r?(0,s.createElement)(Fc,{className:"gla-different-currency-notice",status:"warning",isDismissible:!1},(0,s.createInterpolateElement)((0,o.__)("Note: The currency set in your Google Ads account is <adsCurrency />, which is different from your store currency, <storeCurrency />. <readMoreLink>Read more</readMoreLink>","google-listings-and-ads"),{adsCurrency:(0,s.createElement)("strong",null,n.currency),storeCurrency:(0,s.createElement)("strong",null,r),readMoreLink:(0,s.createElement)(zl,{className:"gla-different-currency-notice__link",href:"https://support.google.com/google-ads/answer/9841530",context:t,linkId:"setting-up-currency"})})):null};var Ow=["menuitem","menuitemradio","menuitemcheckbox"],Pw=function(e){Ns(o,e);var t,n,r=(t=o,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,r=Ms(t);if(n){var o=Ms(this).constructor;e=Reflect.construct(r,arguments,o)}else e=r.apply(this,arguments);return Ts(this,e)});function o(){var e;return Os(this,o),(e=r.apply(this,arguments)).onKeyDown=e.onKeyDown.bind(Rs(e)),e.bindContainer=e.bindContainer.bind(Rs(e)),e.getFocusableContext=e.getFocusableContext.bind(Rs(e)),e.getFocusableIndex=e.getFocusableIndex.bind(Rs(e)),e}return As(o,[{key:"componentDidMount",value:function(){this.container.addEventListener("keydown",this.onKeyDown),this.container.addEventListener("focus",this.onFocus)}},{key:"componentWillUnmount",value:function(){this.container.removeEventListener("keydown",this.onKeyDown),this.container.removeEventListener("focus",this.onFocus)}},{key:"bindContainer",value:function(e){var t=this.props.forwardedRef;this.container=e,(0,ie.isFunction)(t)?t(e):t&&"current"in t&&(t.current=e)}},{key:"getFocusableContext",value:function(e){var t=(this.props.onlyBrowserTabstops?ls.focus.tabbable:ls.focus.focusable).find(this.container),n=this.getFocusableIndex(t,e);return n>-1&&e?{index:n,target:e,focusables:t}:null}},{key:"getFocusableIndex",value:function(e,t){var n=e.indexOf(t);if(-1!==n)return n}},{key:"onKeyDown",value:function(e){this.props.onKeyDown&&this.props.onKeyDown(e);var t=this.getFocusableContext,n=this.props,r=n.cycle,o=void 0===r||r,a=n.eventToOffset,i=n.onNavigate,s=void 0===i?ie.noop:i,l=n.stopNavigationEvents,c=a(e);if(void 0!==c&&l){e.stopImmediatePropagation();var u=e.target.getAttribute("role");Ow.includes(u)&&e.preventDefault()}if(c){var d=t(e.target.ownerDocument.activeElement);if(d){var g=d.index,p=d.focusables,f=o?function(e,t,n){var r=e+n;return r<0?t+r:r>=t?r-t:r}(g,p.length,c):g+c;f>=0&&f<p.length&&(p[f].focus(),s(f,p[f]))}}}},{key:"render",value:function(){var e=this.props,t=e.children,n=c(e,["children"]);return(0,s.createElement)("div",l({ref:this.bindContainer},(0,ie.omit)(n,["stopNavigationEvents","eventToOffset","onNavigate","onKeyDown","cycle","onlyBrowserTabstops","forwardedRef"])),t)}}]),o}(s.Component),Aw=function(e,t){return(0,s.createElement)(Pw,l({},e,{forwardedRef:t}))};Aw.displayName="NavigableContainer";var Nw=(0,s.forwardRef)(Aw),Rw=(0,s.forwardRef)((function(e,t){var n=e.role,r=void 0===n?"menu":n,o=e.orientation,a=void 0===o?"vertical":o,i=c(e,["role","orientation"]);return(0,s.createElement)(Nw,l({ref:t,stopNavigationEvents:!0,onlyBrowserTabstops:!1,role:r,"aria-orientation":"presentation"===r?null:a,eventToOffset:function(e){var t=e.keyCode,n=[cs.DOWN],r=[cs.UP];return"horizontal"===a&&(n=[cs.RIGHT],r=[cs.LEFT]),"both"===a&&(n=[cs.RIGHT,cs.DOWN],r=[cs.LEFT,cs.UP]),(0,ie.includes)(n,t)?1:(0,ie.includes)(r,t)?-1:(0,ie.includes)([cs.DOWN,cs.UP,cs.LEFT,cs.RIGHT],t)?0:void 0}},i))}));const Tw=e=>{let{tabId:t,href:n,children:r,selected:o,...a}=e;return(0,s.createElement)(Bl.Link,l({role:"tab",tabIndex:o?null:-1,"aria-selected":o,id:t,href:n},a),r)};var Mw=e=>{const{selectedKey:t,tabs:n}=e;return(0,s.createElement)("div",{className:"app-tab-nav"},(0,s.createElement)(Rw,{role:"tablist",orientation:"horizontal",className:"app-tab-nav__tabs"},n.map((e=>(0,s.createElement)(Tw,{className:d()("components-button","app-tab-nav__tabs-item",{"is-active":e.key===t}),tabId:`${e.key}`,"aria-controls":`${e.key}-view`,selected:e.key===t,key:e.key,href:e.href},e.title)))))},jw=()=>{var e;return!(null===(e=window.wcAdminFeatures)||void 0===e||!e.navigation)};const Iw={match:{url:"/google/dashboard"},wpOpenMenu:"toplevel_page_woocommerce-marketing"};function Fw(){const e=jw();return(0,s.useEffect)((()=>{e||window.wpNavMenuClassChange(Iw,Iw.match.url)}),[e])}let Dw=[{key:"dashboard",title:(0,o.__)("Dashboard","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/dashboard",{})},{key:"reports",title:(0,o.__)("Reports","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/reports",{})},{key:"product-feed",title:(0,o.__)("Product Feed","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/product-feed",{})},{key:"settings",title:(0,o.__)("Settings","google-listings-and-ads"),href:(0,pc.getNewPath)({},"/google/settings",{})}];Zl.enableReports||(Dw=Dw.filter((e=>{let{key:t}=e;return"reports"!==t})));var Lw=()=>{Fw();const e=(()=>{var e;const t=(0,pc.getPath)();return null===(e=Dw.find((e=>t.includes(e.key))))||void 0===e?void 0:e.key})();return(0,s.createElement)(Mw,{tabs:Dw,selectedKey:e})},Gw=()=>jw()?null:(0,s.createElement)(Lw,null),Bw=window.wc.customerEffortScore;const qw="undefined"!=typeof window&&"localStorage"in window,zw={get:e=>qw?window.localStorage.getItem(e):null,set:(e,t)=>qw?window.localStorage.setItem(e,t):null,remove:e=>qw?window.localStorage.removeItem(e):null};var Hw=zw,Uw=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Gc;return(0,dn.useSelect)((t=>t(e).getNotices()),[e])};const Vw=__webpack_require__.n(Bw)()||Bw.CustomerEffortScore;var Ww=e=>{let{eventContext:t,label:n}=e;return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Gc;const n=Uw(t).find((t=>t.content===e));(0,s.useEffect)((()=>{const{removeNotice:e}=(0,dn.dispatch)(t);return()=>{n&&e(n.id)}}),[n,t])}(n,"core/notices2"),(0,s.createElement)(Vw,{label:n,recordScoreCallback:(e,n)=>{(0,Dl.recordEvent)("gla_ces_feedback",{context:t,score:e,comments:n||""})},onNoticeShownCallback:()=>{Hw.remove(ac),(0,Dl.recordEvent)("gla_ces_snackbar_open",{context:t})},onNoticeDismissedCallback:()=>{(0,Dl.recordEvent)("gla_ces_snackbar_closed",{context:t})},onModalShownCallback:()=>{(0,Dl.recordEvent)("gla_ces_modal_open",{context:t})},icon:(0,s.createElement)("span",{style:{height:21,width:21},role:"img","aria-label":(0,o.__)("Pencil icon","google-listings-and-ads")},"✏️")})},Yw=e=>{const{trackEventReportId:t}=e,n=(()=>{const e=(0,pc.getQuery)(),{period:t,compare:n,before:r,after:o}=(0,Ed.getDateParamsFromQuery)(e),{primary:a,secondary:i}=(0,Ed.getCurrentDates)(e);return{period:t,compare:n,before:r,after:o,primaryDate:a,secondaryDate:i}})();return(0,s.createElement)(Bl.DateRangeFilterPicker,{dateQuery:n,onRangeSelect:e=>{t&&(0,Dl.recordEvent)("gla_datepicker_update",{report:t,...e}),(0,pc.updateQueryString)(e)},isoDateFormat:"YYYY-MM-DD"})},Kw=function(e){let t;function n(e){const n={code:"USD",symbol:"$",symbolPosition:"left",thousandSeparator:",",decimalSeparator:".",precision:2,...e};t={code:n.code.toString(),symbol:n.symbol.toString(),symbolPosition:n.symbolPosition.toString(),decimalSeparator:n.decimalSeparator.toString(),priceFormat:a(n),thousandSeparator:n.thousandSeparator.toString(),precision:parseInt(n.precision,10)}}function r(e,n=!1){const r=Py(t,e);if(""===r)return r;const{priceFormat:a,symbol:i,code:s}=t;return(0,o.sprintf)(a,n?s:i,r)}function a(e){if(e.priceFormat)return function(e){const t=document.createElement("DIV");return t.innerHTML=e,t.textContent||t.innerText||""}(e.priceFormat.toString());switch(e.symbolPosition){case"left":return"%1$s%2$s";case"right":return"%2$s%1$s";case"left_space":return"%1$s %2$s";case"right_space":return"%2$s %1$s"}return"%1$s%2$s"}return n(e),{getCurrencyConfig:()=>({...t}),getDataForCountry:function(e,t={},n={}){const r=t[e]||{},o=n[r.currency_code];return o?{code:r.currency_code,symbol:(0,Zy.decodeEntities)(o),symbolPosition:r.currency_pos,thousandSeparator:r.thousand_sep,decimalSeparator:r.decimal_sep,precision:r.num_decimals}:{}},setCurrency:n,formatAmount:r,formatCurrency:function(e){return ss()("Currency().formatCurrency",{version:"5.0.0",alternative:"Currency().formatAmount",plugin:"WooCommerce",hint:"`formatAmount` accepts the same arguments as formatCurrency"}),r(e)},getPriceFormat:a,formatDecimal(e){if("number"!=typeof e&&(e=parseFloat(e)),Number.isNaN(e))return 0;const{precision:n}=t;return Math.round(e*Math.pow(10,n))/Math.pow(10,n)},formatDecimalString(e){if("number"!=typeof e&&(e=parseFloat(e)),Number.isNaN(e))return"";const{precision:n}=t;return e.toFixed(n)},render:e=>("number"!=typeof e&&(e=parseFloat(e)),e<0?(0,s.createElement)("span",{className:"is-negative"},r(e)):r(e))}};function Qw(){const e=Ay(),{googleAdsAccount:t}=G_(),n=(null==t?void 0:t.currency)||"",r=(null==t?void 0:t.symbol)||"",o=(0,s.useMemo)((()=>({...e,code:n,symbol:r})),[e,n,r]),a=(0,s.useMemo)((()=>Kw(o).formatAmount),[o]);return{adsCurrencyConfig:o,formatAmount:a}}function Zw(){const e=(0,pc.getQuery)();return Pg(e)}function Xw(e){const t=Zw();return(0,dn.useSelect)((n=>{const{getDashboardPerformance:r}=n(Lc),o=r(e,t,"primary"),a=r(e,t,"secondary");let i=null;const s=o.loaded&&a.loaded;return s&&o.data&&a.data&&(i=Od(o.data,a.data)),{loaded:s,data:i}}),[e,t])}var Jw=e=>{let t,{loaded:n,data:r,children:o,noDataMessage:a}=e;return t=n?r?(0,s.createElement)(Bl.SummaryList,null,(()=>o(r))):(0,s.createElement)("div",{className:"gla-summary-card__body"},(0,s.createElement)("p",null,a.body),(0,s.createElement)(gc,{eventName:a.eventName,eventProps:{context:"dashboard",href:a.link},href:a.link,target:"_blank",isSmall:!0,isSecondary:!0},a.buttonLabel)):(0,s.createElement)(Bl.SummaryListPlaceholder,{numberOfItems:2}),t},eE=e=>{let{title:t,children:n}=e;return(0,s.createElement)(De,{className:"gla-summary-card"},(0,s.createElement)(zi,{size:"medium"},(0,s.createElement)(Ii,{variant:"title.small"},t)),n)},tE=e=>{const{eventName:t="gla_add_paid_campaign_clicked",eventProps:n,children:r,onClick:a=(()=>{}),...i}=e,{adsSetupComplete:c}=Zl,u=c?kc():(0,pc.getNewPath)({},"/google/setup-ads",{}),d={context:"",href:u};return(0,s.createElement)(gc,l({isSmall:!0,isSecondary:!0,onClick:function(){(0,Dl.recordEvent)(t,{...d,...n}),(0,pc.getHistory)().push(u),a(...arguments)}},i),r||(0,o.__)("Add paid campaign","google-listings-and-ads"))};const nE=e=>{let{adsAccount:t}=e;const n=t.sub_account||"disconnected"===t.status;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)("p",null,n?(0,o.__)("Create your first campaign and get $500 in ad credit*","google-listings-and-ads"):(0,o.__)("Create your first campaign","google-listings-and-ads")),(0,s.createElement)(tE,{eventProps:{context:"add-paid-campaign-promotion"}}))};var rE=function(){const{googleAdsAccount:e}=G_();return(0,s.createElement)("div",{className:"gla-summary-card__body"},e?(0,s.createElement)(nE,{adsAccount:e}):(0,s.createElement)(Bl.Spinner,null))};const oE={precision:0},aE=()=>{const e=Ty(oE),{data:t,loaded:n}=Xw(ec);return(0,s.createElement)(Jw,{loaded:n,data:t,noDataMessage:{body:(0,o.__)("We're having trouble loading this data. Try again later, or track your performance in Google Merchant Center.","google-listings-and-ads"),link:"https://merchants.google.com/mc/reporting/dashboard",eventName:"gla_google_mc_link_click",buttonLabel:(0,o.__)("Open Google Merchant Center","google-listings-and-ads")}},(t=>[(0,s.createElement)(Bl.SummaryNumber,{key:"1",label:(0,o.__)("Clicks","google-listings-and-ads"),value:e(t.clicks.value),prevValue:e(t.clicks.prevValue),delta:t.clicks.delta}),(0,s.createElement)(Bl.SummaryNumber,{key:"2",label:(0,o.__)("Total Spend","google-listings-and-ads"),value:(0,o.__)("Free","google-listings-and-ads"),delta:null})]))},iE=()=>{const{formatAmount:e}=Qw(),{data:t,loaded:n}=Xw(Jl);return(0,s.createElement)(Jw,{loaded:n,data:t,noDataMessage:{body:(0,o.__)("We're having trouble loading this data. Try again later, or track your performance in Google Ads.","google-listings-and-ads"),link:"https://ads.google.com/",eventName:"gla_google_ads_link_click",buttonLabel:(0,o.__)("Open Google Ads","google-listings-and-ads")}},(t=>[(0,s.createElement)(Bl.SummaryNumber,{key:"1",label:(0,o.__)("Total Sales","google-listings-and-ads"),value:e(t.sales.value,!0),prevValue:e(t.sales.prevValue,!0),delta:t.sales.delta}),(0,s.createElement)(Bl.SummaryNumber,{key:"2",label:(0,o.__)("Total Spend","google-listings-and-ads"),value:e(t.spend.value,!0),prevValue:e(t.spend.prevValue,!0),delta:t.spend.delta})]))};function sE(){const{adsSetupComplete:e}=Zl;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(eE,{title:(0,o.__)("Performance (Free Listing)","google-listings-and-ads")},(0,s.createElement)(aE,null)),(0,s.createElement)(eE,{title:(0,o.__)("Performance (Paid Campaigns)","google-listings-and-ads")},e?(0,s.createElement)(iE,null):(0,s.createElement)(rE,null)))}function lE(e){let{title:t,children:n}=e;return(0,s.createElement)("div",{className:"gla-guide__page-content"},(0,s.createElement)("h2",{className:"gla-guide__page-content__header"},t),(0,s.createElement)("div",{className:"gla-guide__page-content__body"},n))}function cE(e){const{context:t,href:n,className:r,...o}=e;return(0,s.createElement)(ql,l({className:d()("gla-guide__page-content__link",r),eventName:"gla_modal_content_link_click",eventProps:{context:t,href:n},type:"external",target:"_blank",href:n},o))}var uE=__webpack_require__(221);const dE="create-another-campaign",gE="confirm";function pE(e){let{onGuideRequestClose:t=(()=>{})}=e;(0,s.useEffect)((()=>{(0,Dl.recordEvent)("gla_modal_open",{context:oc})}),[]);const n=(0,s.useCallback)((e=>t(e,"dismiss")),[t]);return(0,s.createElement)(Bh,{className:"gla-campaign-creation-success-guide",onRequestClose:n,buttons:[(0,s.createElement)(xl,{key:"0",isTertiary:!0,"data-action":dE,onClick:t},(0,o.__)("Create another campaign","google-listings-and-ads")),(0,s.createElement)(xl,{key:"1",isPrimary:!0,"data-action":gE,onClick:t},(0,o.__)("Got it","google-listings-and-ads"))]},(0,s.createElement)("div",{className:"gla-campaign-creation-success-guide__header-image"},(0,s.createElement)("img",{src:uE,alt:(0,o.__)("Drawing of a person who successfuly launched a campaign","google-listings-and-ads"),width:"413",height:"160"})),(0,s.createElement)(lE,{title:(0,o.__)("You've set up a paid Performance Max Campaign!","google-listings-and-ads")},(0,s.createInterpolateElement)((0,o.__)("You can pause or edit your campaign at any time. For best results, we recommend allowing your campaign to run for at least 14 days without pausing or editing. <link>Learn more about Performance Max technology.</link>","google-listings-and-ads"),{link:(0,s.createElement)(cE,{href:"https://support.google.com/google-ads/answer/10724817",context:"campaign-creation-performance-max"})})))}var fE=e=>{const{className:t,...n}=e;return(0,s.createElement)("div",l({className:d()("app-table-card-div",t)},n))};const mE=(e,t,n)=>{const r=t.includes(n)?"on":"off";(0,Dl.recordEvent)("gla_table_header_toggle",{report:e,column:n,status:r})},hE=(e,t,n)=>{(0,Dl.recordEvent)("gla_table_sort",{report:e,column:t,direction:n})};var yE=e=>{const{trackEventReportId:t,...n}=e;function r(e,n){return function(){for(var r=arguments.length,o=new Array(r),a=0;a<r;a++)o[a]=arguments[a];t&&e(t,...o),n&&n(...o)}}return(0,s.createElement)(fE,null,(0,s.createElement)(Bl.TableCard,l({},n,{onColumnsChange:r(mE,e.onColumnsChange),onSort:r(hE,e.onSort)})))},vE=e=>{const{programId:t,onRequestClose:n}=e,[r,a]=(0,s.useState)(!1),i=Og(),l=()=>{r||n()};return(0,s.createElement)(Bh,{className:"gla-remove-program-modal",title:(0,o.__)("Permanently Remove?","google-listings-and-ads"),isDismissible:!r,buttons:[(0,s.createElement)(xl,{key:"keep",isSecondary:!0,disabled:r,onClick:l},(0,o.__)("Keep Campaign","google-listings-and-ads")),(0,s.createElement)(gc,{key:"remove",isPrimary:!0,isDestructive:!0,loading:r,onClick:()=>{a(!0),i.deleteAdsCampaign(t).then((()=>n())).catch((()=>a(!1)))}},(0,o.__)("Remove Campaign","google-listings-and-ads"))],onRequestClose:l},(0,s.createElement)("p",null,(0,o.__)("Results typically improve with time with Google’s paid ad campaigns. Removing a paid ad campaign will result in the loss of any optimisations learned from those campaigns.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Once a campaign is removed, it cannot be re-enabled.","google-listings-and-ads")))},bE=e=>{const{programId:t}=e,[n,r]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{isDestructive:!0,isLink:!0,onClick:()=>{r(!0)}},(0,o.__)("Remove","google-listings-and-ads")),n&&(0,s.createElement)(vE,{programId:t,onRequestClose:()=>{r(!1)}}))},_E=e=>{let{programId:t,onRequestClose:n}=e;return(0,s.createElement)(Bh,{className:"gla-edit-program-prompt-modal",title:(0,o.__)("Before you edit…","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"no",isSecondary:!0,onClick:()=>{n()}},(0,o.__)("Don't edit","google-listings-and-ads")),(0,s.createElement)(xl,{key:"yes",isPrimary:!0,onClick:()=>{const e=0===t?(0,pc.getNewPath)({subpath:hc},$c):(e=>(0,pc.getNewPath)({subpath:yc,programId:e},$c))(t);(0,pc.getHistory)().push(e),(0,Dl.recordEvent)("gla_dashboard_edit_program_click",{programId:t,url:e})}},(0,o.__)("Continue to edit","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",null,(0,o.__)("Results typically improve with time with Google’s Free Listing and paid ad campaigns.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Editing will result in the loss of any optimisations learned over time.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("We recommend allowing your programs to run for at least 14 days after set up, without pausing or editing, for optimal performance.","google-listings-and-ads")))},wE=e=>{const{programId:t}=e;return(0,s.createElement)(xy,{button:(0,s.createElement)(xl,{isLink:!0},(0,o.__)("Edit","google-listings-and-ads")),modal:(0,s.createElement)(_E,{programId:t})})};const EE="getAdsCampaigns";var $E=()=>(0,dn.useSelect)((e=>{const{adsSetupComplete:t}=Zl;if(!t)return{loading:!1,loaded:!0,data:[]};const n=e(Lc),r=n[EE]();return{loading:n.isResolving(EE),loaded:n.hasFinishedResolution(EE),data:r}}),[]),CE=e=>{const{onPauseCampaign:t=(()=>{}),onRequestClose:n}=e;return(0,s.createElement)(Bh,{className:"gla-pause-program-modal",title:(0,o.__)("Before you pause…","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"1",isSecondary:!0,onClick:()=>{n()}},(0,o.__)("Keep Active","google-listings-and-ads")),(0,s.createElement)(xl,{key:"2",isPrimary:!0,onClick:()=>{t()}},(0,o.__)("Pause Campaign","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)("p",null,(0,o.__)("Results typically improve with time with Google’s paid ad campaigns. If you pause, your products won’t be shown to people looking for what you offer.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,o.__)("Pausing a paid ad campaign will result in the loss of any optimisations learned from those campaigns.","google-listings-and-ads")))},kE=function(e){var t=e.className,n=e.checked,r=e.id,o=e.disabled,a=e.onChange,i=void 0===a?ie.noop:a,u=c(e,["className","checked","id","disabled","onChange"]),g=d()("components-form-toggle",t,{"is-checked":n,"is-disabled":o});return(0,s.createElement)("span",{className:g},(0,s.createElement)("input",l({className:"components-form-toggle__input",id:r,type:"checkbox",checked:n,onChange:i,disabled:o},u)),(0,s.createElement)("span",{className:"components-form-toggle__track"}),(0,s.createElement)("span",{className:"components-form-toggle__thumb"}))};function SE(e){var t,n,r=e.label,o=e.checked,a=e.help,i=e.className,l=e.onChange,c=e.disabled,u=rf(SE),g="inspector-toggle-control-".concat(u);return a&&(t=g+"__help",n=(0,ie.isFunction)(a)?a(o):a),(0,s.createElement)(gf,{id:g,help:n,className:d()("components-toggle-control",i)},(0,s.createElement)(kE,{id:g,checked:o,onChange:function(e){l(e.target.checked)},"aria-describedby":t,disabled:c}),(0,s.createElement)("label",{htmlFor:g,className:"components-toggle-control__label"},r))}var xE=e=>(0,s.createElement)("div",{className:"app-standalone-toggle-control"},(0,s.createElement)(SE,e)),OE=e=>{const{program:t}=e,[n,r]=(0,s.useState)(t.active),[o,a]=(0,s.useState)(!1),{updateAdsCampaign:i}=Og();return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xE,{checked:n,onChange:e=>{!1!==e?(r(e),i(t.id,{status:"enabled"})):a(!0)}}),o&&(0,s.createElement)(CE,{programId:t.id,onPauseCampaign:()=>{a(!1),r(!1),i(t.id,{status:"paused"})},onRequestClose:()=>{a(!1)}}))},PE=()=>(0,s.createElement)(Kp,{text:(0,o.__)("Free listings cannot be paused through WooCommerce. Go to Google Merchant Center for advanced settings.","google-listings-and-ads")},(0,s.createElement)(xE,{checked:!0,disabled:!0}));const AE=[{key:"title",label:(0,o.__)("Program","google-listings-and-ads"),isLeftAligned:!0,required:!0},{key:"country",label:(0,o.__)("Country","google-listings-and-ads"),isLeftAligned:!0},{key:"dailyBudget",label:(0,o.__)("Daily budget","google-listings-and-ads")},{key:"enabled",label:(0,o.__)("Enabled","google-listings-and-ads")},{key:"actions",label:"",required:!0}];function NE(e){let{countryCodes:t,countryNameMap:n}=e;const[r]=t;return(0,s.createElement)("span",null,n[r],t.length>=2&&(0,o.sprintf)(// translators: %d: number of countries, with minimum value of 1.
|
27 |
(0,o.__)(" + %d more","google-listings-and-ads"),t.length-1))}var RE=e=>{const t=(0,pc.getQuery)(),{formatAmount:n}=Qw(),{data:r}=Cy(),{data:a}=$E(),i=Xy();if(!r||!a)return(0,s.createElement)(Wg,null);const c=[{id:0,title:(0,o.__)("Free listings","google-listings-and-ads"),dailyBudget:(0,o.__)("Free","google-listings-and-ads"),country:(0,s.createElement)(NE,{countryCodes:r,countryNameMap:i}),active:!0},...a.map((e=>({id:e.id,title:e.name,dailyBudget:n(e.amount,!0),country:(0,s.createElement)(NE,{countryCodes:e.displayCountries,countryNameMap:i}),active:"enabled"===e.status})))];return(0,s.createElement)(yE,l({className:"gla-all-programs-table-card",title:(0,o.__)("Programs","google-listings-and-ads"),actions:(0,s.createElement)(tE,{eventProps:{context:"programs-table-card"}}),headers:AE,rows:c.map((e=>[{display:e.title},{display:e.country},{display:e.dailyBudget},{display:0===e.id?(0,s.createElement)(PE,null):(0,s.createElement)(OE,{key:e.id,program:e})},{display:(0,s.createElement)("div",{className:"program-actions",key:e.id},(0,s.createElement)(wE,{programId:e.id}),0!==e.id&&(0,s.createElement)(bE,{programId:e.id}))}])),totalRows:c.length,rowsPerPage:c.length,query:t,onQueryChange:pc.onQueryChange},e))},TE=()=>{var e;return!(null===(e=window.wcTracks)||void 0===e||!e.isEnabled)},ME=e=>{const{formProps:t}=e,{values:n,isValidForm:r,getInputProps:a,handleSubmit:i}=t,{locale:c,language:u}=n;return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(gp,{title:(0,o.__)("Audience","google-listings-and-ads"),description:(0,s.createElement)("p",null,(0,o.__)("Where do you want to sell your products?","google-listings-and-ads"))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Language","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,s.createInterpolateElement)((0,o.__)("Listings can only be displayed in your site language. <link>Read more</link>","google-listings-and-ads"),{link:(0,s.createElement)(zl,{context:"setup-mc-audience",linkId:"site-language",href:"https://support.google.com/merchants/answer/160637"})})),(0,s.createElement)(hy,{selected:c,options:[{label:u,value:c}]})),(0,s.createElement)(cp,null,(0,s.createElement)(cp.Title,null,(0,o.__)("Location","google-listings-and-ads")),(0,s.createElement)(cp.HelperText,{className:"helper-text"},(0,o.__)("Your store should already have the appropriate shipping and tax rates (if required) for potential customers in your selected location(s).","google-listings-and-ads")),(0,s.createElement)(fp,{size:"large"},(0,s.createElement)(yy,l({},a("location"),{collapsible:!0,label:(0,o.__)("Selected countries only","google-listings-and-ads"),value:"selected"}),(0,s.createElement)("div",{className:"input"},(0,s.createElement)(Wy,l({multiple:!0},a("countries")))),(0,s.createElement)("div",{className:"cannot-find-country"},(0,o.__)("Can’t find a country? Only supported countries can be selected.","google-listings-and-ads"))),(0,s.createElement)(yy,l({},a("location"),{label:(0,o.__)("All countries","google-listings-and-ads"),value:"all"}),(0,s.createElement)(my,null,(0,o.__)("Your listings will be shown in all supported countries.","google-listings-and-ads")))))))),(0,s.createElement)(rp,null,(0,s.createElement)(xl,{isPrimary:!0,disabled:!r,onClick:i},(0,o.__)("Continue","google-listings-and-ads"))))};function jE(e){let{initialData:t,onChange:n=(()=>{}),onContinue:r=(()=>{})}=e;return t?(0,s.createElement)("div",{className:"gla-choose-audience"},(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Choose your audience","google-listings-and-ads"),description:(0,o.__)("Configure who sees your product listings on Google.","google-listings-and-ads")}),t&&(0,s.createElement)(Bl.Form,{initialValues:{locale:t.locale,language:t.language,location:t.location,countries:t.countries||[]},validate:e=>{const t={};return e.location||(t.location=(0,o.__)("Please select a location option.","google-listings-and-ads")),"selected"===e.location&&0===e.countries.length&&(t.countries=(0,o.__)("Please select at least one country.","google-listings-and-ads")),t},onSubmit:r,onChange:n},(e=>(0,s.createElement)(ME,{formProps:e}))))):(0,s.createElement)(Wg,null)}var IE=e=>{let{countries:t,onRequestClose:n,onSubmit:r}=e;const[a,i]=(0,s.useState)(!1);return(0,s.createElement)(Bl.Form,{initialValues:{countries:t,time:0},validate:vv,onSubmit:e=>{r(e),n()}},(e=>{const{getInputProps:r,isValidForm:c,handleSubmit:u}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!a,shouldCloseOnClickOutside:!a,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!c,onClick:u},(0,o.__)("Add shipping time","google-listings-and-ads"))],onRequestClose:n},(0,s.createElement)(fp,null,(0,s.createElement)(Wy,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),countryCodes:t,onDropdownVisibilityChange:i},r("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},r("time")))))}))},FE=e=>{const[t,n]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{isSecondary:!0,icon:(0,s.createElement)(Sy.Z,null),onClick:()=>{n(!0)}},(0,o.__)("Add another time","google-listings-and-ads")),t&&(0,s.createElement)(IE,l({onRequestClose:()=>{n(!1)}},e)))},DE=e=>{let{audienceCountries:t,time:n,onDelete:r,onSubmit:a,onRequestClose:i}=e;const[c,u]=(0,s.useState)(!1),d=Array.from(new Set([...n.countries,...t])),g=()=>{r(n.countries)};return(0,s.createElement)(Bl.Form,{initialValues:{countries:n.countries,time:n.time},validate:vv,onSubmit:e=>{const t=new Set(e.countries),r=n.countries.filter((e=>!t.has(e)));a(e,r)}},(e=>{const{getInputProps:t,isValidForm:n,handleSubmit:r}=e;return(0,s.createElement)(Bh,{overflow:"visible",shouldCloseOnEsc:!c,shouldCloseOnClickOutside:!c,title:(0,o.__)("Estimate shipping time","google-listings-and-ads"),buttons:[(0,s.createElement)(xl,{key:"delete",isTertiary:!0,isDestructive:!0,onClick:g},(0,o.__)("Delete","google-listings-and-ads")),(0,s.createElement)(xl,{key:"save",isPrimary:!0,disabled:!n,onClick:r},(0,o.__)("Update shipping time","google-listings-and-ads"))],onRequestClose:i},(0,s.createElement)(fp,null,(0,s.createElement)(Wy,l({label:(0,o.__)("If customer is in","google-listings-and-ads"),countryCodes:d,onDropdownVisibilityChange:u},t("countries"))),(0,s.createElement)(My,l({label:(0,o.__)("Then the estimated shipping time displayed in the product listing is","google-listings-and-ads"),suffix:(0,o.__)("days","google-listings-and-ads")},t("time")))))}))},LE=e=>{let{audienceCountries:t,time:n,onChange:r,onDelete:a}=e;const[i,l]=(0,s.useState)(!1);return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(xl,{className:"gla-edit-time-button",isTertiary:!0,onClick:()=>{l(!0)}},(0,o.__)("Edit","google-listings-and-ads")),i&&(0,s.createElement)(DE,{audienceCountries:t,time:n,onSubmit:function(){r(...arguments),l(!1)},onDelete:e=>{a(e),l(!1)},onRequestClose:()=>{l(!1)}}))},GE=e=>{let{value:t,audienceCountries:n,onChange:r,onDelete:a}=e;const{countries:i,time:l}=t;return n?(0,s.createElement)("div",{className:"gla-countries-time-input"},(0,s.createElement)(My,{label:(0,s.createElement)("div",{className:"label"},(0,s.createElement)(wv,{countries:i}),(0,s.createElement)(LE,{audienceCountries:n,onChange:r,onDelete:a,time:t})),suffix:(0,o.__)("days","google-listings-and-ads"),value:l,onBlur:(e,t)=>{l!==t&&r({countries:i,time:t})}})):(0,s.createElement)(Wg,null)};function BE(e){let{value:t,selectedCountryCodes:n,onChange:r}=e;const o=t.length,a=new Map(t.map((e=>[e.countryCode,e]))),i=n.filter((e=>!a.has(e))),l=i.length,c=(e=>{const t=new Map;return e.forEach((e=>{const{countryCode:n,time:r}=e,o=t.get(r)||{countries:[],time:r};o.countries.push(n),t.set(r,o)})),Array.from(t.values())})(t);function u(e){r(t.filter((t=>!e.includes(t.countryCode))))}function d(e){let{countries:t,time:n}=e,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];o.forEach((e=>a.delete(e))),t.forEach((e=>{a.set(e,{countryCode:e,time:n})})),r(Array.from(a.values()))}return 0===c.length&&c.push({countries:n,time:null}),(0,s.createElement)("div",{className:"countries-time"},(0,s.createElement)(fp,null,c.map((e=>(0,s.createElement)("div",{key:e.countries.join("-"),className:"countries-time-input-form"},(0,s.createElement)(GE,{value:e,audienceCountries:n,onChange:d,onDelete:u})))),o>=1&&l>=1&&(0,s.createElement)("div",{className:"add-time-button"},(0,s.createElement)(FE,{countries:i,onSubmit:function(e){let{countries:n,time:o}=e;const a=n.map((e=>({countryCode:e,time:o})));r(t.concat(a))}}))))}var qE=e=>{let{formProps:t,selectedCountryCodes:n}=e;const{getInputProps:r}=t;return n?(0,s.createElement)("div",{className:"gla-shipping-time-setup"},(0,s.createElement)(fp,null,(0,s.createElement)(BE,l({},r("shipping_country_times"),{selectedCountryCodes:n})))):(0,s.createElement)(Wg,null)},zE=e=>{let{formProps:t,countries:n}=e;return(0,s.createElement)(gp,{title:(0,o.__)("Shipping times","google-listings-and-ads"),description:(0,s.createElement)("div",null,(0,s.createElement)("p",null,(0,o.__)("Your shipping times will be shown to potential customers on Google.","google-listings-and-ads")),(0,s.createElement)("p",null,(0,s.createElement)(zl,{context:"setup-mc-shipping",linkId:"shipping-read-more",href:"https://support.google.com/merchants/answer/7050921"},(0,o.__)("Read more","google-listings-and-ads"))))},(0,s.createElement)(gp.Card,null,(0,s.createElement)(gp.Card.Body,null,(0,s.createElement)(gp.Card.Title,null,(0,o.__)("Estimated shipping times","google-listings-and-ads")),(0,s.createElement)(qE,{selectedCountryCodes:n,formProps:t}))))},HE=e=>{let{countries:t,formProps:n,saving:r=!1,submitLabel:a=(0,o.__)("Complete setup","google-listings-and-ads")}=e;const{values:i,isValidForm:l,handleSubmit:c}=n,u=Ey(t),d="flat"===i.shipping_time,g=null===u||!l;return(0,s.createElement)(tp,null,(0,s.createElement)(mv,{formProps:n,audienceCountries:t}),d&&(0,s.createElement)(zE,{formProps:n,countries:t}),(0,s.createElement)(ky,{show:u},(0,s.createElement)(vy,{formProps:n})),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,disabled:g,loading:r,onClick:c},a)))};const UE=["shipping_rate","shipping_time","tax_rate","website_live","checkout_process_secure","payment_methods_visible","refund_tos_visible","contact_info_visible"];var VE=e=>{let{countries:t,settings:n,onSettingsChange:r=(()=>{}),shippingRates:o,onShippingRatesChange:a=(()=>{}),shippingTimes:i,onShippingTimesChange:l=(()=>{}),onContinue:c=(()=>{}),submitLabel:u}=e;const[d,g]=(0,s.useState)(!1);return n&&o&&i&&t?(0,s.createElement)("div",{className:"gla-setup-free-listings"},(0,s.createElement)(ly,null),(0,s.createElement)(Bl.Form,{initialValues:{shipping_rate:n.shipping_rate,shipping_time:n.shipping_time,tax_rate:n.tax_rate,website_live:n.website_live,checkout_process_secure:n.checkout_process_secure,payment_methods_visible:n.payment_methods_visible,refund_tos_visible:n.refund_tos_visible,contact_info_visible:n.contact_info_visible,offer_free_shipping:jv(o),shipping_country_rates:o,shipping_country_times:i},onChange:(e,t)=>{"shipping_country_rates"===e.name?a(t.shipping_country_rates):"shipping_country_times"===e.name?l(t.shipping_country_times):UE.includes(e.name)&&r(e,(e=>(0,ie.pick)(e,UE))(t))},validate:e=>{const{shipping_country_times:n}=e;return fy(e,n,t)},onSubmit:async()=>{g(!0),await c(),g(!1)}},(e=>(0,s.createElement)(HE,{formProps:e,countries:t,submitLabel:u,saving:d})))):(0,s.createElement)(Wg,null)},WE=()=>{const{data:e}=hv(),{deleteShippingTimes:t,upsertShippingTimes:n}=Og(),r=(0,s.useCallback)((async r=>{const o=((e,t)=>((e,t)=>(0,ie.differenceBy)(t,e,"countryCode"))(e,t).map((e=>e.countryCode)))(r,e);o.length&&await t(o);const a=(i=r,s=e,(0,ie.differenceWith)(i,s,ie.isEqual));var i,s;if(a.length){const e=(e=>{const t=new Map;return e.forEach((e=>{let{countryCode:n,time:r}=e;const o=t.get(r)||{countryCodes:[],time:r};o.countryCodes.push(n),t.set(r,o)})),Array.from(t.values())})(a).map((e=>n(e)));await Promise.all(e)}}),[t,e,n]);return{saveShippingTimes:r}};function YE(e){const t=new Set(["/"+(0,pc.getNewPath)({pageStep:void 0}),"/"+(0,pc.getNewPath)({pageStep:1}),"/"+(0,pc.getNewPath)({pageStep:2})]),n=e.pathname+e.search;return!t.has(n)}var KE=()=>{Gg("full-content");const{targetAudience:e,getFinalCountries:t}=Cy(),{settings:n}=cy(),{saveTargetAudience:r,saveSettings:a}=Og(),{saveShippingRates:i}=Rv(),{saveShippingTimes:l}=WE(),[c,u]=(0,s.useState)(e),[d,g]=(0,s.useState)(n),{hasFinishedResolution:p,data:f}=Nv(),[m,h]=(0,s.useState)(f),y=p?m:null,{hasFinishedResolution:v,data:b}=hv(),[_,w]=(0,s.useState)(b),E=v?_:null;(0,s.useEffect)((()=>g(n)),[n]),(0,s.useEffect)((()=>u(e)),[e]),(0,s.useEffect)((()=>h(f)),[f]),(0,s.useEffect)((()=>w(b)),[b]);const[$]=Lp({path:"/wc/gla/mc/settings/sync",method:"POST"}),{createNotice:C}=Np(),k=!(0,ie.isEqual)(...[c,e].map((e=>({...e,countries:new Set(null==e?void 0:e.countries)})))),S=!(0,ie.isEqual)(d,n),x=(P=f,(O=m).length!==P.length||Pv(O,P).length>0);var O,P;const A=!(0,ie.isEqual)(new Set(_),new Set(b)),N=k||S||x||A;D_((0,o.__)("You have unsaved campaign data. Are you sure you want to leave?","google-listings-and-ads"),N,YE);const{pageStep:R="1"}=(0,pc.getQuery)(),T=(0,pc.getNewPath)({pageStep:void 0,subpath:void 0},"/google/dashboard"),M=()=>{const e=t(c),n=y.filter((t=>e.includes(t.country)));h(n);const r=E.filter((t=>e.includes(t.countryCode)));w(r)},j=e=>{"2"===e&&M(),(0,pc.getHistory)().push((0,pc.getNewPath)({pageStep:e}))};return(0,s.createElement)(s.Fragment,null,(0,s.createElement)(qg,{title:(0,o.__)("Edit free listings","google-listings-and-ads"),helpButton:(0,s.createElement)(Ug,{eventContext:"edit-free-listings"}),backHref:T}),(0,s.createElement)(Bl.Stepper,{className:"gla-setup-stepper",currentStep:R,steps:[{key:"1",label:(0,o.__)("Choose your audience","google-listings-and-ads"),content:(0,s.createElement)(jE,{initialData:c,onChange:(e,t)=>{u(t)},onContinue:()=>{M(),(0,pc.getHistory)().push((0,pc.getNewPath)({pageStep:"2"}))}}),onClick:j},{key:"2",label:(0,o.__)("Configure your product listings","google-listings-and-ads"),content:(0,s.createElement)(VE,{countries:t(c),settings:d,onSettingsChange:(e,t)=>{g(t)},shippingRates:y,onShippingRatesChange:h,shippingTimes:E,onShippingTimesChange:w,onContinue:async()=>{try{await Promise.allSettled([r(c),a(d),i(m),l(_)]),await $(),C("success",(0,o.__)("Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account.","google-listings-and-ads")),(0,Dl.recordEvent)("gla_free_campaign_edited")}catch(e){C("error",(0,o.__)("Something went wrong while saving your changes. Please try again later.","google-listings-and-ads"))}},submitLabel:(0,o.__)("Save changes","google-listings-and-ads")}),onClick:j}]}))},QE=e=>{let{formProps:t,allowMultiple:n=!0}=e;const r=n?(0,o.__)("Once a campaign has been created, you cannot change the target country(s).","google-listings-and-ads"):(0,o.__)("Once a campaign has been created, you cannot change the target country.","google-listings-and-ads");return(0,s.createElement)("div",{className:"gla-campaign-form-content"},(0,s.createElement)(iw,{disabled:!0,multiple:n,countrySelectHelperText:r,formProps:t}),(0,s.createElement)(uw,{formProps:t}),(0,s.createElement)(dw,null))},ZE=e=>{const{campaign:t}=e,{amount:n,allowMultiple:r,displayCountries:a}=t,[i,l]=(0,s.useState)(!1),{updateAdsCampaign:c}=Og();return(0,s.createElement)(Bl.Form,{initialValues:{amount:n,countryCodes:a},validate:e=>Cw(e),onSubmit:async e=>{l(!0);try{await c(t.id,{amount:e.amount})}catch(e){return void l(!1)}(0,pc.getHistory)().push(xc())}},(e=>{const{isValidForm:t,handleSubmit:n}=e;return(0,s.createElement)(tp,null,(0,s.createElement)(np,{title:(0,o.__)("Edit your paid campaign","google-listings-and-ads"),description:(0,s.createElement)(s.Fragment,null,(0,o.__)("Paid ad campaigns are automatically optimized for you by Google.","google-listings-and-ads"),(0,s.createElement)("br",null),(0,s.createElement)(zl,{context:"edit-ads",linkId:"see-what-ads-look-like",href:"https://support.google.com/google-ads/answer/6275294"},(0,o.__)("See what your ads will look like.","google-listings-and-ads")))}),(0,s.createElement)(QE,{formProps:e,allowMultiple:r}),(0,s.createElement)(rp,null,(0,s.createElement)(gc,{isPrimary:!0,disabled:!t,loading:i,onClick:n},(0,o.__)("Save changes","google-listings-and-ads"))))}))};const XE=(0,pc.getNewPath)({},"/google/dashboard",{}),JE=(0,s.createElement)(Ug,{eventContext:"edit-ads"});var e$=()=>{Gg("full-content");const e=Number((0,pc.getQuery)().programId),{loaded:t,data:n}=$E(),r=null==n?void 0:n.find((t=>t.id===e));return t?r?(0,s.createElement)(s.Fragment,null,(0,s.createElement)(qg,{title:(0,o.sprintf)(// translators: %s: campaign's name.
|
languages/google-listings-and-ads.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Google Listings and Ads plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Google Listings and Ads
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-listings-and-ads\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: google-listings-and-ads\n"
|
@@ -24,7 +24,7 @@ msgid "Native integration with Google that allows merchants to easily display th
|
|
24 |
msgstr ""
|
25 |
|
26 |
#. Author of the plugin
|
27 |
-
#: js/build/index.js:
|
28 |
msgid "WooCommerce"
|
29 |
msgstr ""
|
30 |
|
@@ -39,8 +39,8 @@ msgstr ""
|
|
39 |
|
40 |
#: src/Admin/Admin.php:176
|
41 |
#: src/Menu/Settings.php:25
|
42 |
-
#: js/build/index.js:
|
43 |
-
#: js/build/index.js:
|
44 |
msgid "Settings"
|
45 |
msgstr ""
|
46 |
|
@@ -225,11 +225,11 @@ msgid "Billing setup must be completed."
|
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: %s Error message
|
228 |
-
#: src/API/Google/Ads.php:
|
229 |
msgid "Error retrieving accounts: %s"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/API/Google/Ads.php:
|
233 |
msgid "Merchant link is not available to accept"
|
234 |
msgstr ""
|
235 |
|
@@ -414,6 +414,10 @@ msgstr ""
|
|
414 |
msgid "Error requesting a new review."
|
415 |
msgstr ""
|
416 |
|
|
|
|
|
|
|
|
|
417 |
#. translators: %1 is the shipping method, %2 is the shipping rate, %3 is the currency (e.g. USD)
|
418 |
#: src/API/Google/Settings.php:292
|
419 |
msgid "%1$s - %2$s %3$s"
|
@@ -1106,26 +1110,26 @@ msgstr ""
|
|
1106 |
#: views/attributes/variations-form.php:22
|
1107 |
#: views/meta-box/channel_visibility.php:95
|
1108 |
#: views/meta-box/coupon_channel_visibility.php:160
|
1109 |
-
#: js/build/index.js:
|
1110 |
msgid "Google Listings & Ads"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: src/Menu/Dashboard.php:93
|
1114 |
-
#: js/build/index.js:
|
1115 |
-
#: js/build/index.js:
|
1116 |
msgid "Dashboard"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
#: src/Menu/ProductFeed.php:25
|
1120 |
-
#: js/build/index.js:
|
1121 |
-
#: js/build/index.js:
|
1122 |
-
#: js/build/index.js:
|
1123 |
msgid "Product Feed"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
#: src/Menu/Reports.php:25
|
1127 |
-
#: js/build/index.js:
|
1128 |
-
#: js/build/index.js:
|
1129 |
msgid "Reports"
|
1130 |
msgstr ""
|
1131 |
|
@@ -1271,8 +1275,8 @@ msgstr ""
|
|
1271 |
|
1272 |
#: src/Notes/SetupCampaign.php:81
|
1273 |
#: js/build/index.js:21
|
1274 |
-
#: js/build/index.js:
|
1275 |
-
#: js/build/index.js:
|
1276 |
msgid "Learn more"
|
1277 |
msgstr ""
|
1278 |
|
@@ -1455,8 +1459,8 @@ msgid "Google Listing & Ads"
|
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: views/meta-box/channel_visibility.php:67
|
1458 |
-
#: js/build/index.js:
|
1459 |
-
#: js/build/index.js:
|
1460 |
msgid "Sync and show"
|
1461 |
msgstr ""
|
1462 |
|
@@ -1479,7 +1483,7 @@ msgstr ""
|
|
1479 |
#: views/meta-box/channel_visibility.php:98
|
1480 |
#: views/meta-box/coupon_channel_visibility.php:163
|
1481 |
#: js/build/index.js:21
|
1482 |
-
#: js/build/index.js:
|
1483 |
msgid "Complete setup"
|
1484 |
msgstr ""
|
1485 |
|
@@ -1564,7 +1568,7 @@ msgid "Anonymous"
|
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: js/build/index.js:1
|
1567 |
-
#: js/build/index.js:
|
1568 |
msgid "Frequently asked questions"
|
1569 |
msgstr ""
|
1570 |
|
@@ -1732,7 +1736,7 @@ msgid "The official extension for WooCommerce, built in collaboration with"
|
|
1732 |
msgstr ""
|
1733 |
|
1734 |
#: js/build/index.js:2
|
1735 |
-
#: js/build/index.js:
|
1736 |
msgid "Google Logo"
|
1737 |
msgstr ""
|
1738 |
|
@@ -1937,7 +1941,7 @@ msgid "Google"
|
|
1937 |
msgstr ""
|
1938 |
|
1939 |
#: js/build/index.js:2
|
1940 |
-
#: js/build/index.js:
|
1941 |
msgid "Google Merchant Center"
|
1942 |
msgstr ""
|
1943 |
|
@@ -1955,13 +1959,13 @@ msgstr ""
|
|
1955 |
|
1956 |
#: js/build/index.js:2
|
1957 |
#: js/build/index.js:21
|
1958 |
-
#: js/build/index.js:
|
1959 |
msgid "Phone number"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: js/build/index.js:2
|
1963 |
#: js/build/index.js:21
|
1964 |
-
#: js/build/index.js:
|
1965 |
msgid "Store address"
|
1966 |
msgstr ""
|
1967 |
|
@@ -1979,7 +1983,7 @@ msgstr ""
|
|
1979 |
|
1980 |
#: js/build/index.js:2
|
1981 |
#: js/build/index.js:9
|
1982 |
-
#: js/build/index.js:
|
1983 |
msgid "Connect"
|
1984 |
msgstr ""
|
1985 |
|
@@ -1992,7 +1996,7 @@ msgid "<alert>Uh-oh!</alert> You did not allow WooCommerce sufficient access to
|
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: js/build/index.js:2
|
1995 |
-
#: js/build/index.js:
|
1996 |
msgid "Allow full access"
|
1997 |
msgstr ""
|
1998 |
|
@@ -2019,9 +2023,11 @@ msgstr ""
|
|
2019 |
#. translators: 1: account domain, 2: account ID.
|
2020 |
#. translators: 1: website URL, 2: account ID.
|
2021 |
#. translators: 1: the new URL, 2: account ID.
|
|
|
2022 |
#: js/build/index.js:3
|
2023 |
#: js/build/index.js:5
|
2024 |
#: js/build/index.js:6
|
|
|
2025 |
msgid "%1$s (%2$s)"
|
2026 |
msgstr ""
|
2027 |
|
@@ -2105,7 +2111,7 @@ msgid "Yes, I want a new account"
|
|
2105 |
msgstr ""
|
2106 |
|
2107 |
#: js/build/index.js:9
|
2108 |
-
#: js/build/index.js:
|
2109 |
msgid "Cancel"
|
2110 |
msgstr ""
|
2111 |
|
@@ -2157,7 +2163,7 @@ msgid "Unable to connect Merchant Center account. Please try again later."
|
|
2157 |
msgstr ""
|
2158 |
|
2159 |
#: js/build/index.js:9
|
2160 |
-
#: js/build/index.js:
|
2161 |
msgid "Select an existing account"
|
2162 |
msgstr ""
|
2163 |
|
@@ -2195,8 +2201,8 @@ msgstr ""
|
|
2195 |
|
2196 |
#: js/build/index.js:9
|
2197 |
#: js/build/index.js:21
|
2198 |
-
#: js/build/index.js:
|
2199 |
-
#: js/build/index.js:
|
2200 |
msgid "Set up your accounts"
|
2201 |
msgstr ""
|
2202 |
|
@@ -2205,7 +2211,7 @@ msgid "Connect your WordPress.com account, Google account, and Google Merchant C
|
|
2205 |
msgstr ""
|
2206 |
|
2207 |
#: js/build/index.js:9
|
2208 |
-
#: js/build/index.js:
|
2209 |
msgid "Connect accounts"
|
2210 |
msgstr ""
|
2211 |
|
@@ -2215,15 +2221,15 @@ msgstr ""
|
|
2215 |
|
2216 |
#: js/build/index.js:9
|
2217 |
#: js/build/index.js:17
|
2218 |
-
#: js/build/index.js:
|
2219 |
-
#: js/build/index.js:25
|
2220 |
#: js/build/index.js:26
|
|
|
2221 |
msgid "Continue"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
#: js/build/index.js:9
|
2225 |
#: js/build/index.js:21
|
2226 |
-
#: js/build/index.js:
|
2227 |
msgid "Configure your product listings"
|
2228 |
msgstr ""
|
2229 |
|
@@ -2274,7 +2280,7 @@ msgstr ""
|
|
2274 |
#: js/build/index.js:9
|
2275 |
#: js/build/index.js:15
|
2276 |
#: js/build/index.js:17
|
2277 |
-
#: js/build/index.js:
|
2278 |
msgid "Read more"
|
2279 |
msgstr ""
|
2280 |
|
@@ -2319,7 +2325,7 @@ msgstr ""
|
|
2319 |
|
2320 |
#: js/build/index.js:11
|
2321 |
#: js/build/index.js:17
|
2322 |
-
#: js/build/index.js:
|
2323 |
msgid "All countries"
|
2324 |
msgstr ""
|
2325 |
|
@@ -2331,7 +2337,7 @@ msgstr ""
|
|
2331 |
#: js/build/index.js:13
|
2332 |
#: js/build/index.js:15
|
2333 |
#: js/build/index.js:17
|
2334 |
-
#: js/build/index.js:
|
2335 |
msgid "If customer is in"
|
2336 |
msgstr ""
|
2337 |
|
@@ -2346,7 +2352,7 @@ msgstr ""
|
|
2346 |
#: js/build/index.js:11
|
2347 |
#: js/build/index.js:13
|
2348 |
#: js/build/index.js:17
|
2349 |
-
#: js/build/index.js:
|
2350 |
msgid "Delete"
|
2351 |
msgstr ""
|
2352 |
|
@@ -2368,9 +2374,9 @@ msgstr ""
|
|
2368 |
#: js/build/index.js:15
|
2369 |
#: js/build/index.js:17
|
2370 |
#: js/build/index.js:21
|
2371 |
-
#: js/build/index.js:25
|
2372 |
#: js/build/index.js:26
|
2373 |
-
#: js/build/index.js:
|
|
|
2374 |
msgid "Edit"
|
2375 |
msgstr ""
|
2376 |
|
@@ -2463,7 +2469,7 @@ msgstr ""
|
|
2463 |
|
2464 |
#: js/build/index.js:15
|
2465 |
#: js/build/index.js:17
|
2466 |
-
#: js/build/index.js:
|
2467 |
msgid "Estimate shipping time"
|
2468 |
msgstr ""
|
2469 |
|
@@ -2474,18 +2480,18 @@ msgstr ""
|
|
2474 |
|
2475 |
#: js/build/index.js:15
|
2476 |
#: js/build/index.js:17
|
2477 |
-
#: js/build/index.js:
|
2478 |
msgid "Then the estimated shipping time displayed in the product listing is"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
#: js/build/index.js:15
|
2482 |
#: js/build/index.js:17
|
2483 |
-
#: js/build/index.js:
|
2484 |
msgid "days"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
#: js/build/index.js:15
|
2488 |
-
#: js/build/index.js:
|
2489 |
msgid "Add another time"
|
2490 |
msgstr ""
|
2491 |
|
@@ -2500,17 +2506,17 @@ msgid "Shipping time for <strong>%1$s</strong>"
|
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#: js/build/index.js:17
|
2503 |
-
#: js/build/index.js:
|
2504 |
msgid "Shipping times"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
#: js/build/index.js:17
|
2508 |
-
#: js/build/index.js:
|
2509 |
msgid "Your shipping times will be shown to potential customers on Google."
|
2510 |
msgstr ""
|
2511 |
|
2512 |
#: js/build/index.js:17
|
2513 |
-
#: js/build/index.js:
|
2514 |
msgid "Estimated shipping times"
|
2515 |
msgstr ""
|
2516 |
|
@@ -2527,69 +2533,69 @@ msgid "Something went wrong while trying to clear your shipping data. Please try
|
|
2527 |
msgstr ""
|
2528 |
|
2529 |
#: js/build/index.js:17
|
2530 |
-
#: js/build/index.js:
|
2531 |
-
#: js/build/index.js:
|
2532 |
msgid "Audience"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
#: js/build/index.js:17
|
2536 |
-
#: js/build/index.js:
|
2537 |
msgid "Where do you want to sell your products?"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
#: js/build/index.js:17
|
2541 |
-
#: js/build/index.js:
|
2542 |
msgid "Language"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
#: js/build/index.js:17
|
2546 |
-
#: js/build/index.js:
|
2547 |
msgid "Listings can only be displayed in your site language. <link>Read more</link>"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
#: js/build/index.js:17
|
2551 |
-
#: js/build/index.js:
|
2552 |
msgid "Location"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
#: js/build/index.js:17
|
2556 |
-
#: js/build/index.js:
|
2557 |
msgid "Your store should already have the appropriate shipping and tax rates (if required) for potential customers in your selected location(s)."
|
2558 |
msgstr ""
|
2559 |
|
2560 |
#: js/build/index.js:17
|
2561 |
-
#: js/build/index.js:
|
2562 |
msgid "Selected countries only"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
#: js/build/index.js:17
|
2566 |
-
#: js/build/index.js:
|
2567 |
msgid "Can’t find a country? Only supported countries can be selected."
|
2568 |
msgstr ""
|
2569 |
|
2570 |
#: js/build/index.js:17
|
2571 |
-
#: js/build/index.js:
|
2572 |
msgid "Your listings will be shown in all supported countries."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
#: js/build/index.js:17
|
2576 |
#: js/build/index.js:21
|
2577 |
-
#: js/build/index.js:
|
2578 |
msgid "Choose your audience"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
#: js/build/index.js:17
|
2582 |
-
#: js/build/index.js:
|
2583 |
msgid "Configure who sees your product listings on Google."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
#: js/build/index.js:17
|
2587 |
-
#: js/build/index.js:
|
2588 |
msgid "Please select a location option."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
#: js/build/index.js:17
|
2592 |
-
#: js/build/index.js:
|
2593 |
msgid "Please select at least one country."
|
2594 |
msgstr ""
|
2595 |
|
@@ -2660,7 +2666,7 @@ msgid "Please enter a phone number to be used for verification."
|
|
2660 |
msgstr ""
|
2661 |
|
2662 |
#: js/build/index.js:21
|
2663 |
-
#: js/build/index.js:
|
2664 |
msgid "Loading…"
|
2665 |
msgstr ""
|
2666 |
|
@@ -2801,1008 +2807,1008 @@ msgstr ""
|
|
2801 |
msgid "Or, use your existing Google Ads account"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: js/build/index.js:
|
2805 |
msgid "If you manage multiple sub-accounts in Google Ads, please connect the relevant sub-account, not a manager account. <link>Learn more</link>"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: js/build/index.js:
|
2809 |
msgid "Connecting…"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: js/build/index.js:
|
2813 |
msgid "Unable to connect your Google Ads account. Please try again later."
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: js/build/index.js:
|
2817 |
msgid "Or, create a new Google Ads account"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: js/build/index.js:
|
2821 |
msgid "Unable to get Google authorization page. Please try again later."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: js/build/index.js:
|
2825 |
msgid "Check your maximum free credit"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: js/build/index.js:
|
2829 |
msgid "Whatever you spend in the next month will be added back to your Google Ads account as free credit, up to a maximum limit depending on your store’s country."
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: js/build/index.js:
|
2833 |
msgid "Spend $500 to get $500 in Google Ads credits!"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: js/build/index.js:
|
2837 |
msgid "New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days. Check how much credit you can receive in your country <checkLink>here</checkLink>. <termLink>Terms and conditions apply</termLink>."
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: js/build/index.js:
|
2841 |
msgid "Connect your Google account and your Google Ads account to set up a paid Performance Max campaign."
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: js/build/index.js:
|
2845 |
msgid "Any campaigns created through this app will appear in your Google Ads account. You will be billed directly through Google."
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: js/build/index.js:
|
2849 |
msgid "This Google account is connected to your store’s product feed."
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: js/build/index.js:
|
2853 |
msgid "Select countries"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: js/build/index.js:
|
2857 |
msgid "Select one country"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: js/build/index.js:
|
2861 |
msgid "Choose where do you want your product ads to appear."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#. translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount.
|
2865 |
-
#: js/build/index.js:
|
2866 |
msgid "Most merchants targeting similar countries set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week."
|
2867 |
msgstr ""
|
2868 |
|
2869 |
#. translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount, 4: a country name selected by the merchant.
|
2870 |
-
#: js/build/index.js:
|
2871 |
msgid "Most merchants targeting <strong>%4$s</strong> set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week."
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: js/build/index.js:
|
2875 |
msgid "With a budget lower than your competitor range, your campaign may not get noticeable results."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: js/build/index.js:
|
2879 |
msgid "Budget"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: js/build/index.js:
|
2883 |
msgid "Enter a daily average cost that works best for your business and the results that you want. You can change your budget or cancel your ad at any time."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: js/build/index.js:
|
2887 |
msgid "You will be billed directly by Google Ads."
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: js/build/index.js:
|
2891 |
msgid "Google will optimize your ads to maximize performance across your selected country(s)."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: js/build/index.js:
|
2895 |
msgid "Daily average cost"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: js/build/index.js:
|
2899 |
msgid "Monthly max, estimated "
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: js/build/index.js:
|
2903 |
msgid "What do I pay for?"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: js/build/index.js:
|
2907 |
msgid "You only pay when someone clicks on your product ads to your store."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: js/build/index.js:
|
2911 |
msgid "What does daily average or monthly max mean?"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: js/build/index.js:
|
2915 |
msgid "Some days you might spend less than your daily average, and on others you might spend up to 4 times as much. But over a month, your total spend across the month will be approximately as calculated above."
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: js/build/index.js:
|
2919 |
-
#: js/build/index.js:
|
2920 |
msgid "Create your paid campaign"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: js/build/index.js:
|
2924 |
-
#: js/build/index.js:
|
2925 |
msgid "Paid Performance Max campaigns are automatically optimized for you by Google. <link>See what your ads will look like.</link>"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: js/build/index.js:
|
2929 |
msgid "Unable to complete your Google Ads account setup. Please try again later."
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: js/build/index.js:
|
2933 |
msgid "You do not have billing information set up in your Google Ads account. Once you have completed your billing setup, your campaign will launch automatically."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: js/build/index.js:
|
2937 |
msgid "Set up billing"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: js/build/index.js:
|
2941 |
msgid "Great! You already have billing information saved for this <link>Google Ads account</link>."
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: js/build/index.js:
|
2945 |
msgid "You will be billed directly by Google Ads, and you only pay when you get results."
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: js/build/index.js:
|
2949 |
msgid "In order to launch your paid campaign, your billing information is required. You will be billed directly by Google and only pay when someone clicks on your ad."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: js/build/index.js:
|
2953 |
msgid "Payment info through Google Ads"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: js/build/index.js:
|
2957 |
-
#: js/build/index.js:
|
2958 |
msgid "Launch paid campaign"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: js/build/index.js:
|
2962 |
msgid "Set up paid campaign"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: js/build/index.js:
|
2966 |
msgid "Please select at least one country for your ads campaign."
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: js/build/index.js:
|
2970 |
msgid "Please make sure daily average cost is greater than 0."
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: js/build/index.js:
|
2974 |
msgid "Unable to complete your ads setup. Please try again later."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: js/build/index.js:25
|
2978 |
#: js/build/index.js:26
|
|
|
2979 |
msgid "You have unsaved campaign data. Are you sure you want to leave?"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: js/build/index.js:
|
2983 |
msgid "Note: The currency set in your Google Ads account is <adsCurrency />, which is different from your store currency, <storeCurrency />. <readMoreLink>Read more</readMoreLink>"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: js/build/index.js:
|
2987 |
msgid "Pencil icon"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: js/build/index.js:
|
2991 |
msgid "Add paid campaign"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: js/build/index.js:
|
2995 |
msgid "Create your first campaign and get $500 in ad credit*"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: js/build/index.js:
|
2999 |
msgid "Create your first campaign"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: js/build/index.js:
|
3003 |
msgid "We're having trouble loading this data. Try again later, or track your performance in Google Merchant Center."
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: js/build/index.js:
|
3007 |
msgid "Open Google Merchant Center"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: js/build/index.js:
|
3011 |
-
#: js/build/index.js:
|
3012 |
msgid "Clicks"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: js/build/index.js:
|
3016 |
-
#: js/build/index.js:
|
3017 |
msgid "Total Spend"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: js/build/index.js:25
|
3021 |
#: js/build/index.js:26
|
|
|
3022 |
msgid "Free"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: js/build/index.js:
|
3026 |
msgid "We're having trouble loading this data. Try again later, or track your performance in Google Ads."
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: js/build/index.js:
|
3030 |
msgid "Open Google Ads"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: js/build/index.js:
|
3034 |
-
#: js/build/index.js:
|
3035 |
msgid "Total Sales"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: js/build/index.js:
|
3039 |
msgid "Performance (Free Listing)"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: js/build/index.js:
|
3043 |
msgid "Performance (Paid Campaigns)"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: js/build/index.js:
|
3047 |
msgid "Create another campaign"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: js/build/index.js:
|
3051 |
msgid "Got it"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: js/build/index.js:
|
3055 |
msgid "Drawing of a person who successfuly launched a campaign"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: js/build/index.js:
|
3059 |
msgid "You've set up a paid Performance Max Campaign!"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: js/build/index.js:
|
3063 |
msgid "You can pause or edit your campaign at any time. For best results, we recommend allowing your campaign to run for at least 14 days without pausing or editing. <link>Learn more about Performance Max technology.</link>"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: js/build/index.js:
|
3067 |
msgid "Permanently Remove?"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: js/build/index.js:
|
3071 |
msgid "Keep Campaign"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: js/build/index.js:
|
3075 |
msgid "Remove Campaign"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: js/build/index.js:
|
3079 |
msgid "Results typically improve with time with Google’s paid ad campaigns. Removing a paid ad campaign will result in the loss of any optimisations learned from those campaigns."
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: js/build/index.js:
|
3083 |
msgid "Once a campaign is removed, it cannot be re-enabled."
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: js/build/index.js:
|
3087 |
msgid "Remove"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: js/build/index.js:
|
3091 |
msgid "Before you edit…"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: js/build/index.js:
|
3095 |
msgid "Don't edit"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: js/build/index.js:
|
3099 |
msgid "Continue to edit"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: js/build/index.js:
|
3103 |
msgid "Results typically improve with time with Google’s Free Listing and paid ad campaigns."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: js/build/index.js:
|
3107 |
msgid "Editing will result in the loss of any optimisations learned over time."
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: js/build/index.js:
|
3111 |
msgid "We recommend allowing your programs to run for at least 14 days after set up, without pausing or editing, for optimal performance."
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: js/build/index.js:
|
3115 |
msgid "Before you pause…"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: js/build/index.js:
|
3119 |
msgid "Keep Active"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: js/build/index.js:
|
3123 |
msgid "Pause Campaign"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: js/build/index.js:
|
3127 |
msgid "Results typically improve with time with Google’s paid ad campaigns. If you pause, your products won’t be shown to people looking for what you offer."
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: js/build/index.js:
|
3131 |
msgid "Pausing a paid ad campaign will result in the loss of any optimisations learned from those campaigns."
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: js/build/index.js:
|
3135 |
msgid "Free listings cannot be paused through WooCommerce. Go to Google Merchant Center for advanced settings."
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: js/build/index.js:
|
3139 |
-
#: js/build/index.js:
|
3140 |
msgid "Program"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: js/build/index.js:
|
3144 |
msgid "Country"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: js/build/index.js:
|
3148 |
msgid "Daily budget"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: js/build/index.js:
|
3152 |
msgid "Enabled"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#. translators: %d: number of countries, with minimum value of 1.
|
3156 |
-
#: js/build/index.js:
|
3157 |
msgid " + %d more"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: js/build/index.js:
|
3161 |
-
#: js/build/index.js:
|
3162 |
msgid "Free listings"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: js/build/index.js:
|
3166 |
-
#: js/build/index.js:
|
3167 |
msgid "Programs"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: js/build/index.js:
|
3171 |
msgid "Add shipping time"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: js/build/index.js:
|
3175 |
msgid "Update shipping time"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: js/build/index.js:
|
3179 |
msgid "Edit free listings"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: js/build/index.js:
|
3183 |
msgid "Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: js/build/index.js:
|
3187 |
msgid "Something went wrong while saving your changes. Please try again later."
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: js/build/index.js:
|
3191 |
msgid "Save changes"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: js/build/index.js:
|
3195 |
msgid "Once a campaign has been created, you cannot change the target country(s)."
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: js/build/index.js:
|
3199 |
msgid "Once a campaign has been created, you cannot change the target country."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: js/build/index.js:
|
3203 |
msgid "Edit your paid campaign"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: js/build/index.js:
|
3207 |
msgid "Paid ad campaigns are automatically optimized for you by Google."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: js/build/index.js:
|
3211 |
msgid "See what your ads will look like."
|
3212 |
msgstr ""
|
3213 |
|
3214 |
#. translators: %s: campaign's name.
|
3215 |
-
#: js/build/index.js:
|
3216 |
msgid "Edit %s"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: js/build/index.js:
|
3220 |
msgid "Edit Campaign"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: js/build/index.js:
|
3224 |
msgid "Error in loading your paid ads campaign. Please try again later."
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: js/build/index.js:
|
3228 |
msgid "You’ve successfully created a paid campaign!"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
#: js/build/index.js:
|
3232 |
msgid "How easy was it to create a Google Ad campaign?"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
-
#: js/build/index.js:
|
3236 |
msgid "Unavailable"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: js/build/index.js:27
|
3240 |
#: js/build/index.js:28
|
|
|
3241 |
msgid "Free Listings"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: js/build/index.js:27
|
3245 |
#: js/build/index.js:28
|
|
|
3246 |
msgid "Show"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: js/build/index.js:
|
3250 |
msgid "All Google programs"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: js/build/index.js:
|
3254 |
msgid "Single program"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: js/build/index.js:
|
3258 |
msgid "Type to search for a program"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: js/build/index.js:
|
3262 |
msgid "Single Program"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: js/build/index.js:27
|
3266 |
#: js/build/index.js:28
|
|
|
3267 |
msgid "Comparison"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: js/build/index.js:
|
3271 |
msgid "Check at least two programs below to compare"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: js/build/index.js:
|
3275 |
msgid "Search for programs to compare"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: js/build/index.js:
|
3279 |
msgid "Compare Programs"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: js/build/index.js:27
|
3283 |
#: js/build/index.js:28
|
|
|
3284 |
msgid "Compare"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: js/build/index.js:
|
3288 |
msgid "This data is currently available for paid campaigns only."
|
3289 |
msgstr ""
|
3290 |
|
3291 |
-
#: js/build/index.js:
|
3292 |
msgid "Please try again later, or go to <googleMerchantCenterLink /> to track your performance for Google Free Listings."
|
3293 |
msgstr ""
|
3294 |
|
3295 |
#. translators: %s: link to Google Merchant Center.
|
3296 |
-
#: js/build/index.js:
|
3297 |
msgid "Google Merchant Center (%s)"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: js/build/index.js:
|
3301 |
msgid "No data for the selected date range"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: js/build/index.js:
|
3305 |
msgid "Select one or more programs to compare"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: js/build/index.js:
|
3309 |
msgid "Products"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: js/build/index.js:
|
3313 |
msgid "Conversions"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: js/build/index.js:
|
3317 |
msgid "Impressions"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: js/build/index.js:
|
3321 |
msgid "Spend"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: js/build/index.js:
|
3325 |
msgid "All Products"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: js/build/index.js:
|
3329 |
msgid "Single Product"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: js/build/index.js:
|
3333 |
msgid "Type to search for a product"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: js/build/index.js:
|
3337 |
msgid "Check at least two products below to compare"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: js/build/index.js:
|
3341 |
msgid "Search for products to compare"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: js/build/index.js:
|
3345 |
msgid "Compare Products"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: js/build/index.js:
|
3349 |
msgid "All Variations"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: js/build/index.js:
|
3353 |
msgid "Single Variation"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: js/build/index.js:
|
3357 |
msgid "Type to search for a variation"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: js/build/index.js:
|
3361 |
msgid "Check at least two variations below to compare"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: js/build/index.js:
|
3365 |
msgid "Search for variations to compare"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: js/build/index.js:
|
3369 |
msgid "Compare Variations"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: js/build/index.js:
|
3373 |
msgid "Show data from"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: js/build/index.js:
|
3377 |
msgid "Paid campaigns"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: js/build/index.js:
|
3381 |
msgid "Select one or more products to compare"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
#: js/build/index.js:
|
3385 |
msgid "Product title"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: js/build/index.js:
|
3389 |
msgid "Type"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: js/build/index.js:
|
3393 |
msgid "Affected product"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#: js/build/index.js:
|
3397 |
msgid "Issue"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: js/build/index.js:
|
3401 |
msgid "Suggested action"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: js/build/index.js:
|
3405 |
msgid "All account issues resolved"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: js/build/index.js:
|
3409 |
msgid "All product issues resolved"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#: js/build/index.js:
|
3413 |
msgid "However, there are issues affecting your products that needs to be resolved. Head over to the <strong>Product Issues</strong> tab to view them."
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: js/build/index.js:
|
3417 |
msgid "However, there are issues affecting your account that needs to be resolved. Head over to the <strong>Account Issues</strong> tab to view them."
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: js/build/index.js:
|
3421 |
msgid "What to do?"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: js/build/index.js:
|
3425 |
msgid "Read more about this issue"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: js/build/index.js:
|
3429 |
-
#: js/build/index.js:
|
3430 |
msgid "Issues to resolve"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: js/build/index.js:
|
3434 |
msgid "An error occurred while retrieving issues. Please try again later."
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: js/build/index.js:
|
3438 |
msgid "Loading Issues To Resolve"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: js/build/index.js:
|
3442 |
msgid "Account Issues"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: js/build/index.js:
|
3446 |
msgid "Product Issues"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: js/build/index.js:
|
3450 |
msgid "Request a review on the following issue(s):"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
#. translators: %d: The number of extra issues issues
|
3454 |
-
#: js/build/index.js:
|
3455 |
msgid "Request account review"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: js/build/index.js:
|
3459 |
msgid "Your account review was successfully requested."
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: js/build/index.js:
|
3463 |
msgid "Please ensure that you have resolved all account suspension issues before requesting for an account review. If some issues are unresolved, you wont be able to request another review for at least 7 days. <Link>Learn more</Link>"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: js/build/index.js:
|
3467 |
msgid "I have resolved all the issue(s) listed above."
|
3468 |
msgstr ""
|
3469 |
|
3470 |
#. translators: %s: Cool down period date.
|
3471 |
-
#: js/build/index.js:
|
3472 |
msgid "Your account is under cool down period. You can request a new review on %s."
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: js/build/index.js:
|
3476 |
msgid "Request review"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: js/build/index.js:
|
3480 |
msgid "Products and stores must meet <link>Google Merchant Center’s requirements</link> in order to get approved. WooCommerce and Google automatically check your product feed to help you resolve any issues. "
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: js/build/index.js:
|
3484 |
msgid "Select channel visibility"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: js/build/index.js:
|
3488 |
msgid "Don’t sync and show"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: js/build/index.js:
|
3492 |
msgid "Select one or more products to bulk edit"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
#. translators: %d: number of selected products to edit channel visibility, with minimum value of 1.
|
3496 |
-
#: js/build/index.js:
|
3497 |
msgid "Apply to %d selected"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: js/build/index.js:
|
3501 |
msgid "Approved"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: js/build/index.js:
|
3505 |
msgid "Partially approved"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: js/build/index.js:
|
3509 |
-
#: js/build/index.js:
|
3510 |
msgid "Expiring"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: js/build/index.js:
|
3514 |
-
#: js/build/index.js:
|
3515 |
msgid "Pending"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: js/build/index.js:
|
3519 |
-
#: js/build/index.js:
|
3520 |
msgid "Disapproved"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
-
#: js/build/index.js:
|
3524 |
msgid "Not synced"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
#: js/build/index.js:
|
3528 |
msgid "Product Title"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
-
#: js/build/index.js:
|
3532 |
msgid "Channel Visibility"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: js/build/index.js:
|
3536 |
msgid "Status"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
#. translators: %d: number of products are updated successfully, with minimum value of 1.
|
3540 |
-
#: js/build/index.js:
|
3541 |
msgid "You successfully changed the channel visibility of %d product"
|
3542 |
msgid_plural "You successfully changed the channel visibility of %d products"
|
3543 |
msgstr[0] ""
|
3544 |
msgstr[1] ""
|
3545 |
|
3546 |
-
#: js/build/index.js:
|
3547 |
msgid "An error occurred while retrieving products. Please try again later."
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: js/build/index.js:
|
3551 |
msgid "Don't sync and show"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
#. translators: 1: current page number 2: total number of pages
|
3555 |
-
#: js/build/index.js:
|
3556 |
msgid "WooCommerce Logo"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: js/build/index.js:
|
3560 |
msgid "You have successfully set up Google Listings & Ads! 🎉"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: js/build/index.js:
|
3564 |
msgid "Google reviews product listings in 3-5 days. If approved, your products will automatically be live and searchable on Google."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: js/build/index.js:
|
3568 |
msgid "<productFeedLink>Manage and edit your product feed in WooCommerce.</productFeedLink> We will also notify you of any product feed issues to ensure your products get approved and perform well on Google."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: js/build/index.js:
|
3572 |
msgid "Spend $500 to get $500 in Google Ads credits"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: js/build/index.js:
|
3576 |
msgid "New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days* You can edit or cancel your campaign at any time."
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: js/build/index.js:
|
3580 |
msgid "*Full terms and conditions <link>here</link>."
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: js/build/index.js:
|
3584 |
msgid "Maybe later"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: js/build/index.js:
|
3588 |
msgid "Create paid campaign"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: js/build/index.js:
|
3592 |
msgid "Back"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: js/build/index.js:
|
3596 |
msgid "Your product feed is <strong>automatically synced</strong> from WooCommerce to Google, every 1-2 days. "
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: js/build/index.js:
|
3600 |
msgid "<strong>‘Not synced’ products</strong> do not appear in Google listings. They are queued for submission, or they may be ineligible or excluded from the product feed."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: js/build/index.js:
|
3604 |
msgid "After submission, Google assigns each product a status: <strong>Active, Expiring, Pending, or Disapproved.</strong>"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: js/build/index.js:
|
3608 |
msgid "<strong>‘Active’ products</strong> are fully approved and eligible to appear in free listings on Google."
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: js/build/index.js:
|
3612 |
msgid "<strong>‘Expiring’ products</strong> will become inactive and no longer appear in Google listings in the next 3 days."
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: js/build/index.js:
|
3616 |
msgid "<strong>‘Pending’ products</strong> are being processed by Google. They will not appear in listings until they are approved."
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: js/build/index.js:
|
3620 |
msgid "<strong>‘Disapproved’ products</strong> are inactive and do not appear in Google listings."
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: js/build/index.js:
|
3624 |
msgid "<link>Read more about product sync and statuses</link>"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: js/build/index.js:
|
3628 |
msgid "Sync in progress"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: js/build/index.js:
|
3632 |
msgid "Automatically synced to Google"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
#. translators: %s: datetime of last update products sync status, and %d: number of synced products, with minimum value of 1.
|
3636 |
-
#: js/build/index.js:
|
3637 |
msgid "Last updated: %1$s, containing %2$d product"
|
3638 |
msgid_plural "Last updated: %1$s, containing %2$d products"
|
3639 |
msgstr[0] ""
|
3640 |
msgstr[1] ""
|
3641 |
|
3642 |
-
#: js/build/index.js:
|
3643 |
msgid "Sync with Google:"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: js/build/index.js:
|
3647 |
msgid "No issues to resolve 🎉"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
#. translators: %d: number of unsolved Merchant Center issues, with minimum value of 1.
|
3651 |
-
#: js/build/index.js:
|
3652 |
msgid "%d issue to resolve"
|
3653 |
msgid_plural "%d issues to resolve"
|
3654 |
msgstr[0] ""
|
3655 |
msgstr[1] ""
|
3656 |
|
3657 |
-
#: js/build/index.js:
|
3658 |
msgid "Feed setup:"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: js/build/index.js:
|
3662 |
msgid "Free listings setup completed"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: js/build/index.js:
|
3666 |
msgid "Account status:"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: js/build/index.js:
|
3670 |
msgid "Overview"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: js/build/index.js:
|
3674 |
msgid "Active"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: js/build/index.js:
|
3678 |
msgid "Not Synced"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: js/build/index.js:
|
3682 |
msgid "How easy was it to set up Google Listings & Ads?"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: js/build/index.js:
|
3686 |
msgid "An error occurred while retrieving your product feed. Please try again later."
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#: js/build/index.js:
|
3690 |
msgid "Linked accounts"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: js/build/index.js:
|
3694 |
msgid "A WordPress.com account, Google account, and Google Merchant Center account are required to use this extension in WooCommerce."
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: js/build/index.js:
|
3698 |
msgid "Disconnect all accounts"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: js/build/index.js:
|
3702 |
msgid "Yes, I want to disconnect all my accounts."
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: js/build/index.js:
|
3706 |
msgid "I understand that I am disconnecting any WordPress.com account, Google account, Google Merchant Center account and Google Ads account connected to this extension."
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: js/build/index.js:
|
3710 |
msgid "Any active product listings will continue to show on Google. They can be managed, edited, or deleted manually from Google Merchant Center (merchants.google.com)."
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#: js/build/index.js:
|
3714 |
msgid "Any ongoing paid campaigns will continue to run. They can be managed, edited, or deleted manually from Google Ads (ads.google.com)."
|
3715 |
msgstr ""
|
3716 |
|
3717 |
-
#: js/build/index.js:
|
3718 |
msgid "Disconnect Google Ads account"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: js/build/index.js:
|
3722 |
msgid "Disconnect Google Ads Account"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: js/build/index.js:
|
3726 |
msgid "Yes, I want to disconnect my Google Ads account."
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: js/build/index.js:
|
3730 |
msgid "I understand that I am disconnecting my Google Ads account from this WooCommerce extension."
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: js/build/index.js:
|
3734 |
msgid "Some configurations for Google Ads created through WooCommerce may be lost. This cannot be undone."
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: js/build/index.js:
|
3738 |
msgid "Never mind"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: js/build/index.js:
|
3742 |
msgid "Disconnect Google Ads account only"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: js/build/index.js:
|
3746 |
msgid "Disconnect from all accounts"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: js/build/index.js:
|
3750 |
msgid "Your WordPress.com account has been disconnected."
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: js/build/index.js:
|
3754 |
msgid "Connect your WordPress.com account to ensure your products stay listed on Google. If you do not re-connect, your products can’t be automatically synced to Google, and any existing listings may be removed from Google."
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: js/build/index.js:
|
3758 |
msgid "This Google account, <accountEmail />, was not the Google account previously connected to this integration."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: js/build/index.js:
|
3762 |
msgid "Thus, it doesn‘t have access to the Google Merchant Center and/or Google Ads account currently connected to this WooCommerce store."
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: js/build/index.js:
|
3766 |
msgid "Try connecting with a different Google account, or completely disconnect all your connected accounts."
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: js/build/index.js:
|
3770 |
msgid "Try another Google account"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: js/build/index.js:
|
3774 |
msgid "Connect account"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: js/build/index.js:
|
3778 |
msgid "Edit store address"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: js/build/index.js:
|
3782 |
msgid "Your store address is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: js/build/index.js:
|
3786 |
msgid "Save details"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: js/build/index.js:
|
3790 |
msgid "Edit phone number"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: js/build/index.js:
|
3794 |
msgid "Your phone number is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers."
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: js/build/index.js:
|
3798 |
msgid "Marketing"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: js/build/index.js:
|
3802 |
msgid "Setup Merchant Center"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: js/build/index.js:
|
3806 |
msgid "Setup Google Ads"
|
3807 |
msgstr ""
|
3808 |
|
2 |
# This file is distributed under the same license as the Google Listings and Ads plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Google Listings and Ads 2.0.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-listings-and-ads\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-07-05T14:30:17+01:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: google-listings-and-ads\n"
|
24 |
msgstr ""
|
25 |
|
26 |
#. Author of the plugin
|
27 |
+
#: js/build/index.js:37
|
28 |
msgid "WooCommerce"
|
29 |
msgstr ""
|
30 |
|
39 |
|
40 |
#: src/Admin/Admin.php:176
|
41 |
#: src/Menu/Settings.php:25
|
42 |
+
#: js/build/index.js:26
|
43 |
+
#: js/build/index.js:37
|
44 |
msgid "Settings"
|
45 |
msgstr ""
|
46 |
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: %s Error message
|
228 |
+
#: src/API/Google/Ads.php:84
|
229 |
msgid "Error retrieving accounts: %s"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: src/API/Google/Ads.php:315
|
233 |
msgid "Merchant link is not available to accept"
|
234 |
msgstr ""
|
235 |
|
414 |
msgid "Error requesting a new review."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/API/Google/Query/AdsQuery.php:78
|
418 |
+
msgid "No result from query"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
#. translators: %1 is the shipping method, %2 is the shipping rate, %3 is the currency (e.g. USD)
|
422 |
#: src/API/Google/Settings.php:292
|
423 |
msgid "%1$s - %2$s %3$s"
|
1110 |
#: views/attributes/variations-form.php:22
|
1111 |
#: views/meta-box/channel_visibility.php:95
|
1112 |
#: views/meta-box/coupon_channel_visibility.php:160
|
1113 |
+
#: js/build/index.js:37
|
1114 |
msgid "Google Listings & Ads"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
#: src/Menu/Dashboard.php:93
|
1118 |
+
#: js/build/index.js:26
|
1119 |
+
#: js/build/index.js:37
|
1120 |
msgid "Dashboard"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
#: src/Menu/ProductFeed.php:25
|
1124 |
+
#: js/build/index.js:26
|
1125 |
+
#: js/build/index.js:33
|
1126 |
+
#: js/build/index.js:37
|
1127 |
msgid "Product Feed"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: src/Menu/Reports.php:25
|
1131 |
+
#: js/build/index.js:26
|
1132 |
+
#: js/build/index.js:37
|
1133 |
msgid "Reports"
|
1134 |
msgstr ""
|
1135 |
|
1275 |
|
1276 |
#: src/Notes/SetupCampaign.php:81
|
1277 |
#: js/build/index.js:21
|
1278 |
+
#: js/build/index.js:29
|
1279 |
+
#: js/build/index.js:37
|
1280 |
msgid "Learn more"
|
1281 |
msgstr ""
|
1282 |
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#: views/meta-box/channel_visibility.php:67
|
1462 |
+
#: js/build/index.js:31
|
1463 |
+
#: js/build/index.js:33
|
1464 |
msgid "Sync and show"
|
1465 |
msgstr ""
|
1466 |
|
1483 |
#: views/meta-box/channel_visibility.php:98
|
1484 |
#: views/meta-box/coupon_channel_visibility.php:163
|
1485 |
#: js/build/index.js:21
|
1486 |
+
#: js/build/index.js:27
|
1487 |
msgid "Complete setup"
|
1488 |
msgstr ""
|
1489 |
|
1568 |
msgstr ""
|
1569 |
|
1570 |
#: js/build/index.js:1
|
1571 |
+
#: js/build/index.js:26
|
1572 |
msgid "Frequently asked questions"
|
1573 |
msgstr ""
|
1574 |
|
1736 |
msgstr ""
|
1737 |
|
1738 |
#: js/build/index.js:2
|
1739 |
+
#: js/build/index.js:35
|
1740 |
msgid "Google Logo"
|
1741 |
msgstr ""
|
1742 |
|
1941 |
msgstr ""
|
1942 |
|
1943 |
#: js/build/index.js:2
|
1944 |
+
#: js/build/index.js:28
|
1945 |
msgid "Google Merchant Center"
|
1946 |
msgstr ""
|
1947 |
|
1959 |
|
1960 |
#: js/build/index.js:2
|
1961 |
#: js/build/index.js:21
|
1962 |
+
#: js/build/index.js:37
|
1963 |
msgid "Phone number"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: js/build/index.js:2
|
1967 |
#: js/build/index.js:21
|
1968 |
+
#: js/build/index.js:37
|
1969 |
msgid "Store address"
|
1970 |
msgstr ""
|
1971 |
|
1983 |
|
1984 |
#: js/build/index.js:2
|
1985 |
#: js/build/index.js:9
|
1986 |
+
#: js/build/index.js:24
|
1987 |
msgid "Connect"
|
1988 |
msgstr ""
|
1989 |
|
1996 |
msgstr ""
|
1997 |
|
1998 |
#: js/build/index.js:2
|
1999 |
+
#: js/build/index.js:24
|
2000 |
msgid "Allow full access"
|
2001 |
msgstr ""
|
2002 |
|
2023 |
#. translators: 1: account domain, 2: account ID.
|
2024 |
#. translators: 1: website URL, 2: account ID.
|
2025 |
#. translators: 1: the new URL, 2: account ID.
|
2026 |
+
#. translators: 1: account name, 2: account ID.
|
2027 |
#: js/build/index.js:3
|
2028 |
#: js/build/index.js:5
|
2029 |
#: js/build/index.js:6
|
2030 |
+
#: js/build/index.js:24
|
2031 |
msgid "%1$s (%2$s)"
|
2032 |
msgstr ""
|
2033 |
|
2111 |
msgstr ""
|
2112 |
|
2113 |
#: js/build/index.js:9
|
2114 |
+
#: js/build/index.js:30
|
2115 |
msgid "Cancel"
|
2116 |
msgstr ""
|
2117 |
|
2163 |
msgstr ""
|
2164 |
|
2165 |
#: js/build/index.js:9
|
2166 |
+
#: js/build/index.js:24
|
2167 |
msgid "Select an existing account"
|
2168 |
msgstr ""
|
2169 |
|
2201 |
|
2202 |
#: js/build/index.js:9
|
2203 |
#: js/build/index.js:21
|
2204 |
+
#: js/build/index.js:24
|
2205 |
+
#: js/build/index.js:26
|
2206 |
msgid "Set up your accounts"
|
2207 |
msgstr ""
|
2208 |
|
2211 |
msgstr ""
|
2212 |
|
2213 |
#: js/build/index.js:9
|
2214 |
+
#: js/build/index.js:24
|
2215 |
msgid "Connect accounts"
|
2216 |
msgstr ""
|
2217 |
|
2221 |
|
2222 |
#: js/build/index.js:9
|
2223 |
#: js/build/index.js:17
|
2224 |
+
#: js/build/index.js:24
|
|
|
2225 |
#: js/build/index.js:26
|
2226 |
+
#: js/build/index.js:27
|
2227 |
msgid "Continue"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
#: js/build/index.js:9
|
2231 |
#: js/build/index.js:21
|
2232 |
+
#: js/build/index.js:27
|
2233 |
msgid "Configure your product listings"
|
2234 |
msgstr ""
|
2235 |
|
2280 |
#: js/build/index.js:9
|
2281 |
#: js/build/index.js:15
|
2282 |
#: js/build/index.js:17
|
2283 |
+
#: js/build/index.js:27
|
2284 |
msgid "Read more"
|
2285 |
msgstr ""
|
2286 |
|
2325 |
|
2326 |
#: js/build/index.js:11
|
2327 |
#: js/build/index.js:17
|
2328 |
+
#: js/build/index.js:27
|
2329 |
msgid "All countries"
|
2330 |
msgstr ""
|
2331 |
|
2337 |
#: js/build/index.js:13
|
2338 |
#: js/build/index.js:15
|
2339 |
#: js/build/index.js:17
|
2340 |
+
#: js/build/index.js:27
|
2341 |
msgid "If customer is in"
|
2342 |
msgstr ""
|
2343 |
|
2352 |
#: js/build/index.js:11
|
2353 |
#: js/build/index.js:13
|
2354 |
#: js/build/index.js:17
|
2355 |
+
#: js/build/index.js:27
|
2356 |
msgid "Delete"
|
2357 |
msgstr ""
|
2358 |
|
2374 |
#: js/build/index.js:15
|
2375 |
#: js/build/index.js:17
|
2376 |
#: js/build/index.js:21
|
|
|
2377 |
#: js/build/index.js:26
|
2378 |
+
#: js/build/index.js:27
|
2379 |
+
#: js/build/index.js:29
|
2380 |
msgid "Edit"
|
2381 |
msgstr ""
|
2382 |
|
2469 |
|
2470 |
#: js/build/index.js:15
|
2471 |
#: js/build/index.js:17
|
2472 |
+
#: js/build/index.js:27
|
2473 |
msgid "Estimate shipping time"
|
2474 |
msgstr ""
|
2475 |
|
2480 |
|
2481 |
#: js/build/index.js:15
|
2482 |
#: js/build/index.js:17
|
2483 |
+
#: js/build/index.js:27
|
2484 |
msgid "Then the estimated shipping time displayed in the product listing is"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
#: js/build/index.js:15
|
2488 |
#: js/build/index.js:17
|
2489 |
+
#: js/build/index.js:27
|
2490 |
msgid "days"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
#: js/build/index.js:15
|
2494 |
+
#: js/build/index.js:27
|
2495 |
msgid "Add another time"
|
2496 |
msgstr ""
|
2497 |
|
2506 |
msgstr ""
|
2507 |
|
2508 |
#: js/build/index.js:17
|
2509 |
+
#: js/build/index.js:27
|
2510 |
msgid "Shipping times"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
#: js/build/index.js:17
|
2514 |
+
#: js/build/index.js:27
|
2515 |
msgid "Your shipping times will be shown to potential customers on Google."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
#: js/build/index.js:17
|
2519 |
+
#: js/build/index.js:27
|
2520 |
msgid "Estimated shipping times"
|
2521 |
msgstr ""
|
2522 |
|
2533 |
msgstr ""
|
2534 |
|
2535 |
#: js/build/index.js:17
|
2536 |
+
#: js/build/index.js:24
|
2537 |
+
#: js/build/index.js:27
|
2538 |
msgid "Audience"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
#: js/build/index.js:17
|
2542 |
+
#: js/build/index.js:27
|
2543 |
msgid "Where do you want to sell your products?"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
#: js/build/index.js:17
|
2547 |
+
#: js/build/index.js:27
|
2548 |
msgid "Language"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
#: js/build/index.js:17
|
2552 |
+
#: js/build/index.js:27
|
2553 |
msgid "Listings can only be displayed in your site language. <link>Read more</link>"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
#: js/build/index.js:17
|
2557 |
+
#: js/build/index.js:27
|
2558 |
msgid "Location"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
#: js/build/index.js:17
|
2562 |
+
#: js/build/index.js:27
|
2563 |
msgid "Your store should already have the appropriate shipping and tax rates (if required) for potential customers in your selected location(s)."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
#: js/build/index.js:17
|
2567 |
+
#: js/build/index.js:27
|
2568 |
msgid "Selected countries only"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: js/build/index.js:17
|
2572 |
+
#: js/build/index.js:27
|
2573 |
msgid "Can’t find a country? Only supported countries can be selected."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
#: js/build/index.js:17
|
2577 |
+
#: js/build/index.js:27
|
2578 |
msgid "Your listings will be shown in all supported countries."
|
2579 |
msgstr ""
|
2580 |
|
2581 |
#: js/build/index.js:17
|
2582 |
#: js/build/index.js:21
|
2583 |
+
#: js/build/index.js:27
|
2584 |
msgid "Choose your audience"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
#: js/build/index.js:17
|
2588 |
+
#: js/build/index.js:27
|
2589 |
msgid "Configure who sees your product listings on Google."
|
2590 |
msgstr ""
|
2591 |
|
2592 |
#: js/build/index.js:17
|
2593 |
+
#: js/build/index.js:27
|
2594 |
msgid "Please select a location option."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
#: js/build/index.js:17
|
2598 |
+
#: js/build/index.js:27
|
2599 |
msgid "Please select at least one country."
|
2600 |
msgstr ""
|
2601 |
|
2666 |
msgstr ""
|
2667 |
|
2668 |
#: js/build/index.js:21
|
2669 |
+
#: js/build/index.js:28
|
2670 |
msgid "Loading…"
|
2671 |
msgstr ""
|
2672 |
|
2807 |
msgid "Or, use your existing Google Ads account"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: js/build/index.js:24
|
2811 |
msgid "If you manage multiple sub-accounts in Google Ads, please connect the relevant sub-account, not a manager account. <link>Learn more</link>"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: js/build/index.js:24
|
2815 |
msgid "Connecting…"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: js/build/index.js:24
|
2819 |
msgid "Unable to connect your Google Ads account. Please try again later."
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: js/build/index.js:24
|
2823 |
msgid "Or, create a new Google Ads account"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: js/build/index.js:24
|
2827 |
msgid "Unable to get Google authorization page. Please try again later."
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: js/build/index.js:24
|
2831 |
msgid "Check your maximum free credit"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: js/build/index.js:24
|
2835 |
msgid "Whatever you spend in the next month will be added back to your Google Ads account as free credit, up to a maximum limit depending on your store’s country."
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: js/build/index.js:24
|
2839 |
msgid "Spend $500 to get $500 in Google Ads credits!"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: js/build/index.js:24
|
2843 |
msgid "New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days. Check how much credit you can receive in your country <checkLink>here</checkLink>. <termLink>Terms and conditions apply</termLink>."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: js/build/index.js:24
|
2847 |
msgid "Connect your Google account and your Google Ads account to set up a paid Performance Max campaign."
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: js/build/index.js:24
|
2851 |
msgid "Any campaigns created through this app will appear in your Google Ads account. You will be billed directly through Google."
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: js/build/index.js:24
|
2855 |
msgid "This Google account is connected to your store’s product feed."
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: js/build/index.js:24
|
2859 |
msgid "Select countries"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: js/build/index.js:24
|
2863 |
msgid "Select one country"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: js/build/index.js:24
|
2867 |
msgid "Choose where do you want your product ads to appear."
|
2868 |
msgstr ""
|
2869 |
|
2870 |
#. translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount.
|
2871 |
+
#: js/build/index.js:25
|
2872 |
msgid "Most merchants targeting similar countries set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week."
|
2873 |
msgstr ""
|
2874 |
|
2875 |
#. translators: it's a range of recommended budget amount. 1: the low value of the range, 2: the high value of the range, 3: the currency of amount, 4: a country name selected by the merchant.
|
2876 |
+
#: js/build/index.js:26
|
2877 |
msgid "Most merchants targeting <strong>%4$s</strong> set a daily budget of <strong>%1$f to %2$f %3$s</strong> for approximately 10 conversions a week."
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: js/build/index.js:26
|
2881 |
msgid "With a budget lower than your competitor range, your campaign may not get noticeable results."
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: js/build/index.js:26
|
2885 |
msgid "Budget"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: js/build/index.js:26
|
2889 |
msgid "Enter a daily average cost that works best for your business and the results that you want. You can change your budget or cancel your ad at any time."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: js/build/index.js:26
|
2893 |
msgid "You will be billed directly by Google Ads."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: js/build/index.js:26
|
2897 |
msgid "Google will optimize your ads to maximize performance across your selected country(s)."
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: js/build/index.js:26
|
2901 |
msgid "Daily average cost"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: js/build/index.js:26
|
2905 |
msgid "Monthly max, estimated "
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: js/build/index.js:26
|
2909 |
msgid "What do I pay for?"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: js/build/index.js:26
|
2913 |
msgid "You only pay when someone clicks on your product ads to your store."
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: js/build/index.js:26
|
2917 |
msgid "What does daily average or monthly max mean?"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: js/build/index.js:26
|
2921 |
msgid "Some days you might spend less than your daily average, and on others you might spend up to 4 times as much. But over a month, your total spend across the month will be approximately as calculated above."
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: js/build/index.js:26
|
2925 |
+
#: js/build/index.js:28
|
2926 |
msgid "Create your paid campaign"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: js/build/index.js:26
|
2930 |
+
#: js/build/index.js:28
|
2931 |
msgid "Paid Performance Max campaigns are automatically optimized for you by Google. <link>See what your ads will look like.</link>"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: js/build/index.js:26
|
2935 |
msgid "Unable to complete your Google Ads account setup. Please try again later."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: js/build/index.js:26
|
2939 |
msgid "You do not have billing information set up in your Google Ads account. Once you have completed your billing setup, your campaign will launch automatically."
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: js/build/index.js:26
|
2943 |
msgid "Set up billing"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: js/build/index.js:26
|
2947 |
msgid "Great! You already have billing information saved for this <link>Google Ads account</link>."
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: js/build/index.js:26
|
2951 |
msgid "You will be billed directly by Google Ads, and you only pay when you get results."
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: js/build/index.js:26
|
2955 |
msgid "In order to launch your paid campaign, your billing information is required. You will be billed directly by Google and only pay when someone clicks on your ad."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: js/build/index.js:26
|
2959 |
msgid "Payment info through Google Ads"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: js/build/index.js:26
|
2963 |
+
#: js/build/index.js:28
|
2964 |
msgid "Launch paid campaign"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: js/build/index.js:26
|
2968 |
msgid "Set up paid campaign"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: js/build/index.js:26
|
2972 |
msgid "Please select at least one country for your ads campaign."
|
2973 |
msgstr ""
|
2974 |
|
2975 |
+
#: js/build/index.js:26
|
2976 |
msgid "Please make sure daily average cost is greater than 0."
|
2977 |
msgstr ""
|
2978 |
|
2979 |
+
#: js/build/index.js:26
|
2980 |
msgid "Unable to complete your ads setup. Please try again later."
|
2981 |
msgstr ""
|
2982 |
|
|
|
2983 |
#: js/build/index.js:26
|
2984 |
+
#: js/build/index.js:27
|
2985 |
msgid "You have unsaved campaign data. Are you sure you want to leave?"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: js/build/index.js:26
|
2989 |
msgid "Note: The currency set in your Google Ads account is <adsCurrency />, which is different from your store currency, <storeCurrency />. <readMoreLink>Read more</readMoreLink>"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: js/build/index.js:26
|
2993 |
msgid "Pencil icon"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: js/build/index.js:26
|
2997 |
msgid "Add paid campaign"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: js/build/index.js:26
|
3001 |
msgid "Create your first campaign and get $500 in ad credit*"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: js/build/index.js:26
|
3005 |
msgid "Create your first campaign"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: js/build/index.js:26
|
3009 |
msgid "We're having trouble loading this data. Try again later, or track your performance in Google Merchant Center."
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: js/build/index.js:26
|
3013 |
msgid "Open Google Merchant Center"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: js/build/index.js:26
|
3017 |
+
#: js/build/index.js:29
|
3018 |
msgid "Clicks"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: js/build/index.js:26
|
3022 |
+
#: js/build/index.js:29
|
3023 |
msgid "Total Spend"
|
3024 |
msgstr ""
|
3025 |
|
|
|
3026 |
#: js/build/index.js:26
|
3027 |
+
#: js/build/index.js:27
|
3028 |
msgid "Free"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: js/build/index.js:26
|
3032 |
msgid "We're having trouble loading this data. Try again later, or track your performance in Google Ads."
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: js/build/index.js:26
|
3036 |
msgid "Open Google Ads"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: js/build/index.js:26
|
3040 |
+
#: js/build/index.js:29
|
3041 |
msgid "Total Sales"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: js/build/index.js:26
|
3045 |
msgid "Performance (Free Listing)"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: js/build/index.js:26
|
3049 |
msgid "Performance (Paid Campaigns)"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: js/build/index.js:26
|
3053 |
msgid "Create another campaign"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: js/build/index.js:26
|
3057 |
msgid "Got it"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: js/build/index.js:26
|
3061 |
msgid "Drawing of a person who successfuly launched a campaign"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: js/build/index.js:26
|
3065 |
msgid "You've set up a paid Performance Max Campaign!"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: js/build/index.js:26
|
3069 |
msgid "You can pause or edit your campaign at any time. For best results, we recommend allowing your campaign to run for at least 14 days without pausing or editing. <link>Learn more about Performance Max technology.</link>"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: js/build/index.js:26
|
3073 |
msgid "Permanently Remove?"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: js/build/index.js:26
|
3077 |
msgid "Keep Campaign"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: js/build/index.js:26
|
3081 |
msgid "Remove Campaign"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: js/build/index.js:26
|
3085 |
msgid "Results typically improve with time with Google’s paid ad campaigns. Removing a paid ad campaign will result in the loss of any optimisations learned from those campaigns."
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: js/build/index.js:26
|
3089 |
msgid "Once a campaign is removed, it cannot be re-enabled."
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: js/build/index.js:26
|
3093 |
msgid "Remove"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: js/build/index.js:26
|
3097 |
msgid "Before you edit…"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: js/build/index.js:26
|
3101 |
msgid "Don't edit"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: js/build/index.js:26
|
3105 |
msgid "Continue to edit"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: js/build/index.js:26
|
3109 |
msgid "Results typically improve with time with Google’s Free Listing and paid ad campaigns."
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: js/build/index.js:26
|
3113 |
msgid "Editing will result in the loss of any optimisations learned over time."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: js/build/index.js:26
|
3117 |
msgid "We recommend allowing your programs to run for at least 14 days after set up, without pausing or editing, for optimal performance."
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: js/build/index.js:26
|
3121 |
msgid "Before you pause…"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: js/build/index.js:26
|
3125 |
msgid "Keep Active"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: js/build/index.js:26
|
3129 |
msgid "Pause Campaign"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: js/build/index.js:26
|
3133 |
msgid "Results typically improve with time with Google’s paid ad campaigns. If you pause, your products won’t be shown to people looking for what you offer."
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: js/build/index.js:26
|
3137 |
msgid "Pausing a paid ad campaign will result in the loss of any optimisations learned from those campaigns."
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: js/build/index.js:26
|
3141 |
msgid "Free listings cannot be paused through WooCommerce. Go to Google Merchant Center for advanced settings."
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: js/build/index.js:26
|
3145 |
+
#: js/build/index.js:29
|
3146 |
msgid "Program"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: js/build/index.js:26
|
3150 |
msgid "Country"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: js/build/index.js:26
|
3154 |
msgid "Daily budget"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: js/build/index.js:26
|
3158 |
msgid "Enabled"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
#. translators: %d: number of countries, with minimum value of 1.
|
3162 |
+
#: js/build/index.js:27
|
3163 |
msgid " + %d more"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: js/build/index.js:27
|
3167 |
+
#: js/build/index.js:29
|
3168 |
msgid "Free listings"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: js/build/index.js:27
|
3172 |
+
#: js/build/index.js:29
|
3173 |
msgid "Programs"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: js/build/index.js:27
|
3177 |
msgid "Add shipping time"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: js/build/index.js:27
|
3181 |
msgid "Update shipping time"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: js/build/index.js:27
|
3185 |
msgid "Edit free listings"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: js/build/index.js:27
|
3189 |
msgid "Your changes to your Free Listings have been saved and will be synced to your Google Merchant Center account."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: js/build/index.js:27
|
3193 |
msgid "Something went wrong while saving your changes. Please try again later."
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: js/build/index.js:27
|
3197 |
msgid "Save changes"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: js/build/index.js:27
|
3201 |
msgid "Once a campaign has been created, you cannot change the target country(s)."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: js/build/index.js:27
|
3205 |
msgid "Once a campaign has been created, you cannot change the target country."
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: js/build/index.js:27
|
3209 |
msgid "Edit your paid campaign"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: js/build/index.js:27
|
3213 |
msgid "Paid ad campaigns are automatically optimized for you by Google."
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: js/build/index.js:27
|
3217 |
msgid "See what your ads will look like."
|
3218 |
msgstr ""
|
3219 |
|
3220 |
#. translators: %s: campaign's name.
|
3221 |
+
#: js/build/index.js:28
|
3222 |
msgid "Edit %s"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: js/build/index.js:28
|
3226 |
msgid "Edit Campaign"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: js/build/index.js:28
|
3230 |
msgid "Error in loading your paid ads campaign. Please try again later."
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: js/build/index.js:28
|
3234 |
msgid "You’ve successfully created a paid campaign!"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
+
#: js/build/index.js:28
|
3238 |
msgid "How easy was it to create a Google Ad campaign?"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
+
#: js/build/index.js:28
|
3242 |
msgid "Unavailable"
|
3243 |
msgstr ""
|
3244 |
|
|
|
3245 |
#: js/build/index.js:28
|
3246 |
+
#: js/build/index.js:29
|
3247 |
msgid "Free Listings"
|
3248 |
msgstr ""
|
3249 |
|
|
|
3250 |
#: js/build/index.js:28
|
3251 |
+
#: js/build/index.js:29
|
3252 |
msgid "Show"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: js/build/index.js:28
|
3256 |
msgid "All Google programs"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: js/build/index.js:28
|
3260 |
msgid "Single program"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: js/build/index.js:28
|
3264 |
msgid "Type to search for a program"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: js/build/index.js:28
|
3268 |
msgid "Single Program"
|
3269 |
msgstr ""
|
3270 |
|
|
|
3271 |
#: js/build/index.js:28
|
3272 |
+
#: js/build/index.js:29
|
3273 |
msgid "Comparison"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: js/build/index.js:28
|
3277 |
msgid "Check at least two programs below to compare"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: js/build/index.js:28
|
3281 |
msgid "Search for programs to compare"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: js/build/index.js:28
|
3285 |
msgid "Compare Programs"
|
3286 |
msgstr ""
|
3287 |
|
|
|
3288 |
#: js/build/index.js:28
|
3289 |
+
#: js/build/index.js:29
|
3290 |
msgid "Compare"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: js/build/index.js:28
|
3294 |
msgid "This data is currently available for paid campaigns only."
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: js/build/index.js:28
|
3298 |
msgid "Please try again later, or go to <googleMerchantCenterLink /> to track your performance for Google Free Listings."
|
3299 |
msgstr ""
|
3300 |
|
3301 |
#. translators: %s: link to Google Merchant Center.
|
3302 |
+
#: js/build/index.js:29
|
3303 |
msgid "Google Merchant Center (%s)"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: js/build/index.js:29
|
3307 |
msgid "No data for the selected date range"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: js/build/index.js:29
|
3311 |
msgid "Select one or more programs to compare"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: js/build/index.js:29
|
3315 |
msgid "Products"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: js/build/index.js:29
|
3319 |
msgid "Conversions"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: js/build/index.js:29
|
3323 |
msgid "Impressions"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: js/build/index.js:29
|
3327 |
msgid "Spend"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: js/build/index.js:29
|
3331 |
msgid "All Products"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: js/build/index.js:29
|
3335 |
msgid "Single Product"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: js/build/index.js:29
|
3339 |
msgid "Type to search for a product"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: js/build/index.js:29
|
3343 |
msgid "Check at least two products below to compare"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: js/build/index.js:29
|
3347 |
msgid "Search for products to compare"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: js/build/index.js:29
|
3351 |
msgid "Compare Products"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: js/build/index.js:29
|
3355 |
msgid "All Variations"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: js/build/index.js:29
|
3359 |
msgid "Single Variation"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: js/build/index.js:29
|
3363 |
msgid "Type to search for a variation"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: js/build/index.js:29
|
3367 |
msgid "Check at least two variations below to compare"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: js/build/index.js:29
|
3371 |
msgid "Search for variations to compare"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: js/build/index.js:29
|
3375 |
msgid "Compare Variations"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: js/build/index.js:29
|
3379 |
msgid "Show data from"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: js/build/index.js:29
|
3383 |
msgid "Paid campaigns"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: js/build/index.js:29
|
3387 |
msgid "Select one or more products to compare"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: js/build/index.js:29
|
3391 |
msgid "Product title"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: js/build/index.js:29
|
3395 |
msgid "Type"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: js/build/index.js:29
|
3399 |
msgid "Affected product"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: js/build/index.js:29
|
3403 |
msgid "Issue"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: js/build/index.js:29
|
3407 |
msgid "Suggested action"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: js/build/index.js:29
|
3411 |
msgid "All account issues resolved"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: js/build/index.js:29
|
3415 |
msgid "All product issues resolved"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: js/build/index.js:29
|
3419 |
msgid "However, there are issues affecting your products that needs to be resolved. Head over to the <strong>Product Issues</strong> tab to view them."
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: js/build/index.js:29
|
3423 |
msgid "However, there are issues affecting your account that needs to be resolved. Head over to the <strong>Account Issues</strong> tab to view them."
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: js/build/index.js:29
|
3427 |
msgid "What to do?"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: js/build/index.js:29
|
3431 |
msgid "Read more about this issue"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: js/build/index.js:29
|
3435 |
+
#: js/build/index.js:31
|
3436 |
msgid "Issues to resolve"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: js/build/index.js:29
|
3440 |
msgid "An error occurred while retrieving issues. Please try again later."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: js/build/index.js:29
|
3444 |
msgid "Loading Issues To Resolve"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: js/build/index.js:29
|
3448 |
msgid "Account Issues"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: js/build/index.js:29
|
3452 |
msgid "Product Issues"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: js/build/index.js:29
|
3456 |
msgid "Request a review on the following issue(s):"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
#. translators: %d: The number of extra issues issues
|
3460 |
+
#: js/build/index.js:30
|
3461 |
msgid "Request account review"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: js/build/index.js:30
|
3465 |
msgid "Your account review was successfully requested."
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: js/build/index.js:30
|
3469 |
msgid "Please ensure that you have resolved all account suspension issues before requesting for an account review. If some issues are unresolved, you wont be able to request another review for at least 7 days. <Link>Learn more</Link>"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: js/build/index.js:30
|
3473 |
msgid "I have resolved all the issue(s) listed above."
|
3474 |
msgstr ""
|
3475 |
|
3476 |
#. translators: %s: Cool down period date.
|
3477 |
+
#: js/build/index.js:31
|
3478 |
msgid "Your account is under cool down period. You can request a new review on %s."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: js/build/index.js:31
|
3482 |
msgid "Request review"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: js/build/index.js:31
|
3486 |
msgid "Products and stores must meet <link>Google Merchant Center’s requirements</link> in order to get approved. WooCommerce and Google automatically check your product feed to help you resolve any issues. "
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: js/build/index.js:31
|
3490 |
msgid "Select channel visibility"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: js/build/index.js:31
|
3494 |
msgid "Don’t sync and show"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: js/build/index.js:31
|
3498 |
msgid "Select one or more products to bulk edit"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
#. translators: %d: number of selected products to edit channel visibility, with minimum value of 1.
|
3502 |
+
#: js/build/index.js:32
|
3503 |
msgid "Apply to %d selected"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: js/build/index.js:32
|
3507 |
msgid "Approved"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: js/build/index.js:32
|
3511 |
msgid "Partially approved"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: js/build/index.js:32
|
3515 |
+
#: js/build/index.js:37
|
3516 |
msgid "Expiring"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: js/build/index.js:32
|
3520 |
+
#: js/build/index.js:37
|
3521 |
msgid "Pending"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: js/build/index.js:32
|
3525 |
+
#: js/build/index.js:37
|
3526 |
msgid "Disapproved"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: js/build/index.js:32
|
3530 |
msgid "Not synced"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: js/build/index.js:32
|
3534 |
msgid "Product Title"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: js/build/index.js:32
|
3538 |
msgid "Channel Visibility"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
+
#: js/build/index.js:32
|
3542 |
msgid "Status"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
#. translators: %d: number of products are updated successfully, with minimum value of 1.
|
3546 |
+
#: js/build/index.js:33
|
3547 |
msgid "You successfully changed the channel visibility of %d product"
|
3548 |
msgid_plural "You successfully changed the channel visibility of %d products"
|
3549 |
msgstr[0] ""
|
3550 |
msgstr[1] ""
|
3551 |
|
3552 |
+
#: js/build/index.js:33
|
3553 |
msgid "An error occurred while retrieving products. Please try again later."
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: js/build/index.js:33
|
3557 |
msgid "Don't sync and show"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
#. translators: 1: current page number 2: total number of pages
|
3561 |
+
#: js/build/index.js:35
|
3562 |
msgid "WooCommerce Logo"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: js/build/index.js:35
|
3566 |
msgid "You have successfully set up Google Listings & Ads! 🎉"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: js/build/index.js:35
|
3570 |
msgid "Google reviews product listings in 3-5 days. If approved, your products will automatically be live and searchable on Google."
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: js/build/index.js:35
|
3574 |
msgid "<productFeedLink>Manage and edit your product feed in WooCommerce.</productFeedLink> We will also notify you of any product feed issues to ensure your products get approved and perform well on Google."
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: js/build/index.js:35
|
3578 |
msgid "Spend $500 to get $500 in Google Ads credits"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: js/build/index.js:35
|
3582 |
msgid "New to Google Ads? Get $500 in ad credit when you spend $500 within your first 60 days* You can edit or cancel your campaign at any time."
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: js/build/index.js:35
|
3586 |
msgid "*Full terms and conditions <link>here</link>."
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: js/build/index.js:35
|
3590 |
msgid "Maybe later"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: js/build/index.js:35
|
3594 |
msgid "Create paid campaign"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: js/build/index.js:35
|
3598 |
msgid "Back"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
+
#: js/build/index.js:35
|
3602 |
msgid "Your product feed is <strong>automatically synced</strong> from WooCommerce to Google, every 1-2 days. "
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: js/build/index.js:35
|
3606 |
msgid "<strong>‘Not synced’ products</strong> do not appear in Google listings. They are queued for submission, or they may be ineligible or excluded from the product feed."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: js/build/index.js:35
|
3610 |
msgid "After submission, Google assigns each product a status: <strong>Active, Expiring, Pending, or Disapproved.</strong>"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: js/build/index.js:35
|
3614 |
msgid "<strong>‘Active’ products</strong> are fully approved and eligible to appear in free listings on Google."
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: js/build/index.js:35
|
3618 |
msgid "<strong>‘Expiring’ products</strong> will become inactive and no longer appear in Google listings in the next 3 days."
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: js/build/index.js:35
|
3622 |
msgid "<strong>‘Pending’ products</strong> are being processed by Google. They will not appear in listings until they are approved."
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: js/build/index.js:35
|
3626 |
msgid "<strong>‘Disapproved’ products</strong> are inactive and do not appear in Google listings."
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: js/build/index.js:35
|
3630 |
msgid "<link>Read more about product sync and statuses</link>"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: js/build/index.js:35
|
3634 |
msgid "Sync in progress"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: js/build/index.js:35
|
3638 |
msgid "Automatically synced to Google"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#. translators: %s: datetime of last update products sync status, and %d: number of synced products, with minimum value of 1.
|
3642 |
+
#: js/build/index.js:36
|
3643 |
msgid "Last updated: %1$s, containing %2$d product"
|
3644 |
msgid_plural "Last updated: %1$s, containing %2$d products"
|
3645 |
msgstr[0] ""
|
3646 |
msgstr[1] ""
|
3647 |
|
3648 |
+
#: js/build/index.js:36
|
3649 |
msgid "Sync with Google:"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: js/build/index.js:36
|
3653 |
msgid "No issues to resolve 🎉"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
#. translators: %d: number of unsolved Merchant Center issues, with minimum value of 1.
|
3657 |
+
#: js/build/index.js:37
|
3658 |
msgid "%d issue to resolve"
|
3659 |
msgid_plural "%d issues to resolve"
|
3660 |
msgstr[0] ""
|
3661 |
msgstr[1] ""
|
3662 |
|
3663 |
+
#: js/build/index.js:37
|
3664 |
msgid "Feed setup:"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: js/build/index.js:37
|
3668 |
msgid "Free listings setup completed"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: js/build/index.js:37
|
3672 |
msgid "Account status:"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: js/build/index.js:37
|
3676 |
msgid "Overview"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: js/build/index.js:37
|
3680 |
msgid "Active"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: js/build/index.js:37
|
3684 |
msgid "Not Synced"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: js/build/index.js:37
|
3688 |
msgid "How easy was it to set up Google Listings & Ads?"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: js/build/index.js:37
|
3692 |
msgid "An error occurred while retrieving your product feed. Please try again later."
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: js/build/index.js:37
|
3696 |
msgid "Linked accounts"
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: js/build/index.js:37
|
3700 |
msgid "A WordPress.com account, Google account, and Google Merchant Center account are required to use this extension in WooCommerce."
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: js/build/index.js:37
|
3704 |
msgid "Disconnect all accounts"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: js/build/index.js:37
|
3708 |
msgid "Yes, I want to disconnect all my accounts."
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: js/build/index.js:37
|
3712 |
msgid "I understand that I am disconnecting any WordPress.com account, Google account, Google Merchant Center account and Google Ads account connected to this extension."
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: js/build/index.js:37
|
3716 |
msgid "Any active product listings will continue to show on Google. They can be managed, edited, or deleted manually from Google Merchant Center (merchants.google.com)."
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: js/build/index.js:37
|
3720 |
msgid "Any ongoing paid campaigns will continue to run. They can be managed, edited, or deleted manually from Google Ads (ads.google.com)."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: js/build/index.js:37
|
3724 |
msgid "Disconnect Google Ads account"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: js/build/index.js:37
|
3728 |
msgid "Disconnect Google Ads Account"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: js/build/index.js:37
|
3732 |
msgid "Yes, I want to disconnect my Google Ads account."
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: js/build/index.js:37
|
3736 |
msgid "I understand that I am disconnecting my Google Ads account from this WooCommerce extension."
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: js/build/index.js:37
|
3740 |
msgid "Some configurations for Google Ads created through WooCommerce may be lost. This cannot be undone."
|
3741 |
msgstr ""
|
3742 |
|
3743 |
+
#: js/build/index.js:37
|
3744 |
msgid "Never mind"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: js/build/index.js:37
|
3748 |
msgid "Disconnect Google Ads account only"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: js/build/index.js:37
|
3752 |
msgid "Disconnect from all accounts"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: js/build/index.js:37
|
3756 |
msgid "Your WordPress.com account has been disconnected."
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: js/build/index.js:37
|
3760 |
msgid "Connect your WordPress.com account to ensure your products stay listed on Google. If you do not re-connect, your products can’t be automatically synced to Google, and any existing listings may be removed from Google."
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: js/build/index.js:37
|
3764 |
msgid "This Google account, <accountEmail />, was not the Google account previously connected to this integration."
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: js/build/index.js:37
|
3768 |
msgid "Thus, it doesn‘t have access to the Google Merchant Center and/or Google Ads account currently connected to this WooCommerce store."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: js/build/index.js:37
|
3772 |
msgid "Try connecting with a different Google account, or completely disconnect all your connected accounts."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: js/build/index.js:37
|
3776 |
msgid "Try another Google account"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: js/build/index.js:37
|
3780 |
msgid "Connect account"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: js/build/index.js:37
|
3784 |
msgid "Edit store address"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: js/build/index.js:37
|
3788 |
msgid "Your store address is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: js/build/index.js:37
|
3792 |
msgid "Save details"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: js/build/index.js:37
|
3796 |
msgid "Edit phone number"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: js/build/index.js:37
|
3800 |
msgid "Your phone number is required by Google for verification purposes. It will be shared with the Google Merchant Center and will not be displayed to customers."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: js/build/index.js:37
|
3804 |
msgid "Marketing"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: js/build/index.js:37
|
3808 |
msgid "Setup Merchant Center"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: js/build/index.js:37
|
3812 |
msgid "Setup Google Ads"
|
3813 |
msgstr ""
|
3814 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: woocommerce, google, listings, ads
|
|
4 |
Requires at least: 5.7
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 7.3
|
7 |
-
Stable tag:
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -109,6 +109,12 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
= 1.13.6 - 2022-06-21 =
|
113 |
* Fix - Cannot disconnect Jetpack when other activated plugins are using Jetpack connection.
|
114 |
* Fix - Compatibility CES prompts with WC 6.6.0.
|
@@ -122,15 +128,4 @@ Yes, you can run both at the same time, and we recommend it! In the US, advertis
|
|
122 |
* Tweak - Update copy for Free and Enhanced Listings merge
|
123 |
* Tweak - WC 6.6 compatibility.
|
124 |
|
125 |
-
= 1.13.4 - 2022-06-07 =
|
126 |
-
* Fix - Adding Github Actions for storybook.
|
127 |
-
* Fix - Do not show error notice when Merchant Center review request API call failed.
|
128 |
-
* Fix - Do not store URL matches transient until fully connected.
|
129 |
-
* Fix - Fix GitHub Workflow paths.
|
130 |
-
* Fix - Use commit instead of branch for storybook dependency.
|
131 |
-
* Tweak - Always compare site URL hash without trailing slash.
|
132 |
-
* Tweak - Compliance Policy links.
|
133 |
-
* Tweak - WC 6.6 compatibility.
|
134 |
-
|
135 |
-
|
136 |
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/google-listings-and-ads/trunk/changelog.txt).
|
4 |
Requires at least: 5.7
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 7.3
|
7 |
+
Stable tag: 2.0.0
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 2.0.0 - 2022-07-05 =
|
113 |
+
* Add - Filter Ads accounts to exclude manager and test accounts.
|
114 |
+
* Add - Return account names when retrieving the list of existing accounts.
|
115 |
+
* Fix - Normalize image URLs before validation.
|
116 |
+
* Tweak - WooCommerce 6.7 compatibility.
|
117 |
+
|
118 |
= 1.13.6 - 2022-06-21 =
|
119 |
* Fix - Cannot disconnect Jetpack when other activated plugins are using Jetpack connection.
|
120 |
* Fix - Compatibility CES prompts with WC 6.6.0.
|
128 |
* Tweak - Update copy for Free and Enhanced Listings merge
|
129 |
* Tweak - WC 6.6 compatibility.
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/google-listings-and-ads/trunk/changelog.txt).
|
src/API/Google/Ads.php
CHANGED
@@ -3,6 +3,7 @@ declare( strict_types=1 );
|
|
3 |
|
4 |
namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
|
5 |
|
|
|
6 |
use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsAccountQuery;
|
7 |
use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsBillingStatusQuery;
|
8 |
use Automattic\WooCommerce\GoogleListingsAndAds\Exception\ExceptionWithResponseData;
|
@@ -49,22 +50,25 @@ class Ads implements OptionsAwareInterface {
|
|
49 |
}
|
50 |
|
51 |
/**
|
52 |
-
* Get Ads
|
53 |
*
|
54 |
-
* @return
|
55 |
* @throws ExceptionWithResponseData When an ApiException is caught.
|
56 |
*/
|
57 |
-
public function
|
58 |
try {
|
59 |
$customers = $this->client->getCustomerServiceClient()->listAccessibleCustomers();
|
60 |
-
$
|
61 |
|
62 |
foreach ( $customers->getResourceNames() as $name ) {
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
65 |
}
|
66 |
|
67 |
-
return $
|
68 |
} catch ( ApiException $e ) {
|
69 |
do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
|
70 |
|
@@ -143,7 +147,7 @@ class Ads implements OptionsAwareInterface {
|
|
143 |
}
|
144 |
|
145 |
/**
|
146 |
-
* Check if we have access to the
|
147 |
*
|
148 |
* @param string $email Email address of the connected account.
|
149 |
*
|
@@ -153,10 +157,10 @@ class Ads implements OptionsAwareInterface {
|
|
153 |
$ads_id = $this->options->get_ads_id();
|
154 |
|
155 |
try {
|
156 |
-
$results = ( new
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
|
161 |
foreach ( $results->iterateAllElements() as $row ) {
|
162 |
$access = $row->getCustomerUserAccess();
|
@@ -196,8 +200,15 @@ class Ads implements OptionsAwareInterface {
|
|
196 |
*/
|
197 |
public function request_ads_currency(): bool {
|
198 |
try {
|
199 |
-
$
|
200 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
$currency = $customer->getCurrencyCode();
|
202 |
} catch ( ApiException $e ) {
|
203 |
do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
|
@@ -251,6 +262,36 @@ class Ads implements OptionsAwareInterface {
|
|
251 |
return $this->options->update( OptionsInterface::ADS_BILLING_URL, $url );
|
252 |
}
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
/**
|
255 |
* Get the link from a merchant account.
|
256 |
*
|
3 |
|
4 |
namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google;
|
5 |
|
6 |
+
use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsAccountAccessQuery;
|
7 |
use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsAccountQuery;
|
8 |
use Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query\AdsBillingStatusQuery;
|
9 |
use Automattic\WooCommerce\GoogleListingsAndAds\Exception\ExceptionWithResponseData;
|
50 |
}
|
51 |
|
52 |
/**
|
53 |
+
* Get Ads accounts associated with the connected Google account.
|
54 |
*
|
55 |
+
* @return array
|
56 |
* @throws ExceptionWithResponseData When an ApiException is caught.
|
57 |
*/
|
58 |
+
public function get_ads_accounts(): array {
|
59 |
try {
|
60 |
$customers = $this->client->getCustomerServiceClient()->listAccessibleCustomers();
|
61 |
+
$accounts = [];
|
62 |
|
63 |
foreach ( $customers->getResourceNames() as $name ) {
|
64 |
+
$account = $this->get_account_details( $name );
|
65 |
+
|
66 |
+
if ( $account ) {
|
67 |
+
$accounts[] = $account;
|
68 |
+
}
|
69 |
}
|
70 |
|
71 |
+
return $accounts;
|
72 |
} catch ( ApiException $e ) {
|
73 |
do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
|
74 |
|
147 |
}
|
148 |
|
149 |
/**
|
150 |
+
* Check if we have access to the ads account.
|
151 |
*
|
152 |
* @param string $email Email address of the connected account.
|
153 |
*
|
157 |
$ads_id = $this->options->get_ads_id();
|
158 |
|
159 |
try {
|
160 |
+
$results = ( new AdsAccountAccessQuery() )
|
161 |
+
->set_client( $this->client, $ads_id )
|
162 |
+
->where( 'customer_user_access.email_address', $email )
|
163 |
+
->get_results();
|
164 |
|
165 |
foreach ( $results->iterateAllElements() as $row ) {
|
166 |
$access = $row->getCustomerUserAccess();
|
200 |
*/
|
201 |
public function request_ads_currency(): bool {
|
202 |
try {
|
203 |
+
$ads_id = $this->options->get_ads_id();
|
204 |
+
$account = ResourceNames::forCustomer( $ads_id );
|
205 |
+
$customer = ( new AdsAccountQuery() )
|
206 |
+
->set_client( $this->client, $ads_id )
|
207 |
+
->columns( [ 'customer.currency_code' ] )
|
208 |
+
->where( 'customer.resource_name', $account, '=' )
|
209 |
+
->get_result()
|
210 |
+
->getCustomer();
|
211 |
+
|
212 |
$currency = $customer->getCurrencyCode();
|
213 |
} catch ( ApiException $e ) {
|
214 |
do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
|
262 |
return $this->options->update( OptionsInterface::ADS_BILLING_URL, $url );
|
263 |
}
|
264 |
|
265 |
+
/**
|
266 |
+
* Fetch the account details.
|
267 |
+
* Returns null for any account that fails or is not the right type.
|
268 |
+
*
|
269 |
+
* @param string $account Customer resource name.
|
270 |
+
* @return null|array
|
271 |
+
*/
|
272 |
+
private function get_account_details( string $account ): ?array {
|
273 |
+
try {
|
274 |
+
$customer = ( new AdsAccountQuery() )
|
275 |
+
->set_client( $this->client, $this->parse_ads_id( $account ) )
|
276 |
+
->where( 'customer.resource_name', $account, '=' )
|
277 |
+
->get_result()
|
278 |
+
->getCustomer();
|
279 |
+
|
280 |
+
if ( ! $customer || $customer->getManager() || $customer->getTestAccount() ) {
|
281 |
+
return null;
|
282 |
+
}
|
283 |
+
|
284 |
+
return [
|
285 |
+
'id' => $customer->getId(),
|
286 |
+
'name' => $customer->getDescriptiveName(),
|
287 |
+
];
|
288 |
+
} catch ( ApiException $e ) {
|
289 |
+
do_action( 'woocommerce_gla_ads_client_exception', $e, __METHOD__ );
|
290 |
+
}
|
291 |
+
|
292 |
+
return null;
|
293 |
+
}
|
294 |
+
|
295 |
/**
|
296 |
* Get the link from a merchant account.
|
297 |
*
|
src/API/Google/Query/AdsAccountAccessQuery.php
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
declare( strict_types=1 );
|
3 |
+
|
4 |
+
namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query;
|
5 |
+
|
6 |
+
defined( 'ABSPATH' ) || exit;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Class AdsAccountAccessQuery
|
10 |
+
*
|
11 |
+
* @package Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query
|
12 |
+
*/
|
13 |
+
class AdsAccountAccessQuery extends AdsQuery {
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Query constructor.
|
17 |
+
*/
|
18 |
+
public function __construct() {
|
19 |
+
parent::__construct( 'customer_user_access' );
|
20 |
+
$this->columns( [ 'customer_user_access.resource_name', 'customer_user_access.access_role' ] );
|
21 |
+
}
|
22 |
+
}
|
src/API/Google/Query/AdsAccountQuery.php
CHANGED
@@ -16,7 +16,7 @@ class AdsAccountQuery extends AdsQuery {
|
|
16 |
* Query constructor.
|
17 |
*/
|
18 |
public function __construct() {
|
19 |
-
parent::__construct( '
|
20 |
-
$this->columns( [ '
|
21 |
}
|
22 |
}
|
16 |
* Query constructor.
|
17 |
*/
|
18 |
public function __construct() {
|
19 |
+
parent::__construct( 'customer' );
|
20 |
+
$this->columns( [ 'customer.id', 'customer.descriptive_name', 'customer.manager', 'customer.test_account' ] );
|
21 |
}
|
22 |
}
|
src/API/Google/Query/AdsQuery.php
CHANGED
@@ -5,6 +5,7 @@ namespace Automattic\WooCommerce\GoogleListingsAndAds\API\Google\Query;
|
|
5 |
|
6 |
use Automattic\WooCommerce\GoogleListingsAndAds\Exception\InvalidProperty;
|
7 |
use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
|
|
|
8 |
use Google\ApiCore\ApiException;
|
9 |
use Google\ApiCore\PagedListResponse;
|
10 |
|
@@ -59,6 +60,24 @@ abstract class AdsQuery extends Query {
|
|
59 |
return $this;
|
60 |
}
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
/**
|
63 |
* Perform the query and save it to the results.
|
64 |
*
|
5 |
|
6 |
use Automattic\WooCommerce\GoogleListingsAndAds\Exception\InvalidProperty;
|
7 |
use Automattic\WooCommerce\GoogleListingsAndAds\Google\Ads\GoogleAdsClient;
|
8 |
+
use Google\Ads\GoogleAds\V9\Services\GoogleAdsRow;
|
9 |
use Google\ApiCore\ApiException;
|
10 |
use Google\ApiCore\PagedListResponse;
|
11 |
|
60 |
return $this;
|
61 |
}
|
62 |
|
63 |
+
/**
|
64 |
+
* Get the first row from the results.
|
65 |
+
*
|
66 |
+
* @return GoogleAdsRow
|
67 |
+
* @throws ApiException When no results returned or an error occurs.
|
68 |
+
*/
|
69 |
+
public function get_result(): GoogleAdsRow {
|
70 |
+
$results = $this->get_results();
|
71 |
+
|
72 |
+
if ( $results ) {
|
73 |
+
foreach ( $results->iterateAllElements() as $row ) {
|
74 |
+
return $row;
|
75 |
+
}
|
76 |
+
}
|
77 |
+
|
78 |
+
throw new ApiException( __( 'No result from query', 'google-listings-and-ads' ), 404, '' );
|
79 |
+
}
|
80 |
+
|
81 |
/**
|
82 |
* Perform the query and save it to the results.
|
83 |
*
|
src/API/Site/Controllers/Ads/AccountController.php
CHANGED
@@ -96,7 +96,7 @@ class AccountController extends BaseController {
|
|
96 |
protected function get_accounts_callback(): callable {
|
97 |
return function() {
|
98 |
try {
|
99 |
-
return new Response( $this->account->
|
100 |
} catch ( Exception $e ) {
|
101 |
return $this->response_from_exception( $e );
|
102 |
}
|
96 |
protected function get_accounts_callback(): callable {
|
97 |
return function() {
|
98 |
try {
|
99 |
+
return new Response( $this->account->get_accounts() );
|
100 |
} catch ( Exception $e ) {
|
101 |
return $this->response_from_exception( $e );
|
102 |
}
|
src/Ads/AccountService.php
CHANGED
@@ -57,13 +57,13 @@ class AccountService implements OptionsAwareInterface, Service {
|
|
57 |
}
|
58 |
|
59 |
/**
|
60 |
-
* Get Ads
|
61 |
*
|
62 |
-
* @return
|
63 |
* @throws Exception When an API error occurs.
|
64 |
*/
|
65 |
-
public function
|
66 |
-
return $this->container->get( Ads::class )->
|
67 |
}
|
68 |
|
69 |
/**
|
57 |
}
|
58 |
|
59 |
/**
|
60 |
+
* Get Ads accounts associated with the connected Google account.
|
61 |
*
|
62 |
+
* @return array
|
63 |
* @throws Exception When an API error occurs.
|
64 |
*/
|
65 |
+
public function get_accounts(): array {
|
66 |
+
return $this->container->get( Ads::class )->get_ads_accounts();
|
67 |
}
|
68 |
|
69 |
/**
|
src/ConnectionTest.php
CHANGED
@@ -915,12 +915,12 @@ class ConnectionTest implements Service, Registerable {
|
|
915 |
|
916 |
if ( 'wcs-ads-customers-lib' === $_GET['action'] && check_admin_referer( 'wcs-ads-customers-lib' ) ) {
|
917 |
try {
|
918 |
-
$accounts = $this->container->get( Ads::class )->
|
919 |
|
920 |
$this->response .= 'Total accounts: ' . count( $accounts ) . "\n";
|
921 |
-
foreach ( $accounts as $
|
922 |
-
$this->response .= sprintf( "
|
923 |
-
$_GET['customer_id'] = $id;
|
924 |
}
|
925 |
} catch ( \Exception $e ) {
|
926 |
$this->response .= 'Error: ' . $e->getMessage();
|
915 |
|
916 |
if ( 'wcs-ads-customers-lib' === $_GET['action'] && check_admin_referer( 'wcs-ads-customers-lib' ) ) {
|
917 |
try {
|
918 |
+
$accounts = $this->container->get( Ads::class )->get_ads_accounts();
|
919 |
|
920 |
$this->response .= 'Total accounts: ' . count( $accounts ) . "\n";
|
921 |
+
foreach ( $accounts as $account ) {
|
922 |
+
$this->response .= sprintf( "%d : %s\n", $account['id'], $account['name'] );
|
923 |
+
$_GET['customer_id'] = $account['id'];
|
924 |
}
|
925 |
} catch ( \Exception $e ) {
|
926 |
$this->response .= 'Error: ' . $e->getMessage();
|
src/Product/WCProductAdapter.php
CHANGED
@@ -753,8 +753,17 @@ class WCProductAdapter extends GoogleProduct implements Validatable {
|
|
753 |
$metadata->addPropertyConstraint( 'link', new Assert\Url() );
|
754 |
|
755 |
$metadata->addPropertyConstraint( 'imageLink', new Assert\NotBlank() );
|
756 |
-
$metadata->addPropertyConstraint( 'imageLink', new Assert\Url() );
|
757 |
-
$metadata->addPropertyConstraint(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
758 |
|
759 |
$metadata->addGetterConstraint( 'price', new Assert\NotNull() );
|
760 |
$metadata->addGetterConstraint( 'price', new GooglePriceConstraint() );
|
753 |
$metadata->addPropertyConstraint( 'link', new Assert\Url() );
|
754 |
|
755 |
$metadata->addPropertyConstraint( 'imageLink', new Assert\NotBlank() );
|
756 |
+
$metadata->addPropertyConstraint( 'imageLink', new Assert\Url( [ 'normalizer' => 'Normalizer::normalize' ] ) );
|
757 |
+
$metadata->addPropertyConstraint(
|
758 |
+
'additionalImageLinks',
|
759 |
+
new Assert\All(
|
760 |
+
[
|
761 |
+
'constraints' => [
|
762 |
+
new Assert\Url( [ 'normalizer' => 'Normalizer::normalize' ] ),
|
763 |
+
],
|
764 |
+
]
|
765 |
+
)
|
766 |
+
);
|
767 |
|
768 |
$metadata->addGetterConstraint( 'price', new Assert\NotNull() );
|
769 |
$metadata->addGetterConstraint( 'price', new GooglePriceConstraint() );
|
vendor/autoload.php
CHANGED
@@ -2,6 +2,11 @@
|
|
2 |
|
3 |
// autoload.php @generated by Composer
|
4 |
|
|
|
|
|
|
|
|
|
|
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
2 |
|
3 |
// autoload.php @generated by Composer
|
4 |
|
5 |
+
if (PHP_VERSION_ID < 50600) {
|
6 |
+
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
7 |
+
exit(1);
|
8 |
+
}
|
9 |
+
|
10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
11 |
|
12 |
+
return ComposerAutoloaderInit0c2e83a3ecd0680e8a1e54ad28f6de36::getLoader();
|
vendor/autoload_packages.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp0c2e83a3ecd0680e8a1e54ad28f6de36;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/composer/InstalledVersions.php
CHANGED
@@ -21,12 +21,14 @@ use Composer\Semver\VersionParser;
|
|
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,
|
30 |
*/
|
31 |
private static $installed;
|
32 |
|
@@ -37,7 +39,7 @@ class InstalledVersions
|
|
37 |
|
38 |
/**
|
39 |
* @var array[]
|
40 |
-
* @psalm-var array<string, array{root: array{name: string,
|
41 |
*/
|
42 |
private static $installedByVendor = array();
|
43 |
|
@@ -241,7 +243,7 @@ class InstalledVersions
|
|
241 |
|
242 |
/**
|
243 |
* @return array
|
244 |
-
* @psalm-return array{name: string,
|
245 |
*/
|
246 |
public static function getRootPackage()
|
247 |
{
|
@@ -255,7 +257,7 @@ class InstalledVersions
|
|
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,
|
259 |
*/
|
260 |
public static function getRawData()
|
261 |
{
|
@@ -278,7 +280,7 @@ class InstalledVersions
|
|
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,
|
282 |
*/
|
283 |
public static function getAllRawData()
|
284 |
{
|
@@ -301,7 +303,7 @@ class InstalledVersions
|
|
301 |
* @param array[] $data A vendor/composer/installed.php data set
|
302 |
* @return void
|
303 |
*
|
304 |
-
* @psalm-param array{root: array{name: string,
|
305 |
*/
|
306 |
public static function reload($data)
|
307 |
{
|
@@ -311,7 +313,7 @@ class InstalledVersions
|
|
311 |
|
312 |
/**
|
313 |
* @return array[]
|
314 |
-
* @psalm-return list<array{root: array{name: string,
|
315 |
*/
|
316 |
private static function getInstalled()
|
317 |
{
|
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 |
+
* @final
|
26 |
*/
|
27 |
class InstalledVersions
|
28 |
{
|
29 |
/**
|
30 |
* @var mixed[]|null
|
31 |
+
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
32 |
*/
|
33 |
private static $installed;
|
34 |
|
39 |
|
40 |
/**
|
41 |
* @var array[]
|
42 |
+
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
43 |
*/
|
44 |
private static $installedByVendor = array();
|
45 |
|
243 |
|
244 |
/**
|
245 |
* @return array
|
246 |
+
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
|
247 |
*/
|
248 |
public static function getRootPackage()
|
249 |
{
|
257 |
*
|
258 |
* @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.
|
259 |
* @return array[]
|
260 |
+
* @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
|
261 |
*/
|
262 |
public static function getRawData()
|
263 |
{
|
280 |
* Returns the raw data of all installed.php which are currently loaded for custom implementations
|
281 |
*
|
282 |
* @return array[]
|
283 |
+
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
284 |
*/
|
285 |
public static function getAllRawData()
|
286 |
{
|
303 |
* @param array[] $data A vendor/composer/installed.php data set
|
304 |
* @return void
|
305 |
*
|
306 |
+
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
|
307 |
*/
|
308 |
public static function reload($data)
|
309 |
{
|
313 |
|
314 |
/**
|
315 |
* @return array[]
|
316 |
+
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
317 |
*/
|
318 |
private static function getInstalled()
|
319 |
{
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_classmap.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
@@ -68,6 +68,7 @@ return array(
|
|
68 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantMetrics' => $baseDir . '/src/API/Google/MerchantMetrics.php',
|
69 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantReport' => $baseDir . '/src/API/Google/MerchantReport.php',
|
70 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Middleware' => $baseDir . '/src/API/Google/Middleware.php',
|
|
|
71 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAccountQuery' => $baseDir . '/src/API/Google/Query/AdsAccountQuery.php',
|
72 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAssetGroupQuery' => $baseDir . '/src/API/Google/Query/AdsAssetGroupQuery.php',
|
73 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsBillingStatusQuery' => $baseDir . '/src/API/Google/Query/AdsBillingStatusQuery.php',
|
2 |
|
3 |
// autoload_classmap.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
68 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantMetrics' => $baseDir . '/src/API/Google/MerchantMetrics.php',
|
69 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantReport' => $baseDir . '/src/API/Google/MerchantReport.php',
|
70 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Middleware' => $baseDir . '/src/API/Google/Middleware.php',
|
71 |
+
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAccountAccessQuery' => $baseDir . '/src/API/Google/Query/AdsAccountAccessQuery.php',
|
72 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAccountQuery' => $baseDir . '/src/API/Google/Query/AdsAccountQuery.php',
|
73 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAssetGroupQuery' => $baseDir . '/src/API/Google/Query/AdsAssetGroupQuery.php',
|
74 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsBillingStatusQuery' => $baseDir . '/src/API/Google/Query/AdsBillingStatusQuery.php',
|
vendor/composer/autoload_files.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_files.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
2 |
|
3 |
// autoload_files.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
vendor/composer/autoload_namespaces.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_namespaces.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
2 |
|
3 |
// autoload_namespaces.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
vendor/composer/autoload_psr4.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_psr4.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
2 |
|
3 |
// autoload_psr4.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -24,41 +24,18 @@ class ComposerAutoloaderInitca0e9769fbac099b4edab1000f1d3895
|
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
-
spl_autoload_register(array('
|
28 |
-
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(
|
29 |
-
spl_autoload_unregister(array('
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
require __DIR__ . '/autoload_static.php';
|
34 |
-
|
35 |
-
call_user_func(\Composer\Autoload\ComposerStaticInitca0e9769fbac099b4edab1000f1d3895::getInitializer($loader));
|
36 |
-
} else {
|
37 |
-
$map = require __DIR__ . '/autoload_namespaces.php';
|
38 |
-
foreach ($map as $namespace => $path) {
|
39 |
-
$loader->set($namespace, $path);
|
40 |
-
}
|
41 |
-
|
42 |
-
$map = require __DIR__ . '/autoload_psr4.php';
|
43 |
-
foreach ($map as $namespace => $path) {
|
44 |
-
$loader->setPsr4($namespace, $path);
|
45 |
-
}
|
46 |
-
|
47 |
-
$classMap = require __DIR__ . '/autoload_classmap.php';
|
48 |
-
if ($classMap) {
|
49 |
-
$loader->addClassMap($classMap);
|
50 |
-
}
|
51 |
-
}
|
52 |
|
53 |
$loader->register(true);
|
54 |
|
55 |
-
|
56 |
-
$includeFiles = Composer\Autoload\ComposerStaticInitca0e9769fbac099b4edab1000f1d3895::$files;
|
57 |
-
} else {
|
58 |
-
$includeFiles = require __DIR__ . '/autoload_files.php';
|
59 |
-
}
|
60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
61 |
-
|
62 |
}
|
63 |
|
64 |
return $loader;
|
@@ -70,7 +47,7 @@ class ComposerAutoloaderInitca0e9769fbac099b4edab1000f1d3895
|
|
70 |
* @param string $file
|
71 |
* @return void
|
72 |
*/
|
73 |
-
function
|
74 |
{
|
75 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
76 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit0c2e83a3ecd0680e8a1e54ad28f6de36
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
+
spl_autoload_register(array('ComposerAutoloaderInit0c2e83a3ecd0680e8a1e54ad28f6de36', 'loadClassLoader'), true, true);
|
28 |
+
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit0c2e83a3ecd0680e8a1e54ad28f6de36', 'loadClassLoader'));
|
30 |
|
31 |
+
require __DIR__ . '/autoload_static.php';
|
32 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit0c2e83a3ecd0680e8a1e54ad28f6de36::getInitializer($loader));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
$loader->register(true);
|
35 |
|
36 |
+
$includeFiles = \Composer\Autoload\ComposerStaticInit0c2e83a3ecd0680e8a1e54ad28f6de36::$files;
|
|
|
|
|
|
|
|
|
37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
38 |
+
composerRequire0c2e83a3ecd0680e8a1e54ad28f6de36($fileIdentifier, $file);
|
39 |
}
|
40 |
|
41 |
return $loader;
|
47 |
* @param string $file
|
48 |
* @return void
|
49 |
*/
|
50 |
+
function composerRequire0c2e83a3ecd0680e8a1e54ad28f6de36($fileIdentifier, $file)
|
51 |
{
|
52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
@@ -296,6 +296,7 @@ class ComposerStaticInitca0e9769fbac099b4edab1000f1d3895
|
|
296 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantMetrics' => __DIR__ . '/../..' . '/src/API/Google/MerchantMetrics.php',
|
297 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantReport' => __DIR__ . '/../..' . '/src/API/Google/MerchantReport.php',
|
298 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Middleware' => __DIR__ . '/../..' . '/src/API/Google/Middleware.php',
|
|
|
299 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAccountQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsAccountQuery.php',
|
300 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAssetGroupQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsAssetGroupQuery.php',
|
301 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsBillingStatusQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsBillingStatusQuery.php',
|
@@ -4104,9 +4105,9 @@ class ComposerStaticInitca0e9769fbac099b4edab1000f1d3895
|
|
4104 |
public static function getInitializer(ClassLoader $loader)
|
4105 |
{
|
4106 |
return \Closure::bind(function () use ($loader) {
|
4107 |
-
$loader->prefixLengthsPsr4 =
|
4108 |
-
$loader->prefixDirsPsr4 =
|
4109 |
-
$loader->classMap =
|
4110 |
|
4111 |
}, null, ClassLoader::class);
|
4112 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit0c2e83a3ecd0680e8a1e54ad28f6de36
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
296 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantMetrics' => __DIR__ . '/../..' . '/src/API/Google/MerchantMetrics.php',
|
297 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\MerchantReport' => __DIR__ . '/../..' . '/src/API/Google/MerchantReport.php',
|
298 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Middleware' => __DIR__ . '/../..' . '/src/API/Google/Middleware.php',
|
299 |
+
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAccountAccessQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsAccountAccessQuery.php',
|
300 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAccountQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsAccountQuery.php',
|
301 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsAssetGroupQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsAssetGroupQuery.php',
|
302 |
'Automattic\\WooCommerce\\GoogleListingsAndAds\\API\\Google\\Query\\AdsBillingStatusQuery' => __DIR__ . '/../..' . '/src/API/Google/Query/AdsBillingStatusQuery.php',
|
4105 |
public static function getInitializer(ClassLoader $loader)
|
4106 |
{
|
4107 |
return \Closure::bind(function () use ($loader) {
|
4108 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit0c2e83a3ecd0680e8a1e54ad28f6de36::$prefixLengthsPsr4;
|
4109 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit0c2e83a3ecd0680e8a1e54ad28f6de36::$prefixDirsPsr4;
|
4110 |
+
$loader->classMap = ComposerStaticInit0c2e83a3ecd0680e8a1e54ad28f6de36::$classMap;
|
4111 |
|
4112 |
}, null, ClassLoader::class);
|
4113 |
}
|
vendor/composer/installed.php
CHANGED
@@ -1,238 +1,238 @@
|
|
1 |
<?php return array(
|
2 |
'root' => array(
|
3 |
-
'
|
4 |
-
'
|
|
|
|
|
5 |
'type' => 'wordpress-plugin',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
8 |
-
'reference' => '54afc34883b9393c3a2376ff7719a257892655d7',
|
9 |
-
'name' => 'woocommerce/google-listings-and-ads',
|
10 |
'dev' => false,
|
11 |
),
|
12 |
'versions' => array(
|
13 |
'automattic/jetpack-a8c-mc-stats' => array(
|
14 |
'pretty_version' => 'v1.4.13',
|
15 |
'version' => '1.4.13.0',
|
|
|
16 |
'type' => 'jetpack-library',
|
17 |
'install_path' => __DIR__ . '/../automattic/jetpack-a8c-mc-stats',
|
18 |
'aliases' => array(),
|
19 |
-
'reference' => '64ee9a83861c6b2c8744e2ebc25157806f3548e0',
|
20 |
'dev_requirement' => false,
|
21 |
),
|
22 |
'automattic/jetpack-admin-ui' => array(
|
23 |
'pretty_version' => 'v0.2.7',
|
24 |
'version' => '0.2.7.0',
|
|
|
25 |
'type' => 'jetpack-library',
|
26 |
'install_path' => __DIR__ . '/../automattic/jetpack-admin-ui',
|
27 |
'aliases' => array(),
|
28 |
-
'reference' => '56a60ee4d03ac2be62cb341e3df0f2fb5cc851f8',
|
29 |
'dev_requirement' => false,
|
30 |
),
|
31 |
'automattic/jetpack-autoloader' => array(
|
32 |
'pretty_version' => 'v2.11.5',
|
33 |
'version' => '2.11.5.0',
|
|
|
34 |
'type' => 'composer-plugin',
|
35 |
'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
|
36 |
'aliases' => array(),
|
37 |
-
'reference' => '664c7cf0ff94b4f2f7c5b359bef3616822004a04',
|
38 |
'dev_requirement' => false,
|
39 |
),
|
40 |
'automattic/jetpack-config' => array(
|
41 |
'pretty_version' => 'v1.9.0',
|
42 |
'version' => '1.9.0.0',
|
|
|
43 |
'type' => 'jetpack-library',
|
44 |
'install_path' => __DIR__ . '/../automattic/jetpack-config',
|
45 |
'aliases' => array(),
|
46 |
-
'reference' => '415d06ba5363b2b204d4763aa4d65bfbdd4b769a',
|
47 |
'dev_requirement' => false,
|
48 |
),
|
49 |
'automattic/jetpack-connection' => array(
|
50 |
'pretty_version' => 'v1.40.5',
|
51 |
'version' => '1.40.5.0',
|
|
|
52 |
'type' => 'jetpack-library',
|
53 |
'install_path' => __DIR__ . '/../automattic/jetpack-connection',
|
54 |
'aliases' => array(),
|
55 |
-
'reference' => '461d33c0aa9b8f706d1b62a317a6c770f990ce4d',
|
56 |
'dev_requirement' => false,
|
57 |
),
|
58 |
'automattic/jetpack-constants' => array(
|
59 |
'pretty_version' => 'v1.6.16',
|
60 |
'version' => '1.6.16.0',
|
|
|
61 |
'type' => 'jetpack-library',
|
62 |
'install_path' => __DIR__ . '/../automattic/jetpack-constants',
|
63 |
'aliases' => array(),
|
64 |
-
'reference' => 'f719d15636026c2e47d927a24edc54898d859a0e',
|
65 |
'dev_requirement' => false,
|
66 |
),
|
67 |
'automattic/jetpack-redirect' => array(
|
68 |
'pretty_version' => 'v1.7.15',
|
69 |
'version' => '1.7.15.0',
|
|
|
70 |
'type' => 'jetpack-library',
|
71 |
'install_path' => __DIR__ . '/../automattic/jetpack-redirect',
|
72 |
'aliases' => array(),
|
73 |
-
'reference' => 'd9c416ba23831cce2608c6fd689754f15dcb8498',
|
74 |
'dev_requirement' => false,
|
75 |
),
|
76 |
'automattic/jetpack-roles' => array(
|
77 |
'pretty_version' => 'v1.4.15',
|
78 |
'version' => '1.4.15.0',
|
|
|
79 |
'type' => 'jetpack-library',
|
80 |
'install_path' => __DIR__ . '/../automattic/jetpack-roles',
|
81 |
'aliases' => array(),
|
82 |
-
'reference' => '6ffbb2fef269334e3528380bfd7a064e3c904dce',
|
83 |
'dev_requirement' => false,
|
84 |
),
|
85 |
'automattic/jetpack-status' => array(
|
86 |
'pretty_version' => 'v1.13.6',
|
87 |
'version' => '1.13.6.0',
|
|
|
88 |
'type' => 'jetpack-library',
|
89 |
'install_path' => __DIR__ . '/../automattic/jetpack-status',
|
90 |
'aliases' => array(),
|
91 |
-
'reference' => '6005840740548864d2a67090d87b59a6f141e5c4',
|
92 |
'dev_requirement' => false,
|
93 |
),
|
94 |
'firebase/php-jwt' => array(
|
95 |
'pretty_version' => 'v6.2.0',
|
96 |
'version' => '6.2.0.0',
|
|
|
97 |
'type' => 'library',
|
98 |
'install_path' => __DIR__ . '/../firebase/php-jwt',
|
99 |
'aliases' => array(),
|
100 |
-
'reference' => 'd28e6df83830252650da4623c78aaaf98fb385f3',
|
101 |
'dev_requirement' => false,
|
102 |
),
|
103 |
'google/apiclient' => array(
|
104 |
'pretty_version' => 'v2.12.6',
|
105 |
'version' => '2.12.6.0',
|
|
|
106 |
'type' => 'library',
|
107 |
'install_path' => __DIR__ . '/../google/apiclient',
|
108 |
'aliases' => array(),
|
109 |
-
'reference' => 'f92aa126903a9e2da5bd41a280d9633cb249e79e',
|
110 |
'dev_requirement' => false,
|
111 |
),
|
112 |
'google/apiclient-services' => array(
|
113 |
'pretty_version' => 'v0.252.0',
|
114 |
'version' => '0.252.0.0',
|
|
|
115 |
'type' => 'library',
|
116 |
'install_path' => __DIR__ . '/../google/apiclient-services',
|
117 |
'aliases' => array(),
|
118 |
-
'reference' => '9941c959f6a1f781e49019b78f453d54554dff73',
|
119 |
'dev_requirement' => false,
|
120 |
),
|
121 |
'google/auth' => array(
|
122 |
'pretty_version' => 'v1.21.0',
|
123 |
'version' => '1.21.0.0',
|
|
|
124 |
'type' => 'library',
|
125 |
'install_path' => __DIR__ . '/../google/auth',
|
126 |
'aliases' => array(),
|
127 |
-
'reference' => '73392bad2eb6852eea9084b6bbdec752515cb849',
|
128 |
'dev_requirement' => false,
|
129 |
),
|
130 |
'google/common-protos' => array(
|
131 |
'pretty_version' => '2.1.0',
|
132 |
'version' => '2.1.0.0',
|
|
|
133 |
'type' => 'library',
|
134 |
'install_path' => __DIR__ . '/../google/common-protos',
|
135 |
'aliases' => array(),
|
136 |
-
'reference' => '4bad82f73a10f8ea4e6d078da93406a16c996044',
|
137 |
'dev_requirement' => false,
|
138 |
),
|
139 |
'google/gax' => array(
|
140 |
'pretty_version' => 'v1.12.2',
|
141 |
'version' => '1.12.2.0',
|
|
|
142 |
'type' => 'library',
|
143 |
'install_path' => __DIR__ . '/../google/gax',
|
144 |
'aliases' => array(),
|
145 |
-
'reference' => '38ea1c12e7d24caeb3abbcac44a6a3536a8ef2a7',
|
146 |
'dev_requirement' => false,
|
147 |
),
|
148 |
'google/grpc-gcp' => array(
|
149 |
'pretty_version' => 'v0.2.0',
|
150 |
'version' => '0.2.0.0',
|
|
|
151 |
'type' => 'library',
|
152 |
'install_path' => __DIR__ . '/../google/grpc-gcp',
|
153 |
'aliases' => array(),
|
154 |
-
'reference' => '2465c2273e11ada1e95155aa1e209f3b8f03c314',
|
155 |
'dev_requirement' => false,
|
156 |
),
|
157 |
'google/protobuf' => array(
|
158 |
'pretty_version' => 'v3.21.1',
|
159 |
'version' => '3.21.1.0',
|
|
|
160 |
'type' => 'library',
|
161 |
'install_path' => __DIR__ . '/../google/protobuf',
|
162 |
'aliases' => array(),
|
163 |
-
'reference' => '68f71264d8816f001177d68ce99d25b28e212d4c',
|
164 |
'dev_requirement' => false,
|
165 |
),
|
166 |
'googleads/google-ads-php' => array(
|
167 |
'pretty_version' => 'v12.1.0',
|
168 |
'version' => '12.1.0.0',
|
|
|
169 |
'type' => 'library',
|
170 |
'install_path' => __DIR__ . '/../googleads/google-ads-php',
|
171 |
'aliases' => array(),
|
172 |
-
'reference' => '689802805416213916db4a8e1e0b8293eda5d821',
|
173 |
'dev_requirement' => false,
|
174 |
),
|
175 |
'grpc/grpc' => array(
|
176 |
'pretty_version' => '1.42.0',
|
177 |
'version' => '1.42.0.0',
|
|
|
178 |
'type' => 'library',
|
179 |
'install_path' => __DIR__ . '/../grpc/grpc',
|
180 |
'aliases' => array(),
|
181 |
-
'reference' => '9fa44f104cb92e924d4da547323a97f3d8aca6d4',
|
182 |
'dev_requirement' => false,
|
183 |
),
|
184 |
'guzzlehttp/guzzle' => array(
|
185 |
'pretty_version' => '7.4.4',
|
186 |
'version' => '7.4.4.0',
|
|
|
187 |
'type' => 'library',
|
188 |
'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
|
189 |
'aliases' => array(),
|
190 |
-
'reference' => 'e3ff079b22820c2029d4c2a87796b6a0b8716ad8',
|
191 |
'dev_requirement' => false,
|
192 |
),
|
193 |
'guzzlehttp/promises' => array(
|
194 |
'pretty_version' => '1.5.1',
|
195 |
'version' => '1.5.1.0',
|
|
|
196 |
'type' => 'library',
|
197 |
'install_path' => __DIR__ . '/../guzzlehttp/promises',
|
198 |
'aliases' => array(),
|
199 |
-
'reference' => 'fe752aedc9fd8fcca3fe7ad05d419d32998a06da',
|
200 |
'dev_requirement' => false,
|
201 |
),
|
202 |
'guzzlehttp/psr7' => array(
|
203 |
'pretty_version' => '2.3.0',
|
204 |
'version' => '2.3.0.0',
|
|
|
205 |
'type' => 'library',
|
206 |
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
|
207 |
'aliases' => array(),
|
208 |
-
'reference' => '83260bb50b8fc753c72d14dc1621a2dac31877ee',
|
209 |
'dev_requirement' => false,
|
210 |
),
|
211 |
'league/container' => array(
|
212 |
'pretty_version' => '3.4.1',
|
213 |
'version' => '3.4.1.0',
|
|
|
214 |
'type' => 'library',
|
215 |
'install_path' => __DIR__ . '/../league/container',
|
216 |
'aliases' => array(),
|
217 |
-
'reference' => '84ecbc2dbecc31bd23faf759a0e329ee49abddbd',
|
218 |
'dev_requirement' => false,
|
219 |
),
|
220 |
'league/iso3166' => array(
|
221 |
'pretty_version' => '3.0.0',
|
222 |
'version' => '3.0.0.0',
|
|
|
223 |
'type' => 'library',
|
224 |
'install_path' => __DIR__ . '/../league/iso3166',
|
225 |
'aliases' => array(),
|
226 |
-
'reference' => '9976d382f270ad3f3df8a68719beb7a7179ffa1e',
|
227 |
'dev_requirement' => false,
|
228 |
),
|
229 |
'monolog/monolog' => array(
|
230 |
'pretty_version' => '2.7.0',
|
231 |
'version' => '2.7.0.0',
|
|
|
232 |
'type' => 'library',
|
233 |
'install_path' => __DIR__ . '/../monolog/monolog',
|
234 |
'aliases' => array(),
|
235 |
-
'reference' => '5579edf28aee1190a798bfa5be8bc16c563bd524',
|
236 |
'dev_requirement' => false,
|
237 |
),
|
238 |
'orno/di' => array(
|
@@ -244,55 +244,55 @@
|
|
244 |
'paragonie/constant_time_encoding' => array(
|
245 |
'pretty_version' => 'v2.5.0',
|
246 |
'version' => '2.5.0.0',
|
|
|
247 |
'type' => 'library',
|
248 |
'install_path' => __DIR__ . '/../paragonie/constant_time_encoding',
|
249 |
'aliases' => array(),
|
250 |
-
'reference' => '9229e15f2e6ba772f0c55dd6986c563b937170a8',
|
251 |
'dev_requirement' => false,
|
252 |
),
|
253 |
'paragonie/random_compat' => array(
|
254 |
'pretty_version' => 'v9.99.100',
|
255 |
'version' => '9.99.100.0',
|
|
|
256 |
'type' => 'library',
|
257 |
'install_path' => __DIR__ . '/../paragonie/random_compat',
|
258 |
'aliases' => array(),
|
259 |
-
'reference' => '996434e5492cb4c3edcb9168db6fbb1359ef965a',
|
260 |
'dev_requirement' => false,
|
261 |
),
|
262 |
'phpseclib/bcmath_compat' => array(
|
263 |
'pretty_version' => '2.0.1',
|
264 |
'version' => '2.0.1.0',
|
|
|
265 |
'type' => 'library',
|
266 |
'install_path' => __DIR__ . '/../phpseclib/bcmath_compat',
|
267 |
'aliases' => array(),
|
268 |
-
'reference' => '2ffea8bfe1702b4535a7b3c2649c4301968e9a3c',
|
269 |
'dev_requirement' => false,
|
270 |
),
|
271 |
'phpseclib/phpseclib' => array(
|
272 |
'pretty_version' => '3.0.14',
|
273 |
'version' => '3.0.14.0',
|
|
|
274 |
'type' => 'library',
|
275 |
'install_path' => __DIR__ . '/../phpseclib/phpseclib',
|
276 |
'aliases' => array(),
|
277 |
-
'reference' => '2f0b7af658cbea265cbb4a791d6c29a6613f98ef',
|
278 |
'dev_requirement' => false,
|
279 |
),
|
280 |
'psr/cache' => array(
|
281 |
'pretty_version' => '1.0.1',
|
282 |
'version' => '1.0.1.0',
|
|
|
283 |
'type' => 'library',
|
284 |
'install_path' => __DIR__ . '/../psr/cache',
|
285 |
'aliases' => array(),
|
286 |
-
'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
|
287 |
'dev_requirement' => false,
|
288 |
),
|
289 |
'psr/container' => array(
|
290 |
'pretty_version' => '1.1.1',
|
291 |
'version' => '1.1.1.0',
|
|
|
292 |
'type' => 'library',
|
293 |
'install_path' => __DIR__ . '/../psr/container',
|
294 |
'aliases' => array(),
|
295 |
-
'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf',
|
296 |
'dev_requirement' => false,
|
297 |
),
|
298 |
'psr/container-implementation' => array(
|
@@ -304,10 +304,10 @@
|
|
304 |
'psr/http-client' => array(
|
305 |
'pretty_version' => '1.0.1',
|
306 |
'version' => '1.0.1.0',
|
|
|
307 |
'type' => 'library',
|
308 |
'install_path' => __DIR__ . '/../psr/http-client',
|
309 |
'aliases' => array(),
|
310 |
-
'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
|
311 |
'dev_requirement' => false,
|
312 |
),
|
313 |
'psr/http-client-implementation' => array(
|
@@ -319,10 +319,10 @@
|
|
319 |
'psr/http-factory' => array(
|
320 |
'pretty_version' => '1.0.1',
|
321 |
'version' => '1.0.1.0',
|
|
|
322 |
'type' => 'library',
|
323 |
'install_path' => __DIR__ . '/../psr/http-factory',
|
324 |
'aliases' => array(),
|
325 |
-
'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be',
|
326 |
'dev_requirement' => false,
|
327 |
),
|
328 |
'psr/http-factory-implementation' => array(
|
@@ -334,10 +334,10 @@
|
|
334 |
'psr/http-message' => array(
|
335 |
'pretty_version' => '1.0.1',
|
336 |
'version' => '1.0.1.0',
|
|
|
337 |
'type' => 'library',
|
338 |
'install_path' => __DIR__ . '/../psr/http-message',
|
339 |
'aliases' => array(),
|
340 |
-
'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
|
341 |
'dev_requirement' => false,
|
342 |
),
|
343 |
'psr/http-message-implementation' => array(
|
@@ -349,10 +349,10 @@
|
|
349 |
'psr/log' => array(
|
350 |
'pretty_version' => '1.1.4',
|
351 |
'version' => '1.1.4.0',
|
|
|
352 |
'type' => 'library',
|
353 |
'install_path' => __DIR__ . '/../psr/log',
|
354 |
'aliases' => array(),
|
355 |
-
'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
|
356 |
'dev_requirement' => false,
|
357 |
),
|
358 |
'psr/log-implementation' => array(
|
@@ -364,28 +364,28 @@
|
|
364 |
'ralouphie/getallheaders' => array(
|
365 |
'pretty_version' => '3.0.3',
|
366 |
'version' => '3.0.3.0',
|
|
|
367 |
'type' => 'library',
|
368 |
'install_path' => __DIR__ . '/../ralouphie/getallheaders',
|
369 |
'aliases' => array(),
|
370 |
-
'reference' => '120b605dfeb996808c31b6477290a714d356e822',
|
371 |
'dev_requirement' => false,
|
372 |
),
|
373 |
'symfony/deprecation-contracts' => array(
|
374 |
'pretty_version' => 'v2.5.1',
|
375 |
'version' => '2.5.1.0',
|
|
|
376 |
'type' => 'library',
|
377 |
'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
|
378 |
'aliases' => array(),
|
379 |
-
'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
|
380 |
'dev_requirement' => false,
|
381 |
),
|
382 |
'symfony/polyfill-ctype' => array(
|
383 |
'pretty_version' => 'v1.26.0',
|
384 |
'version' => '1.26.0.0',
|
|
|
385 |
'type' => 'library',
|
386 |
'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
|
387 |
'aliases' => array(),
|
388 |
-
'reference' => '6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4',
|
389 |
'dev_requirement' => false,
|
390 |
),
|
391 |
'symfony/polyfill-mbstring' => array(
|
@@ -397,55 +397,55 @@
|
|
397 |
'symfony/polyfill-php73' => array(
|
398 |
'pretty_version' => 'v1.26.0',
|
399 |
'version' => '1.26.0.0',
|
|
|
400 |
'type' => 'library',
|
401 |
'install_path' => __DIR__ . '/../symfony/polyfill-php73',
|
402 |
'aliases' => array(),
|
403 |
-
'reference' => 'e440d35fa0286f77fb45b79a03fedbeda9307e85',
|
404 |
'dev_requirement' => false,
|
405 |
),
|
406 |
'symfony/polyfill-php80' => array(
|
407 |
'pretty_version' => 'v1.26.0',
|
408 |
'version' => '1.26.0.0',
|
|
|
409 |
'type' => 'library',
|
410 |
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
|
411 |
'aliases' => array(),
|
412 |
-
'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace',
|
413 |
'dev_requirement' => false,
|
414 |
),
|
415 |
'symfony/polyfill-php81' => array(
|
416 |
'pretty_version' => 'v1.26.0',
|
417 |
'version' => '1.26.0.0',
|
|
|
418 |
'type' => 'library',
|
419 |
'install_path' => __DIR__ . '/../symfony/polyfill-php81',
|
420 |
'aliases' => array(),
|
421 |
-
'reference' => '13f6d1271c663dc5ae9fb843a8f16521db7687a1',
|
422 |
'dev_requirement' => false,
|
423 |
),
|
424 |
'symfony/translation-contracts' => array(
|
425 |
'pretty_version' => 'v2.5.1',
|
426 |
'version' => '2.5.1.0',
|
|
|
427 |
'type' => 'library',
|
428 |
'install_path' => __DIR__ . '/../symfony/translation-contracts',
|
429 |
'aliases' => array(),
|
430 |
-
'reference' => '1211df0afa701e45a04253110e959d4af4ef0f07',
|
431 |
'dev_requirement' => false,
|
432 |
),
|
433 |
'symfony/validator' => array(
|
434 |
'pretty_version' => 'v5.4.8',
|
435 |
'version' => '5.4.8.0',
|
|
|
436 |
'type' => 'library',
|
437 |
'install_path' => __DIR__ . '/../symfony/validator',
|
438 |
'aliases' => array(),
|
439 |
-
'reference' => 'bdc6d04ba95c73ccbf906b4ad9b8775c738d83ad',
|
440 |
'dev_requirement' => false,
|
441 |
),
|
442 |
'woocommerce/google-listings-and-ads' => array(
|
443 |
-
'pretty_version' => 'dev-release/
|
444 |
-
'version' => 'dev-release/
|
|
|
445 |
'type' => 'wordpress-plugin',
|
446 |
'install_path' => __DIR__ . '/../../',
|
447 |
'aliases' => array(),
|
448 |
-
'reference' => '54afc34883b9393c3a2376ff7719a257892655d7',
|
449 |
'dev_requirement' => false,
|
450 |
),
|
451 |
),
|
1 |
<?php return array(
|
2 |
'root' => array(
|
3 |
+
'name' => 'woocommerce/google-listings-and-ads',
|
4 |
+
'pretty_version' => 'dev-release/2.0.0',
|
5 |
+
'version' => 'dev-release/2.0.0',
|
6 |
+
'reference' => '9afdf140c2798bc052ca72ac85dd2f08e19615aa',
|
7 |
'type' => 'wordpress-plugin',
|
8 |
'install_path' => __DIR__ . '/../../',
|
9 |
'aliases' => array(),
|
|
|
|
|
10 |
'dev' => false,
|
11 |
),
|
12 |
'versions' => array(
|
13 |
'automattic/jetpack-a8c-mc-stats' => array(
|
14 |
'pretty_version' => 'v1.4.13',
|
15 |
'version' => '1.4.13.0',
|
16 |
+
'reference' => '64ee9a83861c6b2c8744e2ebc25157806f3548e0',
|
17 |
'type' => 'jetpack-library',
|
18 |
'install_path' => __DIR__ . '/../automattic/jetpack-a8c-mc-stats',
|
19 |
'aliases' => array(),
|
|
|
20 |
'dev_requirement' => false,
|
21 |
),
|
22 |
'automattic/jetpack-admin-ui' => array(
|
23 |
'pretty_version' => 'v0.2.7',
|
24 |
'version' => '0.2.7.0',
|
25 |
+
'reference' => '56a60ee4d03ac2be62cb341e3df0f2fb5cc851f8',
|
26 |
'type' => 'jetpack-library',
|
27 |
'install_path' => __DIR__ . '/../automattic/jetpack-admin-ui',
|
28 |
'aliases' => array(),
|
|
|
29 |
'dev_requirement' => false,
|
30 |
),
|
31 |
'automattic/jetpack-autoloader' => array(
|
32 |
'pretty_version' => 'v2.11.5',
|
33 |
'version' => '2.11.5.0',
|
34 |
+
'reference' => '664c7cf0ff94b4f2f7c5b359bef3616822004a04',
|
35 |
'type' => 'composer-plugin',
|
36 |
'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
|
37 |
'aliases' => array(),
|
|
|
38 |
'dev_requirement' => false,
|
39 |
),
|
40 |
'automattic/jetpack-config' => array(
|
41 |
'pretty_version' => 'v1.9.0',
|
42 |
'version' => '1.9.0.0',
|
43 |
+
'reference' => '415d06ba5363b2b204d4763aa4d65bfbdd4b769a',
|
44 |
'type' => 'jetpack-library',
|
45 |
'install_path' => __DIR__ . '/../automattic/jetpack-config',
|
46 |
'aliases' => array(),
|
|
|
47 |
'dev_requirement' => false,
|
48 |
),
|
49 |
'automattic/jetpack-connection' => array(
|
50 |
'pretty_version' => 'v1.40.5',
|
51 |
'version' => '1.40.5.0',
|
52 |
+
'reference' => '461d33c0aa9b8f706d1b62a317a6c770f990ce4d',
|
53 |
'type' => 'jetpack-library',
|
54 |
'install_path' => __DIR__ . '/../automattic/jetpack-connection',
|
55 |
'aliases' => array(),
|
|
|
56 |
'dev_requirement' => false,
|
57 |
),
|
58 |
'automattic/jetpack-constants' => array(
|
59 |
'pretty_version' => 'v1.6.16',
|
60 |
'version' => '1.6.16.0',
|
61 |
+
'reference' => 'f719d15636026c2e47d927a24edc54898d859a0e',
|
62 |
'type' => 'jetpack-library',
|
63 |
'install_path' => __DIR__ . '/../automattic/jetpack-constants',
|
64 |
'aliases' => array(),
|
|
|
65 |
'dev_requirement' => false,
|
66 |
),
|
67 |
'automattic/jetpack-redirect' => array(
|
68 |
'pretty_version' => 'v1.7.15',
|
69 |
'version' => '1.7.15.0',
|
70 |
+
'reference' => 'd9c416ba23831cce2608c6fd689754f15dcb8498',
|
71 |
'type' => 'jetpack-library',
|
72 |
'install_path' => __DIR__ . '/../automattic/jetpack-redirect',
|
73 |
'aliases' => array(),
|
|
|
74 |
'dev_requirement' => false,
|
75 |
),
|
76 |
'automattic/jetpack-roles' => array(
|
77 |
'pretty_version' => 'v1.4.15',
|
78 |
'version' => '1.4.15.0',
|
79 |
+
'reference' => '6ffbb2fef269334e3528380bfd7a064e3c904dce',
|
80 |
'type' => 'jetpack-library',
|
81 |
'install_path' => __DIR__ . '/../automattic/jetpack-roles',
|
82 |
'aliases' => array(),
|
|
|
83 |
'dev_requirement' => false,
|
84 |
),
|
85 |
'automattic/jetpack-status' => array(
|
86 |
'pretty_version' => 'v1.13.6',
|
87 |
'version' => '1.13.6.0',
|
88 |
+
'reference' => '6005840740548864d2a67090d87b59a6f141e5c4',
|
89 |
'type' => 'jetpack-library',
|
90 |
'install_path' => __DIR__ . '/../automattic/jetpack-status',
|
91 |
'aliases' => array(),
|
|
|
92 |
'dev_requirement' => false,
|
93 |
),
|
94 |
'firebase/php-jwt' => array(
|
95 |
'pretty_version' => 'v6.2.0',
|
96 |
'version' => '6.2.0.0',
|
97 |
+
'reference' => 'd28e6df83830252650da4623c78aaaf98fb385f3',
|
98 |
'type' => 'library',
|
99 |
'install_path' => __DIR__ . '/../firebase/php-jwt',
|
100 |
'aliases' => array(),
|
|
|
101 |
'dev_requirement' => false,
|
102 |
),
|
103 |
'google/apiclient' => array(
|
104 |
'pretty_version' => 'v2.12.6',
|
105 |
'version' => '2.12.6.0',
|
106 |
+
'reference' => 'f92aa126903a9e2da5bd41a280d9633cb249e79e',
|
107 |
'type' => 'library',
|
108 |
'install_path' => __DIR__ . '/../google/apiclient',
|
109 |
'aliases' => array(),
|
|
|
110 |
'dev_requirement' => false,
|
111 |
),
|
112 |
'google/apiclient-services' => array(
|
113 |
'pretty_version' => 'v0.252.0',
|
114 |
'version' => '0.252.0.0',
|
115 |
+
'reference' => '9941c959f6a1f781e49019b78f453d54554dff73',
|
116 |
'type' => 'library',
|
117 |
'install_path' => __DIR__ . '/../google/apiclient-services',
|
118 |
'aliases' => array(),
|
|
|
119 |
'dev_requirement' => false,
|
120 |
),
|
121 |
'google/auth' => array(
|
122 |
'pretty_version' => 'v1.21.0',
|
123 |
'version' => '1.21.0.0',
|
124 |
+
'reference' => '73392bad2eb6852eea9084b6bbdec752515cb849',
|
125 |
'type' => 'library',
|
126 |
'install_path' => __DIR__ . '/../google/auth',
|
127 |
'aliases' => array(),
|
|
|
128 |
'dev_requirement' => false,
|
129 |
),
|
130 |
'google/common-protos' => array(
|
131 |
'pretty_version' => '2.1.0',
|
132 |
'version' => '2.1.0.0',
|
133 |
+
'reference' => '4bad82f73a10f8ea4e6d078da93406a16c996044',
|
134 |
'type' => 'library',
|
135 |
'install_path' => __DIR__ . '/../google/common-protos',
|
136 |
'aliases' => array(),
|
|
|
137 |
'dev_requirement' => false,
|
138 |
),
|
139 |
'google/gax' => array(
|
140 |
'pretty_version' => 'v1.12.2',
|
141 |
'version' => '1.12.2.0',
|
142 |
+
'reference' => '38ea1c12e7d24caeb3abbcac44a6a3536a8ef2a7',
|
143 |
'type' => 'library',
|
144 |
'install_path' => __DIR__ . '/../google/gax',
|
145 |
'aliases' => array(),
|
|
|
146 |
'dev_requirement' => false,
|
147 |
),
|
148 |
'google/grpc-gcp' => array(
|
149 |
'pretty_version' => 'v0.2.0',
|
150 |
'version' => '0.2.0.0',
|
151 |
+
'reference' => '2465c2273e11ada1e95155aa1e209f3b8f03c314',
|
152 |
'type' => 'library',
|
153 |
'install_path' => __DIR__ . '/../google/grpc-gcp',
|
154 |
'aliases' => array(),
|
|
|
155 |
'dev_requirement' => false,
|
156 |
),
|
157 |
'google/protobuf' => array(
|
158 |
'pretty_version' => 'v3.21.1',
|
159 |
'version' => '3.21.1.0',
|
160 |
+
'reference' => '68f71264d8816f001177d68ce99d25b28e212d4c',
|
161 |
'type' => 'library',
|
162 |
'install_path' => __DIR__ . '/../google/protobuf',
|
163 |
'aliases' => array(),
|
|
|
164 |
'dev_requirement' => false,
|
165 |
),
|
166 |
'googleads/google-ads-php' => array(
|
167 |
'pretty_version' => 'v12.1.0',
|
168 |
'version' => '12.1.0.0',
|
169 |
+
'reference' => '689802805416213916db4a8e1e0b8293eda5d821',
|
170 |
'type' => 'library',
|
171 |
'install_path' => __DIR__ . '/../googleads/google-ads-php',
|
172 |
'aliases' => array(),
|
|
|
173 |
'dev_requirement' => false,
|
174 |
),
|
175 |
'grpc/grpc' => array(
|
176 |
'pretty_version' => '1.42.0',
|
177 |
'version' => '1.42.0.0',
|
178 |
+
'reference' => '9fa44f104cb92e924d4da547323a97f3d8aca6d4',
|
179 |
'type' => 'library',
|
180 |
'install_path' => __DIR__ . '/../grpc/grpc',
|
181 |
'aliases' => array(),
|
|
|
182 |
'dev_requirement' => false,
|
183 |
),
|
184 |
'guzzlehttp/guzzle' => array(
|
185 |
'pretty_version' => '7.4.4',
|
186 |
'version' => '7.4.4.0',
|
187 |
+
'reference' => 'e3ff079b22820c2029d4c2a87796b6a0b8716ad8',
|
188 |
'type' => 'library',
|
189 |
'install_path' => __DIR__ . '/../guzzlehttp/guzzle',
|
190 |
'aliases' => array(),
|
|
|
191 |
'dev_requirement' => false,
|
192 |
),
|
193 |
'guzzlehttp/promises' => array(
|
194 |
'pretty_version' => '1.5.1',
|
195 |
'version' => '1.5.1.0',
|
196 |
+
'reference' => 'fe752aedc9fd8fcca3fe7ad05d419d32998a06da',
|
197 |
'type' => 'library',
|
198 |
'install_path' => __DIR__ . '/../guzzlehttp/promises',
|
199 |
'aliases' => array(),
|
|
|
200 |
'dev_requirement' => false,
|
201 |
),
|
202 |
'guzzlehttp/psr7' => array(
|
203 |
'pretty_version' => '2.3.0',
|
204 |
'version' => '2.3.0.0',
|
205 |
+
'reference' => '83260bb50b8fc753c72d14dc1621a2dac31877ee',
|
206 |
'type' => 'library',
|
207 |
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
|
208 |
'aliases' => array(),
|
|
|
209 |
'dev_requirement' => false,
|
210 |
),
|
211 |
'league/container' => array(
|
212 |
'pretty_version' => '3.4.1',
|
213 |
'version' => '3.4.1.0',
|
214 |
+
'reference' => '84ecbc2dbecc31bd23faf759a0e329ee49abddbd',
|
215 |
'type' => 'library',
|
216 |
'install_path' => __DIR__ . '/../league/container',
|
217 |
'aliases' => array(),
|
|
|
218 |
'dev_requirement' => false,
|
219 |
),
|
220 |
'league/iso3166' => array(
|
221 |
'pretty_version' => '3.0.0',
|
222 |
'version' => '3.0.0.0',
|
223 |
+
'reference' => '9976d382f270ad3f3df8a68719beb7a7179ffa1e',
|
224 |
'type' => 'library',
|
225 |
'install_path' => __DIR__ . '/../league/iso3166',
|
226 |
'aliases' => array(),
|
|
|
227 |
'dev_requirement' => false,
|
228 |
),
|
229 |
'monolog/monolog' => array(
|
230 |
'pretty_version' => '2.7.0',
|
231 |
'version' => '2.7.0.0',
|
232 |
+
'reference' => '5579edf28aee1190a798bfa5be8bc16c563bd524',
|
233 |
'type' => 'library',
|
234 |
'install_path' => __DIR__ . '/../monolog/monolog',
|
235 |
'aliases' => array(),
|
|
|
236 |
'dev_requirement' => false,
|
237 |
),
|
238 |
'orno/di' => array(
|
244 |
'paragonie/constant_time_encoding' => array(
|
245 |
'pretty_version' => 'v2.5.0',
|
246 |
'version' => '2.5.0.0',
|
247 |
+
'reference' => '9229e15f2e6ba772f0c55dd6986c563b937170a8',
|
248 |
'type' => 'library',
|
249 |
'install_path' => __DIR__ . '/../paragonie/constant_time_encoding',
|
250 |
'aliases' => array(),
|
|
|
251 |
'dev_requirement' => false,
|
252 |
),
|
253 |
'paragonie/random_compat' => array(
|
254 |
'pretty_version' => 'v9.99.100',
|
255 |
'version' => '9.99.100.0',
|
256 |
+
'reference' => '996434e5492cb4c3edcb9168db6fbb1359ef965a',
|
257 |
'type' => 'library',
|
258 |
'install_path' => __DIR__ . '/../paragonie/random_compat',
|
259 |
'aliases' => array(),
|
|
|
260 |
'dev_requirement' => false,
|
261 |
),
|
262 |
'phpseclib/bcmath_compat' => array(
|
263 |
'pretty_version' => '2.0.1',
|
264 |
'version' => '2.0.1.0',
|
265 |
+
'reference' => '2ffea8bfe1702b4535a7b3c2649c4301968e9a3c',
|
266 |
'type' => 'library',
|
267 |
'install_path' => __DIR__ . '/../phpseclib/bcmath_compat',
|
268 |
'aliases' => array(),
|
|
|
269 |
'dev_requirement' => false,
|
270 |
),
|
271 |
'phpseclib/phpseclib' => array(
|
272 |
'pretty_version' => '3.0.14',
|
273 |
'version' => '3.0.14.0',
|
274 |
+
'reference' => '2f0b7af658cbea265cbb4a791d6c29a6613f98ef',
|
275 |
'type' => 'library',
|
276 |
'install_path' => __DIR__ . '/../phpseclib/phpseclib',
|
277 |
'aliases' => array(),
|
|
|
278 |
'dev_requirement' => false,
|
279 |
),
|
280 |
'psr/cache' => array(
|
281 |
'pretty_version' => '1.0.1',
|
282 |
'version' => '1.0.1.0',
|
283 |
+
'reference' => 'd11b50ad223250cf17b86e38383413f5a6764bf8',
|
284 |
'type' => 'library',
|
285 |
'install_path' => __DIR__ . '/../psr/cache',
|
286 |
'aliases' => array(),
|
|
|
287 |
'dev_requirement' => false,
|
288 |
),
|
289 |
'psr/container' => array(
|
290 |
'pretty_version' => '1.1.1',
|
291 |
'version' => '1.1.1.0',
|
292 |
+
'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf',
|
293 |
'type' => 'library',
|
294 |
'install_path' => __DIR__ . '/../psr/container',
|
295 |
'aliases' => array(),
|
|
|
296 |
'dev_requirement' => false,
|
297 |
),
|
298 |
'psr/container-implementation' => array(
|
304 |
'psr/http-client' => array(
|
305 |
'pretty_version' => '1.0.1',
|
306 |
'version' => '1.0.1.0',
|
307 |
+
'reference' => '2dfb5f6c5eff0e91e20e913f8c5452ed95b86621',
|
308 |
'type' => 'library',
|
309 |
'install_path' => __DIR__ . '/../psr/http-client',
|
310 |
'aliases' => array(),
|
|
|
311 |
'dev_requirement' => false,
|
312 |
),
|
313 |
'psr/http-client-implementation' => array(
|
319 |
'psr/http-factory' => array(
|
320 |
'pretty_version' => '1.0.1',
|
321 |
'version' => '1.0.1.0',
|
322 |
+
'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be',
|
323 |
'type' => 'library',
|
324 |
'install_path' => __DIR__ . '/../psr/http-factory',
|
325 |
'aliases' => array(),
|
|
|
326 |
'dev_requirement' => false,
|
327 |
),
|
328 |
'psr/http-factory-implementation' => array(
|
334 |
'psr/http-message' => array(
|
335 |
'pretty_version' => '1.0.1',
|
336 |
'version' => '1.0.1.0',
|
337 |
+
'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
|
338 |
'type' => 'library',
|
339 |
'install_path' => __DIR__ . '/../psr/http-message',
|
340 |
'aliases' => array(),
|
|
|
341 |
'dev_requirement' => false,
|
342 |
),
|
343 |
'psr/http-message-implementation' => array(
|
349 |
'psr/log' => array(
|
350 |
'pretty_version' => '1.1.4',
|
351 |
'version' => '1.1.4.0',
|
352 |
+
'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
|
353 |
'type' => 'library',
|
354 |
'install_path' => __DIR__ . '/../psr/log',
|
355 |
'aliases' => array(),
|
|
|
356 |
'dev_requirement' => false,
|
357 |
),
|
358 |
'psr/log-implementation' => array(
|
364 |
'ralouphie/getallheaders' => array(
|
365 |
'pretty_version' => '3.0.3',
|
366 |
'version' => '3.0.3.0',
|
367 |
+
'reference' => '120b605dfeb996808c31b6477290a714d356e822',
|
368 |
'type' => 'library',
|
369 |
'install_path' => __DIR__ . '/../ralouphie/getallheaders',
|
370 |
'aliases' => array(),
|
|
|
371 |
'dev_requirement' => false,
|
372 |
),
|
373 |
'symfony/deprecation-contracts' => array(
|
374 |
'pretty_version' => 'v2.5.1',
|
375 |
'version' => '2.5.1.0',
|
376 |
+
'reference' => 'e8b495ea28c1d97b5e0c121748d6f9b53d075c66',
|
377 |
'type' => 'library',
|
378 |
'install_path' => __DIR__ . '/../symfony/deprecation-contracts',
|
379 |
'aliases' => array(),
|
|
|
380 |
'dev_requirement' => false,
|
381 |
),
|
382 |
'symfony/polyfill-ctype' => array(
|
383 |
'pretty_version' => 'v1.26.0',
|
384 |
'version' => '1.26.0.0',
|
385 |
+
'reference' => '6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4',
|
386 |
'type' => 'library',
|
387 |
'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
|
388 |
'aliases' => array(),
|
|
|
389 |
'dev_requirement' => false,
|
390 |
),
|
391 |
'symfony/polyfill-mbstring' => array(
|
397 |
'symfony/polyfill-php73' => array(
|
398 |
'pretty_version' => 'v1.26.0',
|
399 |
'version' => '1.26.0.0',
|
400 |
+
'reference' => 'e440d35fa0286f77fb45b79a03fedbeda9307e85',
|
401 |
'type' => 'library',
|
402 |
'install_path' => __DIR__ . '/../symfony/polyfill-php73',
|
403 |
'aliases' => array(),
|
|
|
404 |
'dev_requirement' => false,
|
405 |
),
|
406 |
'symfony/polyfill-php80' => array(
|
407 |
'pretty_version' => 'v1.26.0',
|
408 |
'version' => '1.26.0.0',
|
409 |
+
'reference' => 'cfa0ae98841b9e461207c13ab093d76b0fa7bace',
|
410 |
'type' => 'library',
|
411 |
'install_path' => __DIR__ . '/../symfony/polyfill-php80',
|
412 |
'aliases' => array(),
|
|
|
413 |
'dev_requirement' => false,
|
414 |
),
|
415 |
'symfony/polyfill-php81' => array(
|
416 |
'pretty_version' => 'v1.26.0',
|
417 |
'version' => '1.26.0.0',
|
418 |
+
'reference' => '13f6d1271c663dc5ae9fb843a8f16521db7687a1',
|
419 |
'type' => 'library',
|
420 |
'install_path' => __DIR__ . '/../symfony/polyfill-php81',
|
421 |
'aliases' => array(),
|
|
|
422 |
'dev_requirement' => false,
|
423 |
),
|
424 |
'symfony/translation-contracts' => array(
|
425 |
'pretty_version' => 'v2.5.1',
|
426 |
'version' => '2.5.1.0',
|
427 |
+
'reference' => '1211df0afa701e45a04253110e959d4af4ef0f07',
|
428 |
'type' => 'library',
|
429 |
'install_path' => __DIR__ . '/../symfony/translation-contracts',
|
430 |
'aliases' => array(),
|
|
|
431 |
'dev_requirement' => false,
|
432 |
),
|
433 |
'symfony/validator' => array(
|
434 |
'pretty_version' => 'v5.4.8',
|
435 |
'version' => '5.4.8.0',
|
436 |
+
'reference' => 'bdc6d04ba95c73ccbf906b4ad9b8775c738d83ad',
|
437 |
'type' => 'library',
|
438 |
'install_path' => __DIR__ . '/../symfony/validator',
|
439 |
'aliases' => array(),
|
|
|
440 |
'dev_requirement' => false,
|
441 |
),
|
442 |
'woocommerce/google-listings-and-ads' => array(
|
443 |
+
'pretty_version' => 'dev-release/2.0.0',
|
444 |
+
'version' => 'dev-release/2.0.0',
|
445 |
+
'reference' => '9afdf140c2798bc052ca72ac85dd2f08e19615aa',
|
446 |
'type' => 'wordpress-plugin',
|
447 |
'install_path' => __DIR__ . '/../../',
|
448 |
'aliases' => array(),
|
|
|
449 |
'dev_requirement' => false,
|
450 |
),
|
451 |
),
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
@@ -6,1322 +6,1322 @@ $vendorDir = dirname(__DIR__);
|
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
-
'phpseclib3\\
|
10 |
'version' => '3.0.14.0',
|
11 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
12 |
),
|
13 |
-
'phpseclib3\\
|
14 |
'version' => '3.0.14.0',
|
15 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
16 |
),
|
17 |
-
'phpseclib3\\
|
18 |
'version' => '3.0.14.0',
|
19 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
20 |
),
|
21 |
-
'phpseclib3\\
|
22 |
'version' => '3.0.14.0',
|
23 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
24 |
),
|
25 |
-
'phpseclib3\\
|
26 |
'version' => '3.0.14.0',
|
27 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
28 |
),
|
29 |
-
'phpseclib3\\
|
30 |
'version' => '3.0.14.0',
|
31 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
32 |
),
|
33 |
-
'phpseclib3\\
|
34 |
'version' => '3.0.14.0',
|
35 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
36 |
),
|
37 |
-
'phpseclib3\\
|
38 |
'version' => '3.0.14.0',
|
39 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
40 |
),
|
41 |
-
'phpseclib3\\
|
42 |
'version' => '3.0.14.0',
|
43 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
44 |
),
|
45 |
-
'phpseclib3\\
|
46 |
'version' => '3.0.14.0',
|
47 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
48 |
),
|
49 |
-
'phpseclib3\\
|
50 |
'version' => '3.0.14.0',
|
51 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
52 |
),
|
53 |
-
'phpseclib3\\
|
54 |
'version' => '3.0.14.0',
|
55 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
56 |
),
|
57 |
-
'phpseclib3\\
|
58 |
'version' => '3.0.14.0',
|
59 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
60 |
),
|
61 |
-
'phpseclib3\\
|
62 |
'version' => '3.0.14.0',
|
63 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
64 |
),
|
65 |
-
'phpseclib3\\
|
66 |
'version' => '3.0.14.0',
|
67 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
68 |
),
|
69 |
-
'phpseclib3\\
|
70 |
'version' => '3.0.14.0',
|
71 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
72 |
),
|
73 |
-
'phpseclib3\\
|
74 |
'version' => '3.0.14.0',
|
75 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
76 |
),
|
77 |
-
'phpseclib3\\
|
78 |
'version' => '3.0.14.0',
|
79 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
80 |
),
|
81 |
-
'phpseclib3\\
|
82 |
'version' => '3.0.14.0',
|
83 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
84 |
),
|
85 |
-
'phpseclib3\\
|
86 |
'version' => '3.0.14.0',
|
87 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
88 |
),
|
89 |
-
'phpseclib3\\
|
90 |
'version' => '3.0.14.0',
|
91 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
92 |
),
|
93 |
-
'phpseclib3\\
|
94 |
'version' => '3.0.14.0',
|
95 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
96 |
),
|
97 |
-
'phpseclib3\\
|
98 |
'version' => '3.0.14.0',
|
99 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
100 |
),
|
101 |
-
'phpseclib3\\
|
102 |
'version' => '3.0.14.0',
|
103 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
104 |
),
|
105 |
-
'phpseclib3\\
|
106 |
'version' => '3.0.14.0',
|
107 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
108 |
),
|
109 |
-
'phpseclib3\\
|
110 |
'version' => '3.0.14.0',
|
111 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
112 |
),
|
113 |
-
'phpseclib3\\
|
114 |
'version' => '3.0.14.0',
|
115 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
116 |
),
|
117 |
-
'phpseclib3\\
|
118 |
'version' => '3.0.14.0',
|
119 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
120 |
),
|
121 |
-
'phpseclib3\\
|
122 |
'version' => '3.0.14.0',
|
123 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
124 |
),
|
125 |
-
'phpseclib3\\
|
126 |
'version' => '3.0.14.0',
|
127 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
128 |
),
|
129 |
-
'phpseclib3\\
|
130 |
'version' => '3.0.14.0',
|
131 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
132 |
),
|
133 |
-
'phpseclib3\\
|
134 |
'version' => '3.0.14.0',
|
135 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
136 |
),
|
137 |
-
'phpseclib3\\
|
138 |
'version' => '3.0.14.0',
|
139 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
140 |
),
|
141 |
-
'phpseclib3\\
|
142 |
'version' => '3.0.14.0',
|
143 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
144 |
),
|
145 |
-
'phpseclib3\\
|
146 |
'version' => '3.0.14.0',
|
147 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
148 |
),
|
149 |
-
'phpseclib3\\
|
150 |
'version' => '3.0.14.0',
|
151 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
152 |
),
|
153 |
-
'phpseclib3\\
|
154 |
'version' => '3.0.14.0',
|
155 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
156 |
),
|
157 |
-
'phpseclib3\\
|
158 |
'version' => '3.0.14.0',
|
159 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
160 |
),
|
161 |
-
'phpseclib3\\
|
162 |
'version' => '3.0.14.0',
|
163 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
164 |
),
|
165 |
-
'phpseclib3\\
|
166 |
'version' => '3.0.14.0',
|
167 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
168 |
),
|
169 |
-
'phpseclib3\\
|
170 |
'version' => '3.0.14.0',
|
171 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
172 |
),
|
173 |
-
'phpseclib3\\
|
174 |
'version' => '3.0.14.0',
|
175 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
176 |
),
|
177 |
-
'phpseclib3\\
|
178 |
'version' => '3.0.14.0',
|
179 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
180 |
),
|
181 |
-
'phpseclib3\\
|
182 |
'version' => '3.0.14.0',
|
183 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
184 |
),
|
185 |
-
'phpseclib3\\
|
186 |
'version' => '3.0.14.0',
|
187 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
188 |
),
|
189 |
-
'phpseclib3\\
|
190 |
'version' => '3.0.14.0',
|
191 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
192 |
),
|
193 |
-
'phpseclib3\\
|
194 |
'version' => '3.0.14.0',
|
195 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
196 |
),
|
197 |
-
'phpseclib3\\
|
198 |
'version' => '3.0.14.0',
|
199 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
200 |
),
|
201 |
-
'phpseclib3\\
|
202 |
'version' => '3.0.14.0',
|
203 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
204 |
),
|
205 |
-
'phpseclib3\\
|
206 |
'version' => '3.0.14.0',
|
207 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
208 |
),
|
209 |
-
'phpseclib3\\
|
210 |
'version' => '3.0.14.0',
|
211 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
212 |
),
|
213 |
-
'phpseclib3\\
|
214 |
'version' => '3.0.14.0',
|
215 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
216 |
),
|
217 |
-
'phpseclib3\\
|
218 |
'version' => '3.0.14.0',
|
219 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
220 |
),
|
221 |
-
'phpseclib3\\
|
222 |
'version' => '3.0.14.0',
|
223 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
224 |
),
|
225 |
-
'phpseclib3\\
|
226 |
'version' => '3.0.14.0',
|
227 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
228 |
),
|
229 |
-
'phpseclib3\\
|
230 |
'version' => '3.0.14.0',
|
231 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
232 |
),
|
233 |
-
'phpseclib3\\
|
234 |
'version' => '3.0.14.0',
|
235 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
236 |
),
|
237 |
-
'phpseclib3\\
|
238 |
'version' => '3.0.14.0',
|
239 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
240 |
),
|
241 |
-
'phpseclib3\\
|
242 |
'version' => '3.0.14.0',
|
243 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
244 |
),
|
245 |
-
'phpseclib3\\
|
246 |
'version' => '3.0.14.0',
|
247 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
248 |
),
|
249 |
-
'phpseclib3\\
|
250 |
'version' => '3.0.14.0',
|
251 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
252 |
),
|
253 |
-
'phpseclib3\\
|
254 |
'version' => '3.0.14.0',
|
255 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
256 |
),
|
257 |
-
'phpseclib3\\
|
258 |
'version' => '3.0.14.0',
|
259 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
260 |
),
|
261 |
-
'phpseclib3\\
|
262 |
'version' => '3.0.14.0',
|
263 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
264 |
),
|
265 |
-
'phpseclib3\\
|
266 |
'version' => '3.0.14.0',
|
267 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
268 |
),
|
269 |
-
'phpseclib3\\
|
270 |
'version' => '3.0.14.0',
|
271 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
272 |
),
|
273 |
-
'phpseclib3\\
|
274 |
'version' => '3.0.14.0',
|
275 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
276 |
),
|
277 |
-
'phpseclib3\\
|
278 |
'version' => '3.0.14.0',
|
279 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
280 |
),
|
281 |
-
'phpseclib3\\
|
282 |
'version' => '3.0.14.0',
|
283 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
284 |
),
|
285 |
-
'phpseclib3\\
|
286 |
'version' => '3.0.14.0',
|
287 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
288 |
),
|
289 |
-
'phpseclib3\\
|
290 |
'version' => '3.0.14.0',
|
291 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
292 |
),
|
293 |
-
'phpseclib3\\
|
294 |
'version' => '3.0.14.0',
|
295 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
296 |
),
|
297 |
-
'phpseclib3\\
|
298 |
'version' => '3.0.14.0',
|
299 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
300 |
),
|
301 |
-
'phpseclib3\\
|
302 |
'version' => '3.0.14.0',
|
303 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
304 |
),
|
305 |
-
'phpseclib3\\
|
306 |
'version' => '3.0.14.0',
|
307 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
308 |
),
|
309 |
-
'phpseclib3\\
|
310 |
'version' => '3.0.14.0',
|
311 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
312 |
),
|
313 |
-
'phpseclib3\\
|
314 |
'version' => '3.0.14.0',
|
315 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
316 |
),
|
317 |
-
'phpseclib3\\
|
318 |
'version' => '3.0.14.0',
|
319 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
320 |
),
|
321 |
-
'phpseclib3\\
|
322 |
'version' => '3.0.14.0',
|
323 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
324 |
),
|
325 |
-
'phpseclib3\\
|
326 |
'version' => '3.0.14.0',
|
327 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
328 |
),
|
329 |
-
'phpseclib3\\
|
330 |
'version' => '3.0.14.0',
|
331 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
332 |
),
|
333 |
-
'phpseclib3\\
|
334 |
'version' => '3.0.14.0',
|
335 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
336 |
),
|
337 |
-
'phpseclib3\\
|
338 |
'version' => '3.0.14.0',
|
339 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
340 |
),
|
341 |
-
'phpseclib3\\
|
342 |
'version' => '3.0.14.0',
|
343 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
344 |
),
|
345 |
-
'phpseclib3\\
|
346 |
'version' => '3.0.14.0',
|
347 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
348 |
),
|
349 |
-
'phpseclib3\\
|
350 |
'version' => '3.0.14.0',
|
351 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
352 |
),
|
353 |
-
'phpseclib3\\
|
354 |
'version' => '3.0.14.0',
|
355 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
356 |
),
|
357 |
-
'phpseclib3\\
|
358 |
'version' => '3.0.14.0',
|
359 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
360 |
),
|
361 |
-
'phpseclib3\\
|
362 |
'version' => '3.0.14.0',
|
363 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
364 |
),
|
365 |
-
'phpseclib3\\
|
366 |
'version' => '3.0.14.0',
|
367 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
368 |
),
|
369 |
-
'phpseclib3\\
|
370 |
'version' => '3.0.14.0',
|
371 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
372 |
),
|
373 |
-
'phpseclib3\\
|
374 |
'version' => '3.0.14.0',
|
375 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
376 |
),
|
377 |
-
'phpseclib3\\
|
378 |
'version' => '3.0.14.0',
|
379 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
380 |
),
|
381 |
-
'phpseclib3\\
|
382 |
'version' => '3.0.14.0',
|
383 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
384 |
),
|
385 |
-
'phpseclib3\\
|
386 |
'version' => '3.0.14.0',
|
387 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
388 |
),
|
389 |
-
'phpseclib3\\
|
390 |
'version' => '3.0.14.0',
|
391 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
392 |
),
|
393 |
-
'phpseclib3\\
|
394 |
'version' => '3.0.14.0',
|
395 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
396 |
),
|
397 |
-
'phpseclib3\\
|
398 |
'version' => '3.0.14.0',
|
399 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
400 |
),
|
401 |
-
'phpseclib3\\
|
402 |
'version' => '3.0.14.0',
|
403 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
404 |
),
|
405 |
-
'phpseclib3\\
|
406 |
'version' => '3.0.14.0',
|
407 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
408 |
),
|
409 |
-
'phpseclib3\\
|
410 |
'version' => '3.0.14.0',
|
411 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
412 |
),
|
413 |
-
'phpseclib3\\
|
414 |
'version' => '3.0.14.0',
|
415 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
416 |
),
|
417 |
-
'phpseclib3\\
|
418 |
'version' => '3.0.14.0',
|
419 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
420 |
),
|
421 |
-
'phpseclib3\\
|
422 |
'version' => '3.0.14.0',
|
423 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
424 |
),
|
425 |
-
'phpseclib3\\
|
426 |
'version' => '3.0.14.0',
|
427 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
428 |
),
|
429 |
-
'phpseclib3\\
|
430 |
'version' => '3.0.14.0',
|
431 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
432 |
),
|
433 |
-
'phpseclib3\\
|
434 |
'version' => '3.0.14.0',
|
435 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
436 |
),
|
437 |
-
'phpseclib3\\
|
438 |
'version' => '3.0.14.0',
|
439 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
440 |
),
|
441 |
-
'phpseclib3\\
|
442 |
'version' => '3.0.14.0',
|
443 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
444 |
),
|
445 |
-
'phpseclib3\\
|
446 |
'version' => '3.0.14.0',
|
447 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
448 |
),
|
449 |
-
'phpseclib3\\
|
450 |
'version' => '3.0.14.0',
|
451 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
452 |
),
|
453 |
-
'phpseclib3\\
|
454 |
'version' => '3.0.14.0',
|
455 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
456 |
),
|
457 |
-
'phpseclib3\\
|
458 |
'version' => '3.0.14.0',
|
459 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
460 |
),
|
461 |
-
'phpseclib3\\
|
462 |
'version' => '3.0.14.0',
|
463 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
464 |
),
|
465 |
-
'phpseclib3\\
|
466 |
'version' => '3.0.14.0',
|
467 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
468 |
),
|
469 |
-
'phpseclib3\\
|
470 |
'version' => '3.0.14.0',
|
471 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
472 |
),
|
473 |
-
'phpseclib3\\
|
474 |
'version' => '3.0.14.0',
|
475 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
476 |
),
|
477 |
-
'phpseclib3\\
|
478 |
'version' => '3.0.14.0',
|
479 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
480 |
),
|
481 |
-
'phpseclib3\\
|
482 |
'version' => '3.0.14.0',
|
483 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
484 |
),
|
485 |
-
'phpseclib3\\
|
486 |
'version' => '3.0.14.0',
|
487 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
488 |
),
|
489 |
-
'phpseclib3\\
|
490 |
'version' => '3.0.14.0',
|
491 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
492 |
),
|
493 |
-
'phpseclib3\\
|
494 |
'version' => '3.0.14.0',
|
495 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
496 |
),
|
497 |
-
'phpseclib3\\
|
498 |
'version' => '3.0.14.0',
|
499 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
500 |
),
|
501 |
-
'phpseclib3\\
|
502 |
'version' => '3.0.14.0',
|
503 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
504 |
),
|
505 |
-
'phpseclib3\\
|
506 |
'version' => '3.0.14.0',
|
507 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
508 |
),
|
509 |
-
'phpseclib3\\
|
510 |
'version' => '3.0.14.0',
|
511 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
512 |
),
|
513 |
-
'phpseclib3\\
|
514 |
'version' => '3.0.14.0',
|
515 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
516 |
),
|
517 |
-
'phpseclib3\\
|
518 |
'version' => '3.0.14.0',
|
519 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
520 |
),
|
521 |
-
'phpseclib3\\
|
522 |
'version' => '3.0.14.0',
|
523 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
524 |
),
|
525 |
-
'phpseclib3\\
|
526 |
'version' => '3.0.14.0',
|
527 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
528 |
),
|
529 |
-
'phpseclib3\\
|
530 |
'version' => '3.0.14.0',
|
531 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
532 |
),
|
533 |
-
'phpseclib3\\Crypt\\
|
534 |
'version' => '3.0.14.0',
|
535 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
536 |
),
|
537 |
-
'phpseclib3\\Crypt\\
|
538 |
'version' => '3.0.14.0',
|
539 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
540 |
),
|
541 |
-
'phpseclib3\\Crypt\\
|
542 |
'version' => '3.0.14.0',
|
543 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
544 |
),
|
545 |
-
'phpseclib3\\Crypt\\
|
546 |
'version' => '3.0.14.0',
|
547 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
548 |
),
|
549 |
-
'phpseclib3\\Crypt\\
|
550 |
'version' => '3.0.14.0',
|
551 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
552 |
),
|
553 |
-
'phpseclib3\\Crypt\\
|
554 |
'version' => '3.0.14.0',
|
555 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
556 |
),
|
557 |
-
'phpseclib3\\Crypt\\
|
558 |
'version' => '3.0.14.0',
|
559 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
560 |
),
|
561 |
-
'phpseclib3\\Crypt\\
|
562 |
'version' => '3.0.14.0',
|
563 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
564 |
),
|
565 |
-
'phpseclib3\\Crypt\\
|
566 |
'version' => '3.0.14.0',
|
567 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
568 |
),
|
569 |
-
'phpseclib3\\Crypt\\
|
570 |
'version' => '3.0.14.0',
|
571 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
572 |
),
|
573 |
-
'phpseclib3\\Crypt\\
|
574 |
'version' => '3.0.14.0',
|
575 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
576 |
),
|
577 |
-
'phpseclib3\\Crypt\\
|
578 |
'version' => '3.0.14.0',
|
579 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
580 |
),
|
581 |
-
'phpseclib3\\Crypt\\
|
582 |
'version' => '3.0.14.0',
|
583 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
584 |
),
|
585 |
-
'phpseclib3\\Crypt\\
|
586 |
'version' => '3.0.14.0',
|
587 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
588 |
),
|
589 |
-
'phpseclib3\\Crypt\\
|
590 |
'version' => '3.0.14.0',
|
591 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
592 |
),
|
593 |
-
'phpseclib3\\Crypt\\
|
594 |
'version' => '3.0.14.0',
|
595 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
596 |
),
|
597 |
-
'phpseclib3\\Crypt\\
|
598 |
'version' => '3.0.14.0',
|
599 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
600 |
),
|
601 |
-
'phpseclib3\\Crypt\\
|
602 |
'version' => '3.0.14.0',
|
603 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
604 |
),
|
605 |
-
'phpseclib3\\Crypt\\
|
606 |
'version' => '3.0.14.0',
|
607 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
608 |
),
|
609 |
-
'phpseclib3\\Crypt\\
|
610 |
'version' => '3.0.14.0',
|
611 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
612 |
),
|
613 |
-
'phpseclib3\\Crypt\\EC\\
|
614 |
'version' => '3.0.14.0',
|
615 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
616 |
),
|
617 |
-
'phpseclib3\\Crypt\\EC\\
|
618 |
'version' => '3.0.14.0',
|
619 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
620 |
),
|
621 |
-
'phpseclib3\\Crypt\\EC\\
|
622 |
'version' => '3.0.14.0',
|
623 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
624 |
),
|
625 |
-
'phpseclib3\\Crypt\\EC\\
|
626 |
'version' => '3.0.14.0',
|
627 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
628 |
),
|
629 |
-
'phpseclib3\\Crypt\\EC\\
|
630 |
'version' => '3.0.14.0',
|
631 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
632 |
),
|
633 |
-
'phpseclib3\\Crypt\\EC\\
|
634 |
'version' => '3.0.14.0',
|
635 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
636 |
),
|
637 |
-
'phpseclib3\\Crypt\\EC\\
|
638 |
'version' => '3.0.14.0',
|
639 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
640 |
),
|
641 |
-
'phpseclib3\\Crypt\\EC\\
|
642 |
'version' => '3.0.14.0',
|
643 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
644 |
),
|
645 |
-
'phpseclib3\\Crypt\\EC\\
|
646 |
'version' => '3.0.14.0',
|
647 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/
|
648 |
),
|
649 |
-
'phpseclib3\\Crypt\\
|
650 |
'version' => '3.0.14.0',
|
651 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
652 |
),
|
653 |
-
'phpseclib3\\Crypt\\
|
654 |
'version' => '3.0.14.0',
|
655 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
656 |
),
|
657 |
-
'phpseclib3\\Crypt\\
|
658 |
'version' => '3.0.14.0',
|
659 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
660 |
),
|
661 |
-
'phpseclib3\\Crypt\\
|
662 |
'version' => '3.0.14.0',
|
663 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
664 |
),
|
665 |
-
'phpseclib3\\Crypt\\
|
666 |
'version' => '3.0.14.0',
|
667 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
668 |
),
|
669 |
-
'phpseclib3\\Crypt\\
|
670 |
'version' => '3.0.14.0',
|
671 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
672 |
),
|
673 |
-
'phpseclib3\\Crypt\\
|
674 |
'version' => '3.0.14.0',
|
675 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
676 |
),
|
677 |
-
'phpseclib3\\Crypt\\EC
|
678 |
'version' => '3.0.14.0',
|
679 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC
|
680 |
),
|
681 |
-
'phpseclib3\\Crypt\\
|
682 |
'version' => '3.0.14.0',
|
683 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
684 |
),
|
685 |
-
'phpseclib3\\Crypt\\
|
686 |
'version' => '3.0.14.0',
|
687 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
688 |
),
|
689 |
-
'phpseclib3\\Crypt\\
|
690 |
'version' => '3.0.14.0',
|
691 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
692 |
),
|
693 |
-
'phpseclib3\\Crypt\\
|
694 |
'version' => '3.0.14.0',
|
695 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
696 |
),
|
697 |
-
'phpseclib3\\Crypt\\
|
698 |
'version' => '3.0.14.0',
|
699 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
700 |
),
|
701 |
-
'phpseclib3\\Crypt\\
|
702 |
'version' => '3.0.14.0',
|
703 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
704 |
),
|
705 |
-
'phpseclib3\\Crypt\\
|
706 |
'version' => '3.0.14.0',
|
707 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
708 |
),
|
709 |
-
'phpseclib3\\Crypt\\
|
710 |
'version' => '3.0.14.0',
|
711 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
712 |
),
|
713 |
-
'phpseclib3\\Crypt\\
|
714 |
'version' => '3.0.14.0',
|
715 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
716 |
),
|
717 |
-
'phpseclib3\\Crypt\\
|
718 |
'version' => '3.0.14.0',
|
719 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
720 |
),
|
721 |
-
'phpseclib3\\Crypt\\
|
722 |
'version' => '3.0.14.0',
|
723 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
724 |
),
|
725 |
-
'phpseclib3\\Crypt\\
|
726 |
'version' => '3.0.14.0',
|
727 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
728 |
),
|
729 |
-
'phpseclib3\\Crypt\\
|
730 |
'version' => '3.0.14.0',
|
731 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
732 |
),
|
733 |
-
'phpseclib3\\Crypt\\
|
734 |
'version' => '3.0.14.0',
|
735 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
736 |
),
|
737 |
-
'phpseclib3\\Crypt\\
|
738 |
'version' => '3.0.14.0',
|
739 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
740 |
),
|
741 |
-
'phpseclib3\\Crypt\\
|
742 |
'version' => '3.0.14.0',
|
743 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/
|
744 |
),
|
745 |
-
'phpseclib3\\
|
746 |
'version' => '3.0.14.0',
|
747 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
748 |
),
|
749 |
-
'phpseclib3\\
|
750 |
'version' => '3.0.14.0',
|
751 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
752 |
),
|
753 |
-
'phpseclib3\\
|
754 |
'version' => '3.0.14.0',
|
755 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
756 |
),
|
757 |
-
'phpseclib3\\
|
758 |
'version' => '3.0.14.0',
|
759 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
760 |
),
|
761 |
-
'phpseclib3\\
|
762 |
'version' => '3.0.14.0',
|
763 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
764 |
),
|
765 |
-
'phpseclib3\\
|
766 |
'version' => '3.0.14.0',
|
767 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
768 |
),
|
769 |
-
'phpseclib3\\
|
770 |
'version' => '3.0.14.0',
|
771 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
772 |
),
|
773 |
-
'phpseclib3\\
|
774 |
'version' => '3.0.14.0',
|
775 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
776 |
),
|
777 |
-
'phpseclib3\\
|
778 |
'version' => '3.0.14.0',
|
779 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
780 |
),
|
781 |
-
'phpseclib3\\
|
782 |
'version' => '3.0.14.0',
|
783 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
784 |
),
|
785 |
-
'phpseclib3\\
|
786 |
'version' => '3.0.14.0',
|
787 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
788 |
),
|
789 |
-
'phpseclib3\\
|
790 |
'version' => '3.0.14.0',
|
791 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
792 |
),
|
793 |
-
'phpseclib3\\
|
794 |
'version' => '3.0.14.0',
|
795 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
796 |
),
|
797 |
-
'phpseclib3\\
|
798 |
'version' => '3.0.14.0',
|
799 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
800 |
),
|
801 |
-
'phpseclib3\\
|
802 |
'version' => '3.0.14.0',
|
803 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
804 |
),
|
805 |
-
'phpseclib3\\
|
806 |
'version' => '3.0.14.0',
|
807 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
808 |
),
|
809 |
-
'phpseclib3\\
|
810 |
'version' => '3.0.14.0',
|
811 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
812 |
),
|
813 |
-
'phpseclib3\\
|
814 |
'version' => '3.0.14.0',
|
815 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
816 |
),
|
817 |
-
'phpseclib3\\
|
818 |
'version' => '3.0.14.0',
|
819 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
820 |
),
|
821 |
-
'phpseclib3\\
|
822 |
'version' => '3.0.14.0',
|
823 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
824 |
),
|
825 |
-
'phpseclib3\\
|
826 |
'version' => '3.0.14.0',
|
827 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
828 |
),
|
829 |
-
'phpseclib3\\
|
830 |
'version' => '3.0.14.0',
|
831 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
832 |
),
|
833 |
-
'phpseclib3\\
|
834 |
'version' => '3.0.14.0',
|
835 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
836 |
),
|
837 |
-
'phpseclib3\\
|
838 |
'version' => '3.0.14.0',
|
839 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
840 |
),
|
841 |
-
'phpseclib3\\
|
842 |
'version' => '3.0.14.0',
|
843 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
844 |
),
|
845 |
-
'phpseclib3\\
|
846 |
'version' => '3.0.14.0',
|
847 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
848 |
),
|
849 |
-
'phpseclib3\\
|
850 |
'version' => '3.0.14.0',
|
851 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
852 |
),
|
853 |
-
'phpseclib3\\
|
854 |
'version' => '3.0.14.0',
|
855 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
856 |
),
|
857 |
-
'phpseclib3\\
|
858 |
'version' => '3.0.14.0',
|
859 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
860 |
),
|
861 |
-
'phpseclib3\\
|
862 |
'version' => '3.0.14.0',
|
863 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
864 |
),
|
865 |
-
'phpseclib3\\
|
866 |
'version' => '3.0.14.0',
|
867 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
868 |
),
|
869 |
-
'phpseclib3\\
|
870 |
'version' => '3.0.14.0',
|
871 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
872 |
),
|
873 |
-
'phpseclib3\\
|
874 |
'version' => '3.0.14.0',
|
875 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
876 |
),
|
877 |
-
'phpseclib3\\
|
878 |
'version' => '3.0.14.0',
|
879 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
880 |
),
|
881 |
-
'phpseclib3\\
|
882 |
'version' => '3.0.14.0',
|
883 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
884 |
),
|
885 |
-
'phpseclib3\\
|
886 |
'version' => '3.0.14.0',
|
887 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
888 |
),
|
889 |
-
'phpseclib3\\
|
890 |
'version' => '3.0.14.0',
|
891 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
892 |
),
|
893 |
-
'phpseclib3\\
|
894 |
'version' => '3.0.14.0',
|
895 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
896 |
),
|
897 |
-
'phpseclib3\\
|
898 |
'version' => '3.0.14.0',
|
899 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
900 |
),
|
901 |
-
'phpseclib3\\
|
902 |
'version' => '3.0.14.0',
|
903 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
904 |
),
|
905 |
-
'phpseclib3\\
|
906 |
'version' => '3.0.14.0',
|
907 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
908 |
),
|
909 |
-
'phpseclib3\\
|
910 |
'version' => '3.0.14.0',
|
911 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
912 |
),
|
913 |
-
'phpseclib3\\
|
914 |
'version' => '3.0.14.0',
|
915 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
916 |
),
|
917 |
-
'phpseclib3\\
|
918 |
'version' => '3.0.14.0',
|
919 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
920 |
),
|
921 |
-
'phpseclib3\\
|
922 |
'version' => '3.0.14.0',
|
923 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
924 |
),
|
925 |
-
'phpseclib3\\
|
926 |
'version' => '3.0.14.0',
|
927 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
928 |
),
|
929 |
-
'phpseclib3\\
|
930 |
'version' => '3.0.14.0',
|
931 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
932 |
),
|
933 |
-
'phpseclib3\\
|
934 |
'version' => '3.0.14.0',
|
935 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
936 |
),
|
937 |
-
'phpseclib3\\
|
938 |
'version' => '3.0.14.0',
|
939 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
940 |
),
|
941 |
-
'phpseclib3\\
|
942 |
'version' => '3.0.14.0',
|
943 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
944 |
),
|
945 |
-
'phpseclib3\\
|
946 |
'version' => '3.0.14.0',
|
947 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
948 |
),
|
949 |
-
'phpseclib3\\
|
950 |
'version' => '3.0.14.0',
|
951 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
952 |
),
|
953 |
-
'phpseclib3\\
|
954 |
'version' => '3.0.14.0',
|
955 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
956 |
),
|
957 |
-
'phpseclib3\\
|
958 |
'version' => '3.0.14.0',
|
959 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
960 |
),
|
961 |
-
'phpseclib3\\
|
962 |
'version' => '3.0.14.0',
|
963 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
964 |
),
|
965 |
-
'phpseclib3\\
|
966 |
'version' => '3.0.14.0',
|
967 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
968 |
),
|
969 |
-
'phpseclib3\\
|
970 |
'version' => '3.0.14.0',
|
971 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
972 |
),
|
973 |
-
'phpseclib3\\
|
974 |
'version' => '3.0.14.0',
|
975 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
976 |
),
|
977 |
-
'phpseclib3\\
|
978 |
'version' => '3.0.14.0',
|
979 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
980 |
),
|
981 |
-
'phpseclib3\\
|
982 |
'version' => '3.0.14.0',
|
983 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
984 |
),
|
985 |
-
'phpseclib3\\
|
986 |
'version' => '3.0.14.0',
|
987 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
988 |
),
|
989 |
-
'phpseclib3\\
|
990 |
'version' => '3.0.14.0',
|
991 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
992 |
),
|
993 |
-
'phpseclib3\\
|
994 |
'version' => '3.0.14.0',
|
995 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
996 |
),
|
997 |
-
'phpseclib3\\
|
998 |
'version' => '3.0.14.0',
|
999 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1000 |
),
|
1001 |
-
'phpseclib3\\
|
1002 |
'version' => '3.0.14.0',
|
1003 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1004 |
),
|
1005 |
-
'phpseclib3\\
|
1006 |
'version' => '3.0.14.0',
|
1007 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1008 |
),
|
1009 |
-
'phpseclib3\\
|
1010 |
'version' => '3.0.14.0',
|
1011 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1012 |
),
|
1013 |
-
'phpseclib3\\
|
1014 |
'version' => '3.0.14.0',
|
1015 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1016 |
),
|
1017 |
-
'phpseclib3\\
|
1018 |
'version' => '3.0.14.0',
|
1019 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1020 |
),
|
1021 |
-
'phpseclib3\\
|
1022 |
'version' => '3.0.14.0',
|
1023 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1024 |
),
|
1025 |
-
'phpseclib3\\
|
1026 |
'version' => '3.0.14.0',
|
1027 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1028 |
),
|
1029 |
-
'phpseclib3\\
|
1030 |
'version' => '3.0.14.0',
|
1031 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1032 |
),
|
1033 |
-
'phpseclib3\\
|
1034 |
-
'version' => '3.0.14.0',
|
1035 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php'
|
1036 |
-
),
|
1037 |
-
'phpseclib3\\Crypt\\Rijndael' => array(
|
1038 |
'version' => '3.0.14.0',
|
1039 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1040 |
),
|
1041 |
-
'phpseclib3\\
|
1042 |
'version' => '3.0.14.0',
|
1043 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1044 |
),
|
1045 |
-
'phpseclib3\\
|
1046 |
'version' => '3.0.14.0',
|
1047 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1048 |
),
|
1049 |
-
'phpseclib3\\
|
1050 |
'version' => '3.0.14.0',
|
1051 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1052 |
),
|
1053 |
-
'phpseclib3\\
|
1054 |
'version' => '3.0.14.0',
|
1055 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1056 |
),
|
1057 |
-
'phpseclib3\\
|
1058 |
'version' => '3.0.14.0',
|
1059 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1060 |
),
|
1061 |
-
'phpseclib3\\
|
1062 |
'version' => '3.0.14.0',
|
1063 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1064 |
),
|
1065 |
-
'phpseclib3\\
|
1066 |
'version' => '3.0.14.0',
|
1067 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1068 |
),
|
1069 |
-
'phpseclib3\\
|
1070 |
'version' => '3.0.14.0',
|
1071 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1072 |
),
|
1073 |
-
'phpseclib3\\
|
1074 |
'version' => '3.0.14.0',
|
1075 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1076 |
),
|
1077 |
-
'phpseclib3\\
|
1078 |
'version' => '3.0.14.0',
|
1079 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1080 |
),
|
1081 |
-
'phpseclib3\\
|
1082 |
'version' => '3.0.14.0',
|
1083 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1084 |
),
|
1085 |
-
'phpseclib3\\
|
1086 |
'version' => '3.0.14.0',
|
1087 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1088 |
),
|
1089 |
-
'phpseclib3\\
|
1090 |
'version' => '3.0.14.0',
|
1091 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1092 |
),
|
1093 |
-
'phpseclib3\\
|
1094 |
'version' => '3.0.14.0',
|
1095 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1096 |
),
|
1097 |
-
'phpseclib3\\
|
1098 |
'version' => '3.0.14.0',
|
1099 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1100 |
),
|
1101 |
-
'phpseclib3\\
|
1102 |
'version' => '3.0.14.0',
|
1103 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1104 |
),
|
1105 |
-
'phpseclib3\\
|
1106 |
'version' => '3.0.14.0',
|
1107 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1108 |
),
|
1109 |
-
'phpseclib3\\
|
1110 |
'version' => '3.0.14.0',
|
1111 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1112 |
),
|
1113 |
-
'phpseclib3\\
|
1114 |
'version' => '3.0.14.0',
|
1115 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1116 |
),
|
1117 |
-
'phpseclib3\\
|
1118 |
'version' => '3.0.14.0',
|
1119 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1120 |
),
|
1121 |
-
'phpseclib3\\
|
1122 |
'version' => '3.0.14.0',
|
1123 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1124 |
),
|
1125 |
-
'phpseclib3\\
|
1126 |
'version' => '3.0.14.0',
|
1127 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1128 |
),
|
1129 |
-
'phpseclib3\\
|
1130 |
'version' => '3.0.14.0',
|
1131 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1132 |
),
|
1133 |
-
'phpseclib3\\
|
1134 |
'version' => '3.0.14.0',
|
1135 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1136 |
),
|
1137 |
-
'phpseclib3\\
|
1138 |
'version' => '3.0.14.0',
|
1139 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1140 |
),
|
1141 |
-
'phpseclib3\\
|
1142 |
'version' => '3.0.14.0',
|
1143 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1144 |
),
|
1145 |
-
'phpseclib3\\
|
1146 |
'version' => '3.0.14.0',
|
1147 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1148 |
),
|
1149 |
-
'phpseclib3\\
|
1150 |
'version' => '3.0.14.0',
|
1151 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1152 |
),
|
1153 |
-
'phpseclib3\\
|
1154 |
'version' => '3.0.14.0',
|
1155 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1156 |
),
|
1157 |
-
'phpseclib3\\
|
1158 |
'version' => '3.0.14.0',
|
1159 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1160 |
),
|
1161 |
-
'phpseclib3\\
|
1162 |
'version' => '3.0.14.0',
|
1163 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1164 |
),
|
1165 |
-
'phpseclib3\\
|
1166 |
'version' => '3.0.14.0',
|
1167 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1168 |
),
|
1169 |
-
'phpseclib3\\
|
1170 |
'version' => '3.0.14.0',
|
1171 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1172 |
),
|
1173 |
-
'phpseclib3\\
|
1174 |
'version' => '3.0.14.0',
|
1175 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1176 |
),
|
1177 |
-
'phpseclib3\\
|
1178 |
'version' => '3.0.14.0',
|
1179 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1180 |
),
|
1181 |
-
'phpseclib3\\
|
1182 |
'version' => '3.0.14.0',
|
1183 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1184 |
),
|
1185 |
-
'phpseclib3\\
|
1186 |
'version' => '3.0.14.0',
|
1187 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1188 |
),
|
1189 |
-
'phpseclib3\\
|
1190 |
'version' => '3.0.14.0',
|
1191 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1192 |
),
|
1193 |
-
'phpseclib3\\
|
1194 |
'version' => '3.0.14.0',
|
1195 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1196 |
),
|
1197 |
-
'phpseclib3\\
|
1198 |
'version' => '3.0.14.0',
|
1199 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1200 |
),
|
1201 |
-
'phpseclib3\\
|
1202 |
'version' => '3.0.14.0',
|
1203 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1204 |
),
|
1205 |
-
'phpseclib3\\
|
1206 |
'version' => '3.0.14.0',
|
1207 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1208 |
),
|
1209 |
-
'phpseclib3\\
|
1210 |
'version' => '3.0.14.0',
|
1211 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1212 |
),
|
1213 |
-
'phpseclib3\\
|
1214 |
'version' => '3.0.14.0',
|
1215 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1216 |
),
|
1217 |
-
'phpseclib3\\
|
1218 |
'version' => '3.0.14.0',
|
1219 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1220 |
),
|
1221 |
-
'phpseclib3\\
|
1222 |
'version' => '3.0.14.0',
|
1223 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1224 |
),
|
1225 |
-
'phpseclib3\\
|
1226 |
'version' => '3.0.14.0',
|
1227 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1228 |
),
|
1229 |
-
'phpseclib3\\
|
1230 |
'version' => '3.0.14.0',
|
1231 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1232 |
),
|
1233 |
-
'phpseclib3\\
|
1234 |
'version' => '3.0.14.0',
|
1235 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1236 |
),
|
1237 |
-
'phpseclib3\\
|
1238 |
'version' => '3.0.14.0',
|
1239 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1240 |
),
|
1241 |
-
'phpseclib3\\
|
1242 |
'version' => '3.0.14.0',
|
1243 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1244 |
),
|
1245 |
-
'phpseclib3\\
|
1246 |
'version' => '3.0.14.0',
|
1247 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1248 |
),
|
1249 |
-
'phpseclib3\\
|
1250 |
'version' => '3.0.14.0',
|
1251 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1252 |
),
|
1253 |
-
'phpseclib3\\
|
1254 |
'version' => '3.0.14.0',
|
1255 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1256 |
),
|
1257 |
-
'phpseclib3\\
|
1258 |
'version' => '3.0.14.0',
|
1259 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1260 |
),
|
1261 |
-
'phpseclib3\\
|
1262 |
'version' => '3.0.14.0',
|
1263 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1264 |
),
|
1265 |
-
'phpseclib3\\
|
1266 |
'version' => '3.0.14.0',
|
1267 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1268 |
),
|
1269 |
-
'phpseclib3\\
|
1270 |
'version' => '3.0.14.0',
|
1271 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/
|
1272 |
),
|
1273 |
-
'phpseclib3\\Exception\\
|
1274 |
'version' => '3.0.14.0',
|
1275 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/
|
1276 |
),
|
1277 |
'phpseclib3\\Exception\\InsufficientSetupException' => array(
|
1278 |
'version' => '3.0.14.0',
|
1279 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/InsufficientSetupException.php'
|
1280 |
),
|
1281 |
-
'phpseclib3\\Exception\\
|
1282 |
'version' => '3.0.14.0',
|
1283 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/
|
|
|
|
|
|
|
|
|
1284 |
),
|
1285 |
'phpseclib3\\Exception\\UnsupportedOperationException' => array(
|
1286 |
'version' => '3.0.14.0',
|
1287 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnsupportedOperationException.php'
|
1288 |
),
|
1289 |
-
'phpseclib3\\Exception\\
|
1290 |
'version' => '3.0.14.0',
|
1291 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/
|
|
|
|
|
|
|
|
|
1292 |
),
|
1293 |
'phpseclib3\\Exception\\UnsupportedCurveException' => array(
|
1294 |
'version' => '3.0.14.0',
|
1295 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnsupportedCurveException.php'
|
1296 |
),
|
1297 |
-
'phpseclib3\\Exception\\
|
1298 |
'version' => '3.0.14.0',
|
1299 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/
|
1300 |
),
|
1301 |
-
'phpseclib3\\Exception\\
|
1302 |
'version' => '3.0.14.0',
|
1303 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/
|
1304 |
),
|
1305 |
'phpseclib3\\Exception\\InconsistentSetupException' => array(
|
1306 |
'version' => '3.0.14.0',
|
1307 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/InconsistentSetupException.php'
|
1308 |
),
|
1309 |
-
'phpseclib3\\Exception\\
|
1310 |
-
'version' => '3.0.14.0',
|
1311 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/BadConfigurationException.php'
|
1312 |
-
),
|
1313 |
-
'phpseclib3\\Exception\\BadModeException' => array(
|
1314 |
-
'version' => '3.0.14.0',
|
1315 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/BadModeException.php'
|
1316 |
-
),
|
1317 |
-
'phpseclib3\\Exception\\UnsupportedFormatException' => array(
|
1318 |
'version' => '3.0.14.0',
|
1319 |
-
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/
|
1320 |
),
|
1321 |
'phpseclib3\\Exception\\FileNotFoundException' => array(
|
1322 |
'version' => '3.0.14.0',
|
1323 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/FileNotFoundException.php'
|
1324 |
),
|
|
|
|
|
|
|
|
|
1325 |
'bcmath_compat\\BCMath' => array(
|
1326 |
'version' => '2.0.1.0',
|
1327 |
'path' => $vendorDir . '/phpseclib/bcmath_compat/src/BCMath.php'
|
@@ -1346,6 +1346,10 @@ return array(
|
|
1346 |
'version' => '1.26.0.0',
|
1347 |
'path' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php'
|
1348 |
),
|
|
|
|
|
|
|
|
|
1349 |
'Symfony\\Contracts\\Translation\\TranslatableInterface' => array(
|
1350 |
'version' => '2.5.1.0',
|
1351 |
'path' => $vendorDir . '/symfony/translation-contracts/TranslatableInterface.php'
|
@@ -1354,965 +1358,961 @@ return array(
|
|
1354 |
'version' => '2.5.1.0',
|
1355 |
'path' => $vendorDir . '/symfony/translation-contracts/TranslatorInterface.php'
|
1356 |
),
|
1357 |
-
'Symfony\\Contracts\\Translation\\
|
1358 |
'version' => '2.5.1.0',
|
1359 |
-
'path' => $vendorDir . '/symfony/translation-contracts/
|
1360 |
),
|
1361 |
'Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => array(
|
1362 |
'version' => '2.5.1.0',
|
1363 |
'path' => $vendorDir . '/symfony/translation-contracts/Test/TranslatorTest.php'
|
1364 |
),
|
1365 |
-
'Symfony\\
|
1366 |
-
'version' => '
|
1367 |
-
'path' => $vendorDir . '/symfony/
|
1368 |
),
|
1369 |
'Symfony\\Component\\Validator\\DataCollector\\ValidatorDataCollector' => array(
|
1370 |
'version' => '5.4.8.0',
|
1371 |
'path' => $vendorDir . '/symfony/validator/DataCollector/ValidatorDataCollector.php'
|
1372 |
),
|
1373 |
-
'Symfony\\Component\\Validator\\
|
1374 |
'version' => '5.4.8.0',
|
1375 |
-
'path' => $vendorDir . '/symfony/validator/
|
1376 |
),
|
1377 |
-
'Symfony\\Component\\Validator\\
|
1378 |
'version' => '5.4.8.0',
|
1379 |
-
'path' => $vendorDir . '/symfony/validator/
|
1380 |
),
|
1381 |
-
'Symfony\\Component\\Validator\\
|
1382 |
'version' => '5.4.8.0',
|
1383 |
-
'path' => $vendorDir . '/symfony/validator/
|
1384 |
),
|
1385 |
-
'Symfony\\Component\\Validator\\
|
1386 |
'version' => '5.4.8.0',
|
1387 |
-
'path' => $vendorDir . '/symfony/validator/
|
1388 |
),
|
1389 |
-
'Symfony\\Component\\Validator\\
|
1390 |
'version' => '5.4.8.0',
|
1391 |
-
'path' => $vendorDir . '/symfony/validator/
|
1392 |
),
|
1393 |
-
'Symfony\\Component\\Validator\\
|
1394 |
'version' => '5.4.8.0',
|
1395 |
-
'path' => $vendorDir . '/symfony/validator/
|
1396 |
),
|
1397 |
-
'Symfony\\Component\\Validator\\
|
1398 |
'version' => '5.4.8.0',
|
1399 |
-
'path' => $vendorDir . '/symfony/validator/
|
1400 |
),
|
1401 |
-
'Symfony\\Component\\Validator\\
|
1402 |
'version' => '5.4.8.0',
|
1403 |
-
'path' => $vendorDir . '/symfony/validator/
|
1404 |
),
|
1405 |
-
'Symfony\\Component\\Validator\\
|
1406 |
'version' => '5.4.8.0',
|
1407 |
-
'path' => $vendorDir . '/symfony/validator/
|
1408 |
),
|
1409 |
-
'Symfony\\Component\\Validator\\
|
1410 |
'version' => '5.4.8.0',
|
1411 |
-
'path' => $vendorDir . '/symfony/validator/
|
1412 |
),
|
1413 |
-
'Symfony\\Component\\Validator\\
|
1414 |
'version' => '5.4.8.0',
|
1415 |
-
'path' => $vendorDir . '/symfony/validator/
|
1416 |
),
|
1417 |
-
'Symfony\\Component\\Validator\\
|
1418 |
'version' => '5.4.8.0',
|
1419 |
-
'path' => $vendorDir . '/symfony/validator/
|
1420 |
),
|
1421 |
-
'Symfony\\Component\\Validator\\
|
1422 |
'version' => '5.4.8.0',
|
1423 |
-
'path' => $vendorDir . '/symfony/validator/
|
1424 |
),
|
1425 |
-
'Symfony\\Component\\Validator\\
|
1426 |
'version' => '5.4.8.0',
|
1427 |
-
'path' => $vendorDir . '/symfony/validator/
|
1428 |
),
|
1429 |
-
'Symfony\\Component\\Validator\\
|
1430 |
'version' => '5.4.8.0',
|
1431 |
-
'path' => $vendorDir . '/symfony/validator/
|
1432 |
),
|
1433 |
-
'Symfony\\Component\\Validator\\
|
1434 |
'version' => '5.4.8.0',
|
1435 |
-
'path' => $vendorDir . '/symfony/validator/
|
1436 |
),
|
1437 |
-
'Symfony\\Component\\Validator\\
|
1438 |
'version' => '5.4.8.0',
|
1439 |
-
'path' => $vendorDir . '/symfony/validator/
|
1440 |
),
|
1441 |
-
'Symfony\\Component\\Validator\\
|
1442 |
'version' => '5.4.8.0',
|
1443 |
-
'path' => $vendorDir . '/symfony/validator/
|
1444 |
),
|
1445 |
-
'Symfony\\Component\\Validator\\
|
1446 |
'version' => '5.4.8.0',
|
1447 |
-
'path' => $vendorDir . '/symfony/validator/
|
1448 |
),
|
1449 |
-
'Symfony\\Component\\Validator\\
|
1450 |
'version' => '5.4.8.0',
|
1451 |
-
'path' => $vendorDir . '/symfony/validator/
|
1452 |
),
|
1453 |
-
'Symfony\\Component\\Validator\\
|
1454 |
'version' => '5.4.8.0',
|
1455 |
-
'path' => $vendorDir . '/symfony/validator/
|
1456 |
),
|
1457 |
-
'Symfony\\Component\\Validator\\
|
1458 |
'version' => '5.4.8.0',
|
1459 |
-
'path' => $vendorDir . '/symfony/validator/
|
1460 |
),
|
1461 |
-
'Symfony\\Component\\Validator\\
|
1462 |
'version' => '5.4.8.0',
|
1463 |
-
'path' => $vendorDir . '/symfony/validator/
|
1464 |
),
|
1465 |
-
'Symfony\\Component\\Validator\\
|
1466 |
'version' => '5.4.8.0',
|
1467 |
-
'path' => $vendorDir . '/symfony/validator/
|
1468 |
),
|
1469 |
-
'Symfony\\Component\\Validator\\
|
1470 |
'version' => '5.4.8.0',
|
1471 |
-
'path' => $vendorDir . '/symfony/validator/
|
1472 |
),
|
1473 |
-
'Symfony\\Component\\Validator\\
|
1474 |
'version' => '5.4.8.0',
|
1475 |
-
'path' => $vendorDir . '/symfony/validator/
|
1476 |
),
|
1477 |
-
'Symfony\\Component\\Validator\\
|
1478 |
'version' => '5.4.8.0',
|
1479 |
-
'path' => $vendorDir . '/symfony/validator/
|
1480 |
),
|
1481 |
-
'Symfony\\Component\\Validator\\
|
1482 |
'version' => '5.4.8.0',
|
1483 |
-
'path' => $vendorDir . '/symfony/validator/
|
1484 |
),
|
1485 |
-
'Symfony\\Component\\Validator\\
|
1486 |
'version' => '5.4.8.0',
|
1487 |
-
'path' => $vendorDir . '/symfony/validator/
|
1488 |
),
|
1489 |
-
'Symfony\\Component\\Validator\\
|
1490 |
'version' => '5.4.8.0',
|
1491 |
-
'path' => $vendorDir . '/symfony/validator/
|
1492 |
),
|
1493 |
-
'Symfony\\Component\\Validator\\
|
1494 |
'version' => '5.4.8.0',
|
1495 |
-
'path' => $vendorDir . '/symfony/validator/
|
1496 |
),
|
1497 |
-
'Symfony\\Component\\Validator\\
|
1498 |
'version' => '5.4.8.0',
|
1499 |
-
'path' => $vendorDir . '/symfony/validator/
|
1500 |
),
|
1501 |
-
'Symfony\\Component\\Validator\\
|
1502 |
'version' => '5.4.8.0',
|
1503 |
-
'path' => $vendorDir . '/symfony/validator/
|
1504 |
),
|
1505 |
-
'Symfony\\Component\\Validator\\
|
1506 |
'version' => '5.4.8.0',
|
1507 |
-
'path' => $vendorDir . '/symfony/validator/
|
1508 |
),
|
1509 |
-
'Symfony\\Component\\Validator\\
|
1510 |
'version' => '5.4.8.0',
|
1511 |
-
'path' => $vendorDir . '/symfony/validator/
|
1512 |
),
|
1513 |
-
'Symfony\\Component\\Validator\\
|
1514 |
'version' => '5.4.8.0',
|
1515 |
-
'path' => $vendorDir . '/symfony/validator/
|
1516 |
),
|
1517 |
-
'Symfony\\Component\\Validator\\
|
1518 |
'version' => '5.4.8.0',
|
1519 |
-
'path' => $vendorDir . '/symfony/validator/
|
1520 |
),
|
1521 |
-
'Symfony\\Component\\Validator\\
|
1522 |
'version' => '5.4.8.0',
|
1523 |
-
'path' => $vendorDir . '/symfony/validator/
|
1524 |
),
|
1525 |
-
'Symfony\\Component\\Validator\\
|
1526 |
'version' => '5.4.8.0',
|
1527 |
-
'path' => $vendorDir . '/symfony/validator/
|
1528 |
),
|
1529 |
-
'Symfony\\Component\\Validator\\
|
1530 |
'version' => '5.4.8.0',
|
1531 |
-
'path' => $vendorDir . '/symfony/validator/
|
1532 |
),
|
1533 |
-
'Symfony\\Component\\Validator\\
|
1534 |
'version' => '5.4.8.0',
|
1535 |
-
'path' => $vendorDir . '/symfony/validator/
|
1536 |
),
|
1537 |
-
'Symfony\\Component\\Validator\\
|
1538 |
'version' => '5.4.8.0',
|
1539 |
-
'path' => $vendorDir . '/symfony/validator/
|
1540 |
),
|
1541 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1542 |
'version' => '5.4.8.0',
|
1543 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1544 |
),
|
1545 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1546 |
'version' => '5.4.8.0',
|
1547 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1548 |
),
|
1549 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1550 |
'version' => '5.4.8.0',
|
1551 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1552 |
),
|
1553 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1554 |
'version' => '5.4.8.0',
|
1555 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1556 |
),
|
1557 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1558 |
'version' => '5.4.8.0',
|
1559 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1560 |
),
|
1561 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1562 |
'version' => '5.4.8.0',
|
1563 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1564 |
),
|
1565 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1566 |
'version' => '5.4.8.0',
|
1567 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1568 |
),
|
1569 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1570 |
'version' => '5.4.8.0',
|
1571 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1572 |
),
|
1573 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1574 |
'version' => '5.4.8.0',
|
1575 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1576 |
),
|
1577 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1578 |
'version' => '5.4.8.0',
|
1579 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1580 |
),
|
1581 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1582 |
'version' => '5.4.8.0',
|
1583 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1584 |
),
|
1585 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1586 |
'version' => '5.4.8.0',
|
1587 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1588 |
-
),
|
1589 |
-
'Symfony\\Component\\Validator\\Constraints\\ChoiceValidator' => array(
|
1590 |
-
'version' => '5.4.8.0',
|
1591 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/ChoiceValidator.php'
|
1592 |
),
|
1593 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1594 |
'version' => '5.4.8.0',
|
1595 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1596 |
),
|
1597 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1598 |
'version' => '5.4.8.0',
|
1599 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1600 |
),
|
1601 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1602 |
'version' => '5.4.8.0',
|
1603 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1604 |
),
|
1605 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1606 |
'version' => '5.4.8.0',
|
1607 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1608 |
),
|
1609 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1610 |
'version' => '5.4.8.0',
|
1611 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1612 |
),
|
1613 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1614 |
'version' => '5.4.8.0',
|
1615 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1616 |
),
|
1617 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1618 |
'version' => '5.4.8.0',
|
1619 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1620 |
),
|
1621 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1622 |
'version' => '5.4.8.0',
|
1623 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1624 |
),
|
1625 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1626 |
'version' => '5.4.8.0',
|
1627 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1628 |
),
|
1629 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1630 |
'version' => '5.4.8.0',
|
1631 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1632 |
),
|
1633 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1634 |
'version' => '5.4.8.0',
|
1635 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1636 |
),
|
1637 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1638 |
'version' => '5.4.8.0',
|
1639 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1640 |
),
|
1641 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1642 |
'version' => '5.4.8.0',
|
1643 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1644 |
),
|
1645 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1646 |
'version' => '5.4.8.0',
|
1647 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1648 |
),
|
1649 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1650 |
'version' => '5.4.8.0',
|
1651 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1652 |
),
|
1653 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1654 |
'version' => '5.4.8.0',
|
1655 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1656 |
),
|
1657 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1658 |
'version' => '5.4.8.0',
|
1659 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1660 |
),
|
1661 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1662 |
'version' => '5.4.8.0',
|
1663 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1664 |
),
|
1665 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1666 |
'version' => '5.4.8.0',
|
1667 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1668 |
),
|
1669 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1670 |
'version' => '5.4.8.0',
|
1671 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1672 |
),
|
1673 |
'Symfony\\Component\\Validator\\Constraints\\NotIdenticalTo' => array(
|
1674 |
'version' => '5.4.8.0',
|
1675 |
'path' => $vendorDir . '/symfony/validator/Constraints/NotIdenticalTo.php'
|
1676 |
),
|
1677 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1678 |
'version' => '5.4.8.0',
|
1679 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1680 |
),
|
1681 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1682 |
'version' => '5.4.8.0',
|
1683 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1684 |
),
|
1685 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1686 |
'version' => '5.4.8.0',
|
1687 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1688 |
),
|
1689 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1690 |
'version' => '5.4.8.0',
|
1691 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1692 |
),
|
1693 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1694 |
'version' => '5.4.8.0',
|
1695 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1696 |
),
|
1697 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1698 |
'version' => '5.4.8.0',
|
1699 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1700 |
),
|
1701 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1702 |
'version' => '5.4.8.0',
|
1703 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1704 |
),
|
1705 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1706 |
'version' => '5.4.8.0',
|
1707 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1708 |
),
|
1709 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1710 |
'version' => '5.4.8.0',
|
1711 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1712 |
),
|
1713 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1714 |
'version' => '5.4.8.0',
|
1715 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1716 |
),
|
1717 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1718 |
'version' => '5.4.8.0',
|
1719 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1720 |
),
|
1721 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1722 |
'version' => '5.4.8.0',
|
1723 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1724 |
),
|
1725 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1726 |
'version' => '5.4.8.0',
|
1727 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1728 |
),
|
1729 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1730 |
'version' => '5.4.8.0',
|
1731 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1732 |
),
|
1733 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1734 |
'version' => '5.4.8.0',
|
1735 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1736 |
),
|
1737 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1738 |
'version' => '5.4.8.0',
|
1739 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1740 |
),
|
1741 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1742 |
'version' => '5.4.8.0',
|
1743 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1744 |
),
|
1745 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1746 |
'version' => '5.4.8.0',
|
1747 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1748 |
),
|
1749 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1750 |
'version' => '5.4.8.0',
|
1751 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1752 |
),
|
1753 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1754 |
'version' => '5.4.8.0',
|
1755 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1756 |
),
|
1757 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1758 |
'version' => '5.4.8.0',
|
1759 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1760 |
),
|
1761 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1762 |
'version' => '5.4.8.0',
|
1763 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1764 |
),
|
1765 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1766 |
'version' => '5.4.8.0',
|
1767 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1768 |
),
|
1769 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1770 |
'version' => '5.4.8.0',
|
1771 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1772 |
),
|
1773 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1774 |
'version' => '5.4.8.0',
|
1775 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1776 |
),
|
1777 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1778 |
'version' => '5.4.8.0',
|
1779 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1780 |
),
|
1781 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1782 |
'version' => '5.4.8.0',
|
1783 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1784 |
),
|
1785 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1786 |
'version' => '5.4.8.0',
|
1787 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1788 |
),
|
1789 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1790 |
'version' => '5.4.8.0',
|
1791 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1792 |
),
|
1793 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1794 |
'version' => '5.4.8.0',
|
1795 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1796 |
),
|
1797 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1798 |
'version' => '5.4.8.0',
|
1799 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1800 |
),
|
1801 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1802 |
'version' => '5.4.8.0',
|
1803 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1804 |
),
|
1805 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1806 |
'version' => '5.4.8.0',
|
1807 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1808 |
),
|
1809 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1810 |
'version' => '5.4.8.0',
|
1811 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1812 |
),
|
1813 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1814 |
'version' => '5.4.8.0',
|
1815 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1816 |
),
|
1817 |
'Symfony\\Component\\Validator\\Constraints\\Optional' => array(
|
1818 |
'version' => '5.4.8.0',
|
1819 |
'path' => $vendorDir . '/symfony/validator/Constraints/Optional.php'
|
1820 |
),
|
1821 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1822 |
'version' => '5.4.8.0',
|
1823 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1824 |
),
|
1825 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1826 |
'version' => '5.4.8.0',
|
1827 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1828 |
),
|
1829 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1830 |
'version' => '5.4.8.0',
|
1831 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1832 |
),
|
1833 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1834 |
'version' => '5.4.8.0',
|
1835 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1836 |
),
|
1837 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1838 |
'version' => '5.4.8.0',
|
1839 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1840 |
),
|
1841 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1842 |
'version' => '5.4.8.0',
|
1843 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1844 |
),
|
1845 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1846 |
'version' => '5.4.8.0',
|
1847 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1848 |
),
|
1849 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1850 |
'version' => '5.4.8.0',
|
1851 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1852 |
),
|
1853 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1854 |
'version' => '5.4.8.0',
|
1855 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1856 |
),
|
1857 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1858 |
'version' => '5.4.8.0',
|
1859 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1860 |
),
|
1861 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1862 |
'version' => '5.4.8.0',
|
1863 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1864 |
),
|
1865 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1866 |
'version' => '5.4.8.0',
|
1867 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1868 |
),
|
1869 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1870 |
'version' => '5.4.8.0',
|
1871 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1872 |
),
|
1873 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1874 |
'version' => '5.4.8.0',
|
1875 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1876 |
),
|
1877 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1878 |
'version' => '5.4.8.0',
|
1879 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1880 |
),
|
1881 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1882 |
'version' => '5.4.8.0',
|
1883 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1884 |
),
|
1885 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1886 |
'version' => '5.4.8.0',
|
1887 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1888 |
),
|
1889 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1890 |
'version' => '5.4.8.0',
|
1891 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1892 |
),
|
1893 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1894 |
'version' => '5.4.8.0',
|
1895 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1896 |
),
|
1897 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1898 |
'version' => '5.4.8.0',
|
1899 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1900 |
),
|
1901 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1902 |
'version' => '5.4.8.0',
|
1903 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1904 |
),
|
1905 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1906 |
'version' => '5.4.8.0',
|
1907 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1908 |
),
|
1909 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1910 |
'version' => '5.4.8.0',
|
1911 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1912 |
),
|
1913 |
-
'Symfony\\Component\\Validator\\Constraints\\
|
1914 |
'version' => '5.4.8.0',
|
1915 |
-
'path' => $vendorDir . '/symfony/validator/Constraints/
|
1916 |
),
|
1917 |
-
'Symfony\\Component\\Validator\\
|
1918 |
'version' => '5.4.8.0',
|
1919 |
-
'path' => $vendorDir . '/symfony/validator/
|
1920 |
),
|
1921 |
-
'Symfony\\Component\\Validator\\
|
1922 |
'version' => '5.4.8.0',
|
1923 |
-
'path' => $vendorDir . '/symfony/validator/
|
1924 |
),
|
1925 |
-
'Symfony\\Component\\Validator\\
|
1926 |
'version' => '5.4.8.0',
|
1927 |
-
'path' => $vendorDir . '/symfony/validator/
|
1928 |
),
|
1929 |
-
'Symfony\\Component\\Validator\\
|
1930 |
'version' => '5.4.8.0',
|
1931 |
-
'path' => $vendorDir . '/symfony/validator/
|
1932 |
),
|
1933 |
-
'Symfony\\Component\\Validator\\
|
1934 |
'version' => '5.4.8.0',
|
1935 |
-
'path' => $vendorDir . '/symfony/validator/
|
1936 |
),
|
1937 |
-
'Symfony\\Component\\Validator\\
|
1938 |
'version' => '5.4.8.0',
|
1939 |
-
'path' => $vendorDir . '/symfony/validator/
|
1940 |
),
|
1941 |
-
'Symfony\\Component\\Validator\\
|
1942 |
'version' => '5.4.8.0',
|
1943 |
-
'path' => $vendorDir . '/symfony/validator/
|
1944 |
),
|
1945 |
-
'Symfony\\Component\\Validator\\
|
1946 |
'version' => '5.4.8.0',
|
1947 |
-
'path' => $vendorDir . '/symfony/validator/
|
1948 |
),
|
1949 |
-
'Symfony\\Component\\Validator\\
|
1950 |
'version' => '5.4.8.0',
|
1951 |
-
'path' => $vendorDir . '/symfony/validator/
|
1952 |
),
|
1953 |
-
'Symfony\\Component\\Validator\\
|
1954 |
'version' => '5.4.8.0',
|
1955 |
-
'path' => $vendorDir . '/symfony/validator/
|
1956 |
),
|
1957 |
-
'Symfony\\Component\\Validator\\
|
1958 |
'version' => '5.4.8.0',
|
1959 |
-
'path' => $vendorDir . '/symfony/validator/
|
1960 |
),
|
1961 |
-
'Symfony\\Component\\Validator\\
|
1962 |
'version' => '5.4.8.0',
|
1963 |
-
'path' => $vendorDir . '/symfony/validator/
|
1964 |
),
|
1965 |
-
'Symfony\\Component\\Validator\\
|
1966 |
'version' => '5.4.8.0',
|
1967 |
-
'path' => $vendorDir . '/symfony/validator/
|
1968 |
),
|
1969 |
-
'Symfony\\Component\\Validator\\
|
1970 |
'version' => '5.4.8.0',
|
1971 |
-
'path' => $vendorDir . '/symfony/validator/
|
1972 |
),
|
1973 |
-
'Symfony\\Component\\Validator\\
|
1974 |
'version' => '5.4.8.0',
|
1975 |
-
'path' => $vendorDir . '/symfony/validator/
|
1976 |
),
|
1977 |
-
'Symfony\\Component\\Validator\\
|
1978 |
'version' => '5.4.8.0',
|
1979 |
-
'path' => $vendorDir . '/symfony/validator/
|
1980 |
),
|
1981 |
-
'Symfony\\Component\\Validator\\
|
1982 |
'version' => '5.4.8.0',
|
1983 |
-
'path' => $vendorDir . '/symfony/validator/
|
1984 |
),
|
1985 |
-
'Symfony\\Component\\Validator\\
|
1986 |
'version' => '5.4.8.0',
|
1987 |
-
'path' => $vendorDir . '/symfony/validator/
|
1988 |
),
|
1989 |
-
'Symfony\\Component\\Validator\\
|
1990 |
'version' => '5.4.8.0',
|
1991 |
-
'path' => $vendorDir . '/symfony/validator/
|
1992 |
),
|
1993 |
-
'Symfony\\Component\\Validator\\
|
1994 |
'version' => '5.4.8.0',
|
1995 |
-
'path' => $vendorDir . '/symfony/validator/
|
1996 |
),
|
1997 |
-
'Symfony\\Component\\Validator\\
|
1998 |
'version' => '5.4.8.0',
|
1999 |
-
'path' => $vendorDir . '/symfony/validator/
|
2000 |
),
|
2001 |
-
'Symfony\\Component\\Validator\\
|
2002 |
'version' => '5.4.8.0',
|
2003 |
-
'path' => $vendorDir . '/symfony/validator/
|
2004 |
),
|
2005 |
-
'Symfony\\Component\\Validator\\
|
2006 |
'version' => '5.4.8.0',
|
2007 |
-
'path' => $vendorDir . '/symfony/validator/
|
2008 |
),
|
2009 |
-
'Symfony\\Component\\Validator\\
|
2010 |
'version' => '5.4.8.0',
|
2011 |
-
'path' => $vendorDir . '/symfony/validator/
|
2012 |
),
|
2013 |
-
'Symfony\\Component\\Validator\\
|
2014 |
'version' => '5.4.8.0',
|
2015 |
-
'path' => $vendorDir . '/symfony/validator/
|
2016 |
),
|
2017 |
-
'Symfony\\Component\\Validator\\
|
2018 |
'version' => '5.4.8.0',
|
2019 |
-
'path' => $vendorDir . '/symfony/validator/
|
2020 |
),
|
2021 |
-
'Symfony\\Component\\Validator\\
|
2022 |
'version' => '5.4.8.0',
|
2023 |
-
'path' => $vendorDir . '/symfony/validator/
|
2024 |
),
|
2025 |
-
'Symfony\\Component\\Validator\\
|
2026 |
'version' => '5.4.8.0',
|
2027 |
-
'path' => $vendorDir . '/symfony/validator/
|
2028 |
),
|
2029 |
-
'Symfony\\Component\\Validator\\
|
2030 |
'version' => '5.4.8.0',
|
2031 |
-
'path' => $vendorDir . '/symfony/validator/
|
2032 |
),
|
2033 |
-
'Symfony\\Component\\Validator\\
|
2034 |
'version' => '5.4.8.0',
|
2035 |
-
'path' => $vendorDir . '/symfony/validator/
|
2036 |
),
|
2037 |
-
'Symfony\\Component\\Validator\\
|
2038 |
'version' => '5.4.8.0',
|
2039 |
-
'path' => $vendorDir . '/symfony/validator/
|
2040 |
),
|
2041 |
-
'Symfony\\Component\\Validator\\
|
2042 |
'version' => '5.4.8.0',
|
2043 |
-
'path' => $vendorDir . '/symfony/validator/
|
2044 |
),
|
2045 |
-
'Symfony\\Component\\Validator\\
|
2046 |
'version' => '5.4.8.0',
|
2047 |
-
'path' => $vendorDir . '/symfony/validator/
|
2048 |
),
|
2049 |
-
'Symfony\\Component\\Validator\\
|
2050 |
'version' => '5.4.8.0',
|
2051 |
-
'path' => $vendorDir . '/symfony/validator/
|
2052 |
),
|
2053 |
-
'Symfony\\Component\\Validator\\
|
2054 |
'version' => '5.4.8.0',
|
2055 |
-
'path' => $vendorDir . '/symfony/validator/
|
2056 |
),
|
2057 |
-
'Symfony\\Component\\Validator\\
|
2058 |
'version' => '5.4.8.0',
|
2059 |
-
'path' => $vendorDir . '/symfony/validator/
|
2060 |
),
|
2061 |
-
'Symfony\\Component\\Validator\\
|
2062 |
'version' => '5.4.8.0',
|
2063 |
-
'path' => $vendorDir . '/symfony/validator/
|
2064 |
),
|
2065 |
-
'Symfony\\Component\\Validator\\
|
2066 |
'version' => '5.4.8.0',
|
2067 |
-
'path' => $vendorDir . '/symfony/validator/
|
2068 |
),
|
2069 |
-
'Symfony\\Component\\Validator\\
|
2070 |
'version' => '5.4.8.0',
|
2071 |
-
'path' => $vendorDir . '/symfony/validator/
|
2072 |
),
|
2073 |
-
'Symfony\\Component\\Validator\\
|
2074 |
'version' => '5.4.8.0',
|
2075 |
-
'path' => $vendorDir . '/symfony/validator/
|
2076 |
),
|
2077 |
-
'Symfony\\Component\\Validator\\
|
2078 |
'version' => '5.4.8.0',
|
2079 |
-
'path' => $vendorDir . '/symfony/validator/
|
2080 |
),
|
2081 |
'Symfony\\Component\\Validator\\Util\\PropertyPath' => array(
|
2082 |
'version' => '5.4.8.0',
|
2083 |
'path' => $vendorDir . '/symfony/validator/Util/PropertyPath.php'
|
2084 |
),
|
2085 |
-
'Symfony\\Component\\Validator\\ConstraintValidatorFactoryInterface' => array(
|
2086 |
-
'version' => '5.4.8.0',
|
2087 |
-
'path' => $vendorDir . '/symfony/validator/ConstraintValidatorFactoryInterface.php'
|
2088 |
-
),
|
2089 |
'Symfony\\Component\\Validator\\ConstraintViolation' => array(
|
2090 |
'version' => '5.4.8.0',
|
2091 |
'path' => $vendorDir . '/symfony/validator/ConstraintViolation.php'
|
2092 |
),
|
2093 |
-
'Symfony\\Component\\Validator\\Constraint' => array(
|
2094 |
-
'version' => '5.4.8.0',
|
2095 |
-
'path' => $vendorDir . '/symfony/validator/Constraint.php'
|
2096 |
-
),
|
2097 |
-
'Symfony\\Component\\Validator\\GroupSequenceProviderInterface' => array(
|
2098 |
-
'version' => '5.4.8.0',
|
2099 |
-
'path' => $vendorDir . '/symfony/validator/GroupSequenceProviderInterface.php'
|
2100 |
-
),
|
2101 |
'Symfony\\Component\\Validator\\ConstraintValidatorFactory' => array(
|
2102 |
'version' => '5.4.8.0',
|
2103 |
'path' => $vendorDir . '/symfony/validator/ConstraintValidatorFactory.php'
|
2104 |
),
|
2105 |
-
'Symfony\\Component\\Validator\\
|
2106 |
'version' => '5.4.8.0',
|
2107 |
-
'path' => $vendorDir . '/symfony/validator/
|
2108 |
),
|
2109 |
-
'Symfony\\Component\\Validator\\
|
2110 |
'version' => '5.4.8.0',
|
2111 |
-
'path' => $vendorDir . '/symfony/validator/
|
2112 |
),
|
2113 |
-
'Symfony\\Component\\Validator\\
|
2114 |
'version' => '5.4.8.0',
|
2115 |
-
'path' => $vendorDir . '/symfony/validator/
|
2116 |
),
|
2117 |
-
'Symfony\\Component\\Validator\\
|
2118 |
'version' => '5.4.8.0',
|
2119 |
-
'path' => $vendorDir . '/symfony/validator/
|
2120 |
),
|
2121 |
-
'Symfony\\Component\\Validator\\
|
2122 |
'version' => '5.4.8.0',
|
2123 |
-
'path' => $vendorDir . '/symfony/validator/
|
2124 |
),
|
2125 |
-
'Symfony\\Component\\Validator\\
|
2126 |
'version' => '5.4.8.0',
|
2127 |
-
'path' => $vendorDir . '/symfony/validator/
|
2128 |
),
|
2129 |
-
'Symfony\\Component\\Validator\\
|
2130 |
'version' => '5.4.8.0',
|
2131 |
-
'path' => $vendorDir . '/symfony/validator/
|
2132 |
),
|
2133 |
-
'Symfony\\Component\\Validator\\
|
2134 |
'version' => '5.4.8.0',
|
2135 |
-
'path' => $vendorDir . '/symfony/validator/
|
2136 |
),
|
2137 |
-
'Symfony\\Component\\Validator\\
|
2138 |
'version' => '5.4.8.0',
|
2139 |
-
'path' => $vendorDir . '/symfony/validator/
|
2140 |
),
|
2141 |
-
'Symfony\\Component\\Validator\\
|
2142 |
'version' => '5.4.8.0',
|
2143 |
-
'path' => $vendorDir . '/symfony/validator/
|
2144 |
),
|
2145 |
-
'Symfony\\Component\\Validator\\
|
2146 |
'version' => '5.4.8.0',
|
2147 |
-
'path' => $vendorDir . '/symfony/validator/
|
2148 |
),
|
2149 |
-
'Symfony\\Component\\Validator\\
|
2150 |
'version' => '5.4.8.0',
|
2151 |
-
'path' => $vendorDir . '/symfony/validator/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2152 |
),
|
2153 |
'Symfony\\Component\\Validator\\Exception\\ConstraintDefinitionException' => array(
|
2154 |
'version' => '5.4.8.0',
|
2155 |
'path' => $vendorDir . '/symfony/validator/Exception/ConstraintDefinitionException.php'
|
2156 |
),
|
2157 |
-
'Symfony\\Component\\Validator\\Exception\\
|
2158 |
'version' => '5.4.8.0',
|
2159 |
-
'path' => $vendorDir . '/symfony/validator/Exception/
|
2160 |
),
|
2161 |
-
'Symfony\\Component\\Validator\\Exception\\
|
2162 |
'version' => '5.4.8.0',
|
2163 |
-
'path' => $vendorDir . '/symfony/validator/Exception/
|
2164 |
),
|
2165 |
'Symfony\\Component\\Validator\\Exception\\LogicException' => array(
|
2166 |
'version' => '5.4.8.0',
|
2167 |
'path' => $vendorDir . '/symfony/validator/Exception/LogicException.php'
|
2168 |
),
|
2169 |
-
'Symfony\\Component\\Validator\\Exception\\
|
2170 |
'version' => '5.4.8.0',
|
2171 |
-
'path' => $vendorDir . '/symfony/validator/Exception/
|
2172 |
),
|
2173 |
'Symfony\\Component\\Validator\\Exception\\UnsupportedMetadataException' => array(
|
2174 |
'version' => '5.4.8.0',
|
2175 |
'path' => $vendorDir . '/symfony/validator/Exception/UnsupportedMetadataException.php'
|
2176 |
),
|
2177 |
-
'Symfony\\Component\\Validator\\Exception\\ExceptionInterface' => array(
|
2178 |
-
'version' => '5.4.8.0',
|
2179 |
-
'path' => $vendorDir . '/symfony/validator/Exception/ExceptionInterface.php'
|
2180 |
-
),
|
2181 |
'Symfony\\Component\\Validator\\Exception\\ValidationFailedException' => array(
|
2182 |
'version' => '5.4.8.0',
|
2183 |
'path' => $vendorDir . '/symfony/validator/Exception/ValidationFailedException.php'
|
2184 |
),
|
2185 |
-
'Symfony\\Component\\Validator\\
|
2186 |
'version' => '5.4.8.0',
|
2187 |
-
'path' => $vendorDir . '/symfony/validator/
|
2188 |
),
|
2189 |
-
'Symfony\\Component\\Validator\\
|
2190 |
'version' => '5.4.8.0',
|
2191 |
-
'path' => $vendorDir . '/symfony/validator/
|
2192 |
),
|
2193 |
-
'Symfony\\Component\\Validator\\
|
2194 |
'version' => '5.4.8.0',
|
2195 |
-
'path' => $vendorDir . '/symfony/validator/
|
2196 |
),
|
2197 |
-
'Symfony\\Component\\Validator\\
|
2198 |
'version' => '5.4.8.0',
|
2199 |
-
'path' => $vendorDir . '/symfony/validator/
|
2200 |
),
|
2201 |
-
'Symfony\\Component\\Validator\\
|
2202 |
'version' => '5.4.8.0',
|
2203 |
-
'path' => $vendorDir . '/symfony/validator/
|
2204 |
),
|
2205 |
-
'Symfony\\Component\\Validator\\
|
2206 |
'version' => '5.4.8.0',
|
2207 |
-
'path' => $vendorDir . '/symfony/validator/
|
2208 |
),
|
2209 |
-
'Symfony\\Component\\Validator\\
|
2210 |
'version' => '5.4.8.0',
|
2211 |
-
'path' => $vendorDir . '/symfony/validator/
|
2212 |
),
|
2213 |
-
'Symfony\\Component\\Validator\\
|
2214 |
'version' => '5.4.8.0',
|
2215 |
-
'path' => $vendorDir . '/symfony/validator/
|
2216 |
),
|
2217 |
-
'Symfony\\Component\\Validator\\
|
2218 |
'version' => '5.4.8.0',
|
2219 |
-
'path' => $vendorDir . '/symfony/validator/
|
2220 |
),
|
2221 |
-
'
|
|
|
|
|
|
|
|
|
2222 |
'version' => '1.1.4.0',
|
2223 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2224 |
),
|
2225 |
-
'Psr\\Log\\
|
2226 |
'version' => '1.1.4.0',
|
2227 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2228 |
),
|
2229 |
-
'Psr\\Log\\
|
2230 |
'version' => '1.1.4.0',
|
2231 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2232 |
),
|
2233 |
-
'Psr\\Log\\
|
2234 |
'version' => '1.1.4.0',
|
2235 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2236 |
),
|
2237 |
-
'Psr\\Log\\
|
2238 |
'version' => '1.1.4.0',
|
2239 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2240 |
),
|
2241 |
-
'Psr\\Log\\
|
2242 |
'version' => '1.1.4.0',
|
2243 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2244 |
),
|
2245 |
-
'Psr\\Log\\
|
2246 |
'version' => '1.1.4.0',
|
2247 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2248 |
),
|
2249 |
-
'Psr\\Log\\
|
2250 |
'version' => '1.1.4.0',
|
2251 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2252 |
),
|
2253 |
-
'Psr\\Log\\
|
2254 |
'version' => '1.1.4.0',
|
2255 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2256 |
),
|
2257 |
-
'Psr\\Log\\
|
2258 |
'version' => '1.1.4.0',
|
2259 |
-
'path' => $vendorDir . '/psr/log/Psr/Log/
|
2260 |
),
|
2261 |
'Psr\\Log\\AbstractLogger' => array(
|
2262 |
'version' => '1.1.4.0',
|
2263 |
'path' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php'
|
2264 |
),
|
2265 |
-
'Psr\\Http\\Message\\ResponseFactoryInterface' => array(
|
2266 |
-
'version' => '1.0.1.0',
|
2267 |
-
'path' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php'
|
2268 |
-
),
|
2269 |
-
'Psr\\Http\\Message\\StreamFactoryInterface' => array(
|
2270 |
-
'version' => '1.0.1.0',
|
2271 |
-
'path' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php'
|
2272 |
-
),
|
2273 |
'Psr\\Http\\Message\\UploadedFileFactoryInterface' => array(
|
2274 |
'version' => '1.0.1.0',
|
2275 |
'path' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php'
|
2276 |
),
|
|
|
|
|
|
|
|
|
2277 |
'Psr\\Http\\Message\\UriFactoryInterface' => array(
|
2278 |
'version' => '1.0.1.0',
|
2279 |
'path' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php'
|
2280 |
),
|
2281 |
-
'Psr\\Http\\Message\\
|
2282 |
'version' => '1.0.1.0',
|
2283 |
-
'path' => $vendorDir . '/psr/http-factory/src/
|
2284 |
),
|
2285 |
-
'Psr\\Http\\Message\\
|
2286 |
'version' => '1.0.1.0',
|
2287 |
-
'path' => $vendorDir . '/psr/http-factory/src/
|
2288 |
),
|
2289 |
-
'Psr\\Http\\Message\\
|
2290 |
'version' => '1.0.1.0',
|
2291 |
-
'path' => $vendorDir . '/psr/http-
|
2292 |
),
|
2293 |
-
'Psr\\Http\\Message\\
|
2294 |
'version' => '1.0.1.0',
|
2295 |
-
'path' => $vendorDir . '/psr/http-message/src/
|
2296 |
),
|
2297 |
'Psr\\Http\\Message\\StreamInterface' => array(
|
2298 |
'version' => '1.0.1.0',
|
2299 |
'path' => $vendorDir . '/psr/http-message/src/StreamInterface.php'
|
2300 |
),
|
|
|
|
|
|
|
|
|
2301 |
'Psr\\Http\\Message\\UploadedFileInterface' => array(
|
2302 |
'version' => '1.0.1.0',
|
2303 |
'path' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php'
|
2304 |
),
|
2305 |
-
'Psr\\Http\\Message\\
|
2306 |
'version' => '1.0.1.0',
|
2307 |
-
'path' => $vendorDir . '/psr/http-message/src/
|
2308 |
),
|
2309 |
-
'Psr\\Http\\Message\\
|
2310 |
'version' => '1.0.1.0',
|
2311 |
-
'path' => $vendorDir . '/psr/http-message/src/
|
2312 |
),
|
2313 |
-
'Psr\\Http\\Message\\
|
2314 |
'version' => '1.0.1.0',
|
2315 |
-
'path' => $vendorDir . '/psr/http-message/src/
|
2316 |
),
|
2317 |
'Psr\\Http\\Client\\NetworkExceptionInterface' => array(
|
2318 |
'version' => '1.0.1.0',
|
@@ -2330,6 +2330,10 @@ return array(
|
|
2330 |
'version' => '1.0.1.0',
|
2331 |
'path' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php'
|
2332 |
),
|
|
|
|
|
|
|
|
|
2333 |
'Psr\\Container\\NotFoundExceptionInterface' => array(
|
2334 |
'version' => '1.1.1.0',
|
2335 |
'path' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php'
|
@@ -2338,13 +2342,9 @@ return array(
|
|
2338 |
'version' => '1.1.1.0',
|
2339 |
'path' => $vendorDir . '/psr/container/src/ContainerInterface.php'
|
2340 |
),
|
2341 |
-
'Psr\\
|
2342 |
-
'version' => '1.1.1.0',
|
2343 |
-
'path' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php'
|
2344 |
-
),
|
2345 |
-
'Psr\\Cache\\CacheItemPoolInterface' => array(
|
2346 |
'version' => '1.0.1.0',
|
2347 |
-
'path' => $vendorDir . '/psr/cache/src/
|
2348 |
),
|
2349 |
'Psr\\Cache\\CacheItemInterface' => array(
|
2350 |
'version' => '1.0.1.0',
|
@@ -2354,337 +2354,321 @@ return array(
|
|
2354 |
'version' => '1.0.1.0',
|
2355 |
'path' => $vendorDir . '/psr/cache/src/InvalidArgumentException.php'
|
2356 |
),
|
2357 |
-
'Psr\\Cache\\
|
2358 |
'version' => '1.0.1.0',
|
2359 |
-
'path' => $vendorDir . '/psr/cache/src/
|
2360 |
),
|
2361 |
-
'ParagonIE\\ConstantTime\\
|
2362 |
'version' => '2.5.0.0',
|
2363 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2364 |
),
|
2365 |
-
'ParagonIE\\ConstantTime\\
|
2366 |
'version' => '2.5.0.0',
|
2367 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2368 |
),
|
2369 |
-
'ParagonIE\\ConstantTime\\
|
2370 |
'version' => '2.5.0.0',
|
2371 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2372 |
),
|
2373 |
-
'ParagonIE\\ConstantTime\\
|
2374 |
'version' => '2.5.0.0',
|
2375 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2376 |
),
|
2377 |
-
'ParagonIE\\ConstantTime\\
|
2378 |
'version' => '2.5.0.0',
|
2379 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2380 |
),
|
2381 |
-
'ParagonIE\\ConstantTime\\
|
2382 |
'version' => '2.5.0.0',
|
2383 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2384 |
),
|
2385 |
-
'ParagonIE\\ConstantTime\\
|
2386 |
'version' => '2.5.0.0',
|
2387 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2388 |
),
|
2389 |
-
'ParagonIE\\ConstantTime\\
|
2390 |
'version' => '2.5.0.0',
|
2391 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2392 |
),
|
2393 |
-
'ParagonIE\\ConstantTime\\
|
2394 |
'version' => '2.5.0.0',
|
2395 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2396 |
),
|
2397 |
'ParagonIE\\ConstantTime\\RFC4648' => array(
|
2398 |
'version' => '2.5.0.0',
|
2399 |
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/RFC4648.php'
|
2400 |
),
|
2401 |
-
'ParagonIE\\ConstantTime\\
|
2402 |
'version' => '2.5.0.0',
|
2403 |
-
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/
|
2404 |
),
|
2405 |
-
'Monolog\\Handler\\
|
2406 |
'version' => '2.7.0.0',
|
2407 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2408 |
),
|
2409 |
-
'Monolog\\Handler\\
|
2410 |
'version' => '2.7.0.0',
|
2411 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2412 |
),
|
2413 |
-
'Monolog\\Handler\\
|
2414 |
'version' => '2.7.0.0',
|
2415 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2416 |
),
|
2417 |
-
'Monolog\\Handler\\
|
2418 |
'version' => '2.7.0.0',
|
2419 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2420 |
-
),
|
2421 |
-
'Monolog\\Handler\\WebRequestRecognizerTrait' => array(
|
2422 |
-
'version' => '2.7.0.0',
|
2423 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php'
|
2424 |
),
|
2425 |
-
'Monolog\\Handler\\
|
2426 |
'version' => '2.7.0.0',
|
2427 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2428 |
),
|
2429 |
-
'Monolog\\Handler\\
|
2430 |
'version' => '2.7.0.0',
|
2431 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2432 |
),
|
2433 |
-
'Monolog\\Handler\\
|
2434 |
'version' => '2.7.0.0',
|
2435 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2436 |
),
|
2437 |
-
'Monolog\\Handler\\
|
2438 |
'version' => '2.7.0.0',
|
2439 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2440 |
),
|
2441 |
-
'Monolog\\Handler\\
|
2442 |
'version' => '2.7.0.0',
|
2443 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2444 |
),
|
2445 |
-
'Monolog\\Handler\\
|
2446 |
'version' => '2.7.0.0',
|
2447 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2448 |
),
|
2449 |
-
'Monolog\\Handler\\
|
2450 |
'version' => '2.7.0.0',
|
2451 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2452 |
),
|
2453 |
'Monolog\\Handler\\OverflowHandler' => array(
|
2454 |
'version' => '2.7.0.0',
|
2455 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/OverflowHandler.php'
|
2456 |
),
|
2457 |
-
'Monolog\\Handler\\
|
2458 |
'version' => '2.7.0.0',
|
2459 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2460 |
),
|
2461 |
-
'Monolog\\Handler\\
|
2462 |
'version' => '2.7.0.0',
|
2463 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2464 |
),
|
2465 |
-
'Monolog\\Handler\\
|
2466 |
'version' => '2.7.0.0',
|
2467 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2468 |
),
|
2469 |
-
'Monolog\\Handler\\
|
2470 |
'version' => '2.7.0.0',
|
2471 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2472 |
),
|
2473 |
-
'Monolog\\Handler\\
|
2474 |
'version' => '2.7.0.0',
|
2475 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2476 |
),
|
2477 |
-
'Monolog\\Handler\\
|
2478 |
'version' => '2.7.0.0',
|
2479 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2480 |
),
|
2481 |
-
'Monolog\\Handler\\
|
2482 |
'version' => '2.7.0.0',
|
2483 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2484 |
),
|
2485 |
-
'Monolog\\Handler\\
|
2486 |
'version' => '2.7.0.0',
|
2487 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2488 |
),
|
2489 |
-
'Monolog\\Handler\\
|
2490 |
'version' => '2.7.0.0',
|
2491 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2492 |
),
|
2493 |
-
'Monolog\\Handler\\
|
2494 |
'version' => '2.7.0.0',
|
2495 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2496 |
),
|
2497 |
-
'Monolog\\Handler\\
|
2498 |
'version' => '2.7.0.0',
|
2499 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2500 |
),
|
2501 |
-
'Monolog\\Handler\\
|
2502 |
'version' => '2.7.0.0',
|
2503 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2504 |
),
|
2505 |
-
'Monolog\\Handler\\
|
2506 |
'version' => '2.7.0.0',
|
2507 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2508 |
),
|
2509 |
-
'Monolog\\Handler\\
|
2510 |
'version' => '2.7.0.0',
|
2511 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2512 |
),
|
2513 |
-
'Monolog\\Handler\\
|
2514 |
'version' => '2.7.0.0',
|
2515 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2516 |
),
|
2517 |
-
'Monolog\\Handler\\
|
2518 |
'version' => '2.7.0.0',
|
2519 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2520 |
),
|
2521 |
-
'Monolog\\Handler\\
|
2522 |
'version' => '2.7.0.0',
|
2523 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2524 |
),
|
2525 |
-
'Monolog\\Handler\\
|
2526 |
'version' => '2.7.0.0',
|
2527 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2528 |
),
|
2529 |
'Monolog\\Handler\\SqsHandler' => array(
|
2530 |
'version' => '2.7.0.0',
|
2531 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SqsHandler.php'
|
2532 |
),
|
2533 |
-
'Monolog\\Handler\\
|
2534 |
-
'version' => '2.7.0.0',
|
2535 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php'
|
2536 |
-
),
|
2537 |
-
'Monolog\\Handler\\FallbackGroupHandler' => array(
|
2538 |
'version' => '2.7.0.0',
|
2539 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2540 |
),
|
2541 |
-
'Monolog\\Handler\\
|
2542 |
'version' => '2.7.0.0',
|
2543 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2544 |
),
|
2545 |
-
'Monolog\\Handler\\
|
2546 |
'version' => '2.7.0.0',
|
2547 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2548 |
),
|
2549 |
-
'Monolog\\Handler\\
|
2550 |
'version' => '2.7.0.0',
|
2551 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2552 |
),
|
2553 |
-
'Monolog\\Handler\\
|
2554 |
'version' => '2.7.0.0',
|
2555 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2556 |
),
|
2557 |
-
'Monolog\\Handler\\
|
2558 |
'version' => '2.7.0.0',
|
2559 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2560 |
),
|
2561 |
-
'Monolog\\Handler\\
|
2562 |
'version' => '2.7.0.0',
|
2563 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2564 |
),
|
2565 |
-
'Monolog\\Handler\\
|
2566 |
'version' => '2.7.0.0',
|
2567 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2568 |
),
|
2569 |
-
'Monolog\\Handler\\
|
2570 |
'version' => '2.7.0.0',
|
2571 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2572 |
),
|
2573 |
-
'Monolog\\Handler\\
|
2574 |
'version' => '2.7.0.0',
|
2575 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2576 |
),
|
2577 |
-
'Monolog\\Handler\\
|
2578 |
'version' => '2.7.0.0',
|
2579 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2580 |
),
|
2581 |
-
'Monolog\\Handler\\
|
2582 |
'version' => '2.7.0.0',
|
2583 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2584 |
),
|
2585 |
'Monolog\\Handler\\FirePHPHandler' => array(
|
2586 |
'version' => '2.7.0.0',
|
2587 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php'
|
2588 |
),
|
2589 |
-
'Monolog\\Handler\\
|
2590 |
'version' => '2.7.0.0',
|
2591 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2592 |
),
|
2593 |
-
'Monolog\\Handler\\
|
2594 |
'version' => '2.7.0.0',
|
2595 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2596 |
),
|
2597 |
'Monolog\\Handler\\DynamoDbHandler' => array(
|
2598 |
'version' => '2.7.0.0',
|
2599 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php'
|
2600 |
),
|
2601 |
-
'Monolog\\Handler\\FormattableHandlerInterface' => array(
|
2602 |
-
'version' => '2.7.0.0',
|
2603 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php'
|
2604 |
-
),
|
2605 |
'Monolog\\Handler\\RedisPubSubHandler' => array(
|
2606 |
'version' => '2.7.0.0',
|
2607 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php'
|
2608 |
),
|
2609 |
-
'Monolog\\Handler\\MailHandler' => array(
|
2610 |
-
'version' => '2.7.0.0',
|
2611 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MailHandler.php'
|
2612 |
-
),
|
2613 |
'Monolog\\Handler\\StreamHandler' => array(
|
2614 |
'version' => '2.7.0.0',
|
2615 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php'
|
2616 |
),
|
2617 |
-
'Monolog\\Handler\\
|
2618 |
'version' => '2.7.0.0',
|
2619 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2620 |
),
|
2621 |
-
'Monolog\\Handler\\
|
2622 |
'version' => '2.7.0.0',
|
2623 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2624 |
),
|
2625 |
-
'Monolog\\Handler\\
|
2626 |
'version' => '2.7.0.0',
|
2627 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2628 |
),
|
2629 |
-
'Monolog\\Handler\\
|
2630 |
'version' => '2.7.0.0',
|
2631 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2632 |
),
|
2633 |
-
'Monolog\\Handler\\
|
2634 |
'version' => '2.7.0.0',
|
2635 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2636 |
),
|
2637 |
-
'Monolog\\Handler\\
|
2638 |
'version' => '2.7.0.0',
|
2639 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2640 |
),
|
2641 |
-
'Monolog\\Handler\\
|
2642 |
'version' => '2.7.0.0',
|
2643 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2644 |
),
|
2645 |
-
'Monolog\\Handler\\
|
2646 |
'version' => '2.7.0.0',
|
2647 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2648 |
),
|
2649 |
-
'Monolog\\Handler\\
|
2650 |
'version' => '2.7.0.0',
|
2651 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2652 |
),
|
2653 |
-
'Monolog\\Handler\\
|
2654 |
'version' => '2.7.0.0',
|
2655 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2656 |
),
|
2657 |
-
'Monolog\\Handler\\
|
2658 |
'version' => '2.7.0.0',
|
2659 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2660 |
),
|
2661 |
-
'Monolog\\Handler\\
|
2662 |
'version' => '2.7.0.0',
|
2663 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2664 |
),
|
2665 |
-
'Monolog\\Handler\\
|
2666 |
'version' => '2.7.0.0',
|
2667 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2668 |
),
|
2669 |
-
'Monolog\\Handler\\
|
2670 |
'version' => '2.7.0.0',
|
2671 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2672 |
),
|
2673 |
-
'Monolog\\Handler\\
|
2674 |
'version' => '2.7.0.0',
|
2675 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2676 |
),
|
2677 |
-
'Monolog\\Handler\\
|
2678 |
'version' => '2.7.0.0',
|
2679 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2680 |
),
|
2681 |
-
'Monolog\\Handler\\
|
2682 |
'version' => '2.7.0.0',
|
2683 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2684 |
),
|
2685 |
-
'Monolog\\Handler\\
|
2686 |
'version' => '2.7.0.0',
|
2687 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2688 |
),
|
2689 |
'Monolog\\Handler\\RedisHandler' => array(
|
2690 |
'version' => '2.7.0.0',
|
@@ -2694,65 +2678,61 @@ return array(
|
|
2694 |
'version' => '2.7.0.0',
|
2695 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php'
|
2696 |
),
|
2697 |
-
'Monolog\\Handler\\
|
2698 |
'version' => '2.7.0.0',
|
2699 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/
|
2700 |
),
|
2701 |
-
'Monolog\\
|
2702 |
'version' => '2.7.0.0',
|
2703 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2704 |
),
|
2705 |
-
'Monolog\\
|
2706 |
'version' => '2.7.0.0',
|
2707 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2708 |
-
),
|
2709 |
-
'Monolog\\DateTimeImmutable' => array(
|
2710 |
-
'version' => '2.7.0.0',
|
2711 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/DateTimeImmutable.php'
|
2712 |
-
),
|
2713 |
-
'Monolog\\Test\\TestCase' => array(
|
2714 |
-
'version' => '2.7.0.0',
|
2715 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Test/TestCase.php'
|
2716 |
),
|
2717 |
-
'Monolog\\
|
2718 |
'version' => '2.7.0.0',
|
2719 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2720 |
),
|
2721 |
-
'Monolog\\
|
2722 |
'version' => '2.7.0.0',
|
2723 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2724 |
),
|
2725 |
-
'Monolog\\
|
2726 |
'version' => '2.7.0.0',
|
2727 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2728 |
),
|
2729 |
-
'Monolog\\
|
2730 |
'version' => '2.7.0.0',
|
2731 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2732 |
),
|
2733 |
-
'Monolog\\
|
2734 |
'version' => '2.7.0.0',
|
2735 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2736 |
),
|
2737 |
-
'Monolog\\
|
2738 |
'version' => '2.7.0.0',
|
2739 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2740 |
),
|
2741 |
-
'Monolog\\
|
2742 |
'version' => '2.7.0.0',
|
2743 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2744 |
),
|
2745 |
-
'Monolog\\
|
2746 |
'version' => '2.7.0.0',
|
2747 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2748 |
),
|
2749 |
'Monolog\\Processor\\GitProcessor' => array(
|
2750 |
'version' => '2.7.0.0',
|
2751 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php'
|
2752 |
),
|
2753 |
-
'Monolog\\Processor\\
|
2754 |
'version' => '2.7.0.0',
|
2755 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/
|
|
|
|
|
|
|
|
|
2756 |
),
|
2757 |
'Monolog\\Processor\\IntrospectionProcessor' => array(
|
2758 |
'version' => '2.7.0.0',
|
@@ -2762,129 +2742,145 @@ return array(
|
|
2762 |
'version' => '2.7.0.0',
|
2763 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php'
|
2764 |
),
|
2765 |
-
'Monolog\\Processor\\
|
2766 |
'version' => '2.7.0.0',
|
2767 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/
|
2768 |
),
|
2769 |
-
'Monolog\\Processor\\
|
2770 |
'version' => '2.7.0.0',
|
2771 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/
|
2772 |
),
|
2773 |
-
'Monolog\\
|
2774 |
'version' => '2.7.0.0',
|
2775 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2776 |
),
|
2777 |
-
'Monolog\\
|
2778 |
'version' => '2.7.0.0',
|
2779 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2780 |
),
|
2781 |
-
'Monolog\\
|
2782 |
'version' => '2.7.0.0',
|
2783 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2784 |
),
|
2785 |
-
'Monolog\\
|
2786 |
'version' => '2.7.0.0',
|
2787 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2788 |
),
|
2789 |
-
'Monolog\\
|
2790 |
'version' => '2.7.0.0',
|
2791 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2792 |
),
|
2793 |
-
'Monolog\\
|
2794 |
'version' => '2.7.0.0',
|
2795 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2796 |
),
|
2797 |
-
'Monolog\\Formatter\\
|
2798 |
'version' => '2.7.0.0',
|
2799 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2800 |
),
|
2801 |
-
'Monolog\\Formatter\\
|
2802 |
'version' => '2.7.0.0',
|
2803 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2804 |
),
|
2805 |
-
'Monolog\\Formatter\\
|
2806 |
'version' => '2.7.0.0',
|
2807 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2808 |
),
|
2809 |
'Monolog\\Formatter\\LogglyFormatter' => array(
|
2810 |
'version' => '2.7.0.0',
|
2811 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php'
|
2812 |
),
|
2813 |
-
'Monolog\\Formatter\\
|
2814 |
'version' => '2.7.0.0',
|
2815 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2816 |
),
|
2817 |
'Monolog\\Formatter\\ScalarFormatter' => array(
|
2818 |
'version' => '2.7.0.0',
|
2819 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php'
|
2820 |
),
|
2821 |
-
'Monolog\\Formatter\\
|
2822 |
-
'version' => '2.7.0.0',
|
2823 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php'
|
2824 |
-
),
|
2825 |
-
'Monolog\\Formatter\\ChromePHPFormatter' => array(
|
2826 |
'version' => '2.7.0.0',
|
2827 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2828 |
),
|
2829 |
'Monolog\\Formatter\\FluentdFormatter' => array(
|
2830 |
'version' => '2.7.0.0',
|
2831 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php'
|
2832 |
),
|
2833 |
-
'Monolog\\Formatter\\
|
2834 |
'version' => '2.7.0.0',
|
2835 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2836 |
),
|
2837 |
-
'Monolog\\Formatter\\
|
2838 |
'version' => '2.7.0.0',
|
2839 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2840 |
),
|
2841 |
-
'Monolog\\Formatter\\
|
2842 |
'version' => '2.7.0.0',
|
2843 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2844 |
),
|
2845 |
-
'Monolog\\Formatter\\
|
2846 |
'version' => '2.7.0.0',
|
2847 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/
|
2848 |
),
|
2849 |
-
'Monolog\\
|
2850 |
'version' => '2.7.0.0',
|
2851 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
2852 |
),
|
2853 |
-
'Monolog\\
|
2854 |
'version' => '2.7.0.0',
|
2855 |
-
'path' => $vendorDir . '/monolog/monolog/src/Monolog/
|
|
|
|
|
|
|
|
|
2856 |
),
|
2857 |
'Monolog\\Utils' => array(
|
2858 |
'version' => '2.7.0.0',
|
2859 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Utils.php'
|
2860 |
),
|
2861 |
-
'
|
2862 |
-
'version' => '
|
2863 |
-
'path' => $vendorDir . '/
|
2864 |
),
|
2865 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2866 |
'version' => '0.2.0.0',
|
2867 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2868 |
),
|
2869 |
-
'Grpc\\Gcp\\
|
2870 |
'version' => '0.2.0.0',
|
2871 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2872 |
),
|
2873 |
-
'Grpc\\Gcp\\
|
2874 |
'version' => '0.2.0.0',
|
2875 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2876 |
),
|
2877 |
-
'Grpc\\Gcp\\
|
2878 |
'version' => '0.2.0.0',
|
2879 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2880 |
),
|
2881 |
'Grpc\\Gcp\\GCPBidiStreamingCall' => array(
|
2882 |
'version' => '0.2.0.0',
|
2883 |
'path' => $vendorDir . '/google/grpc-gcp/src/GCPBidiStreamingCall.php'
|
2884 |
),
|
2885 |
-
'Grpc\\Gcp\\
|
2886 |
'version' => '0.2.0.0',
|
2887 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2888 |
),
|
2889 |
'Grpc\\Gcp\\GCPClientStreamCall' => array(
|
2890 |
'version' => '0.2.0.0',
|
@@ -2898,9845 +2894,9833 @@ return array(
|
|
2898 |
'version' => '0.2.0.0',
|
2899 |
'path' => $vendorDir . '/google/grpc-gcp/src/Config.php'
|
2900 |
),
|
2901 |
-
'Grpc\\Gcp\\GcpExtensionChannel' => array(
|
2902 |
-
'version' => '0.2.0.0',
|
2903 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/GcpExtensionChannel.php'
|
2904 |
-
),
|
2905 |
'Grpc\\Gcp\\GCPServerStreamCall' => array(
|
2906 |
'version' => '0.2.0.0',
|
2907 |
'path' => $vendorDir . '/google/grpc-gcp/src/GCPServerStreamCall.php'
|
2908 |
),
|
2909 |
-
'Grpc\\Gcp\\
|
2910 |
'version' => '0.2.0.0',
|
2911 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2912 |
),
|
2913 |
-
'Grpc\\Gcp\\
|
2914 |
'version' => '0.2.0.0',
|
2915 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2916 |
),
|
2917 |
-
'Grpc\\Gcp\\
|
2918 |
'version' => '0.2.0.0',
|
2919 |
-
'path' => $vendorDir . '/google/grpc-gcp/src/
|
2920 |
),
|
2921 |
-
'Grpc\\
|
2922 |
-
'version' => '
|
2923 |
-
'path' => $vendorDir . '/
|
|
|
|
|
|
|
|
|
2924 |
),
|
2925 |
'Grpc\\ServerCallWriter' => array(
|
2926 |
'version' => '1.42.0.0',
|
2927 |
'path' => $vendorDir . '/grpc/grpc/src/lib/ServerCallWriter.php'
|
2928 |
),
|
2929 |
-
'Grpc\\
|
2930 |
-
'version' => '1.42.0.0',
|
2931 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/UnaryCall.php'
|
2932 |
-
),
|
2933 |
-
'Grpc\\Interceptor' => array(
|
2934 |
-
'version' => '1.42.0.0',
|
2935 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/Interceptor.php'
|
2936 |
-
),
|
2937 |
-
'Grpc\\DefaultCallInvoker' => array(
|
2938 |
'version' => '1.42.0.0',
|
2939 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2940 |
),
|
2941 |
-
'Grpc\\
|
2942 |
'version' => '1.42.0.0',
|
2943 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2944 |
),
|
2945 |
-
'Grpc\\
|
2946 |
'version' => '1.42.0.0',
|
2947 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2948 |
),
|
2949 |
'Grpc\\ServerCallReader' => array(
|
2950 |
'version' => '1.42.0.0',
|
2951 |
'path' => $vendorDir . '/grpc/grpc/src/lib/ServerCallReader.php'
|
2952 |
),
|
2953 |
-
'Grpc\\
|
2954 |
'version' => '1.42.0.0',
|
2955 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2956 |
),
|
2957 |
-
'Grpc\\
|
2958 |
'version' => '1.42.0.0',
|
2959 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2960 |
),
|
2961 |
-
'Grpc\\
|
2962 |
'version' => '1.42.0.0',
|
2963 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2964 |
),
|
2965 |
-
'Grpc\\
|
2966 |
'version' => '1.42.0.0',
|
2967 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2968 |
),
|
2969 |
-
'Grpc\\
|
2970 |
'version' => '1.42.0.0',
|
2971 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2972 |
),
|
2973 |
'Grpc\\ClientStreamingCall' => array(
|
2974 |
'version' => '1.42.0.0',
|
2975 |
'path' => $vendorDir . '/grpc/grpc/src/lib/ClientStreamingCall.php'
|
2976 |
),
|
2977 |
-
'Grpc\\
|
2978 |
'version' => '1.42.0.0',
|
2979 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2980 |
),
|
2981 |
-
'Grpc\\
|
2982 |
'version' => '1.42.0.0',
|
2983 |
-
'path' => $vendorDir . '/grpc/grpc/src/lib/
|
2984 |
),
|
2985 |
-
'
|
2986 |
-
'version' => '
|
2987 |
-
'path' => $vendorDir . '/
|
2988 |
),
|
2989 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2990 |
'version' => '0.252.0.0',
|
2991 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
2992 |
),
|
2993 |
-
'Google\\Service\\
|
2994 |
'version' => '0.252.0.0',
|
2995 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
2996 |
),
|
2997 |
-
'Google\\Service\\
|
2998 |
'version' => '0.252.0.0',
|
2999 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
3000 |
),
|
3001 |
-
'Google\\Service\\
|
3002 |
'version' => '0.252.0.0',
|
3003 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
3004 |
),
|
3005 |
-
'Google\\Service\\
|
3006 |
'version' => '0.252.0.0',
|
3007 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
3008 |
),
|
3009 |
-
'Google\\Service\\
|
3010 |
'version' => '0.252.0.0',
|
3011 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
3012 |
),
|
3013 |
-
'Google\\Service\\
|
3014 |
'version' => '0.252.0.0',
|
3015 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
3016 |
),
|
3017 |
-
'Google\\Service\\
|
3018 |
'version' => '0.252.0.0',
|
3019 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
3020 |
),
|
3021 |
-
'Google\\Service\\ShoppingContent
|
3022 |
'version' => '0.252.0.0',
|
3023 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent
|
3024 |
),
|
3025 |
-
'Google\\Service\\ShoppingContent\\
|
3026 |
'version' => '0.252.0.0',
|
3027 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3028 |
),
|
3029 |
-
'Google\\Service\\ShoppingContent\\
|
3030 |
'version' => '0.252.0.0',
|
3031 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3032 |
),
|
3033 |
-
'Google\\Service\\ShoppingContent\\
|
3034 |
'version' => '0.252.0.0',
|
3035 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3036 |
),
|
3037 |
-
'Google\\Service\\ShoppingContent\\
|
3038 |
'version' => '0.252.0.0',
|
3039 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3040 |
),
|
3041 |
-
'Google\\Service\\ShoppingContent\\
|
3042 |
'version' => '0.252.0.0',
|
3043 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3044 |
),
|
3045 |
-
'Google\\Service\\ShoppingContent\\
|
3046 |
'version' => '0.252.0.0',
|
3047 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3048 |
),
|
3049 |
-
'Google\\Service\\ShoppingContent\\
|
3050 |
'version' => '0.252.0.0',
|
3051 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3052 |
),
|
3053 |
-
'Google\\Service\\ShoppingContent\\
|
3054 |
'version' => '0.252.0.0',
|
3055 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3056 |
),
|
3057 |
-
'Google\\Service\\ShoppingContent\\
|
3058 |
'version' => '0.252.0.0',
|
3059 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3060 |
),
|
3061 |
-
'Google\\Service\\ShoppingContent\\
|
3062 |
'version' => '0.252.0.0',
|
3063 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3064 |
),
|
3065 |
-
'Google\\Service\\ShoppingContent\\
|
3066 |
'version' => '0.252.0.0',
|
3067 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3068 |
),
|
3069 |
-
'Google\\Service\\ShoppingContent\\
|
3070 |
'version' => '0.252.0.0',
|
3071 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3072 |
),
|
3073 |
-
'Google\\Service\\ShoppingContent\\
|
3074 |
'version' => '0.252.0.0',
|
3075 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3076 |
),
|
3077 |
-
'Google\\Service\\ShoppingContent\\
|
3078 |
'version' => '0.252.0.0',
|
3079 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3080 |
),
|
3081 |
-
'Google\\Service\\ShoppingContent\\
|
3082 |
'version' => '0.252.0.0',
|
3083 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3084 |
),
|
3085 |
-
'Google\\Service\\ShoppingContent\\
|
3086 |
'version' => '0.252.0.0',
|
3087 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3088 |
),
|
3089 |
-
'Google\\Service\\ShoppingContent\\
|
3090 |
'version' => '0.252.0.0',
|
3091 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3092 |
),
|
3093 |
-
'Google\\Service\\ShoppingContent\\
|
3094 |
'version' => '0.252.0.0',
|
3095 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3096 |
),
|
3097 |
-
'Google\\Service\\ShoppingContent\\
|
3098 |
'version' => '0.252.0.0',
|
3099 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3100 |
),
|
3101 |
-
'Google\\Service\\ShoppingContent\\
|
3102 |
'version' => '0.252.0.0',
|
3103 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3104 |
),
|
3105 |
-
'Google\\Service\\ShoppingContent\\
|
3106 |
'version' => '0.252.0.0',
|
3107 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3108 |
),
|
3109 |
-
'Google\\Service\\ShoppingContent\\
|
3110 |
'version' => '0.252.0.0',
|
3111 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3112 |
),
|
3113 |
-
'Google\\Service\\ShoppingContent\\
|
3114 |
'version' => '0.252.0.0',
|
3115 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3116 |
),
|
3117 |
-
'Google\\Service\\ShoppingContent\\
|
3118 |
'version' => '0.252.0.0',
|
3119 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3120 |
),
|
3121 |
-
'Google\\Service\\ShoppingContent\\
|
3122 |
'version' => '0.252.0.0',
|
3123 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3124 |
),
|
3125 |
-
'Google\\Service\\ShoppingContent\\
|
3126 |
'version' => '0.252.0.0',
|
3127 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3128 |
),
|
3129 |
-
'Google\\Service\\ShoppingContent\\
|
3130 |
'version' => '0.252.0.0',
|
3131 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3132 |
),
|
3133 |
-
'Google\\Service\\ShoppingContent\\
|
3134 |
'version' => '0.252.0.0',
|
3135 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3136 |
),
|
3137 |
-
'Google\\Service\\ShoppingContent\\
|
3138 |
'version' => '0.252.0.0',
|
3139 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3140 |
),
|
3141 |
-
'Google\\Service\\ShoppingContent\\
|
3142 |
'version' => '0.252.0.0',
|
3143 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3144 |
),
|
3145 |
-
'Google\\Service\\ShoppingContent\\
|
3146 |
'version' => '0.252.0.0',
|
3147 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3148 |
),
|
3149 |
-
'Google\\Service\\ShoppingContent\\
|
3150 |
'version' => '0.252.0.0',
|
3151 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3152 |
),
|
3153 |
-
'Google\\Service\\ShoppingContent\\
|
3154 |
'version' => '0.252.0.0',
|
3155 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3156 |
),
|
3157 |
-
'Google\\Service\\ShoppingContent\\
|
3158 |
'version' => '0.252.0.0',
|
3159 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3160 |
),
|
3161 |
-
'Google\\Service\\ShoppingContent\\
|
3162 |
'version' => '0.252.0.0',
|
3163 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3164 |
),
|
3165 |
-
'Google\\Service\\ShoppingContent\\
|
3166 |
'version' => '0.252.0.0',
|
3167 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3168 |
),
|
3169 |
-
'Google\\Service\\ShoppingContent\\
|
3170 |
'version' => '0.252.0.0',
|
3171 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3172 |
),
|
3173 |
-
'Google\\Service\\ShoppingContent\\
|
3174 |
'version' => '0.252.0.0',
|
3175 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3176 |
),
|
3177 |
-
'Google\\Service\\ShoppingContent\\
|
3178 |
'version' => '0.252.0.0',
|
3179 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3180 |
),
|
3181 |
-
'Google\\Service\\ShoppingContent\\
|
3182 |
'version' => '0.252.0.0',
|
3183 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3184 |
),
|
3185 |
'Google\\Service\\ShoppingContent\\OrderShipment' => array(
|
3186 |
'version' => '0.252.0.0',
|
3187 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderShipment.php'
|
3188 |
),
|
|
|
|
|
|
|
|
|
3189 |
'Google\\Service\\ShoppingContent\\AccountStatus' => array(
|
3190 |
'version' => '0.252.0.0',
|
3191 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountStatus.php'
|
3192 |
),
|
3193 |
-
'Google\\Service\\ShoppingContent\\
|
3194 |
'version' => '0.252.0.0',
|
3195 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3196 |
),
|
3197 |
-
'Google\\Service\\ShoppingContent\\
|
3198 |
'version' => '0.252.0.0',
|
3199 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3200 |
),
|
3201 |
-
'Google\\Service\\ShoppingContent\\
|
3202 |
'version' => '0.252.0.0',
|
3203 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3204 |
),
|
3205 |
-
'Google\\Service\\ShoppingContent\\
|
3206 |
'version' => '0.252.0.0',
|
3207 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3208 |
),
|
3209 |
-
'Google\\Service\\ShoppingContent\\
|
3210 |
'version' => '0.252.0.0',
|
3211 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3212 |
),
|
3213 |
-
'Google\\Service\\ShoppingContent\\
|
3214 |
'version' => '0.252.0.0',
|
3215 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3216 |
),
|
3217 |
-
'Google\\Service\\ShoppingContent\\
|
3218 |
'version' => '0.252.0.0',
|
3219 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3220 |
),
|
3221 |
-
'Google\\Service\\ShoppingContent\\
|
3222 |
'version' => '0.252.0.0',
|
3223 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3224 |
),
|
3225 |
-
'Google\\Service\\ShoppingContent\\
|
3226 |
'version' => '0.252.0.0',
|
3227 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3228 |
),
|
3229 |
-
'Google\\Service\\ShoppingContent\\
|
3230 |
'version' => '0.252.0.0',
|
3231 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3232 |
),
|
3233 |
-
'Google\\Service\\ShoppingContent\\
|
3234 |
'version' => '0.252.0.0',
|
3235 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3236 |
),
|
3237 |
-
'Google\\Service\\ShoppingContent\\
|
3238 |
'version' => '0.252.0.0',
|
3239 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3240 |
),
|
3241 |
-
'Google\\Service\\ShoppingContent\\
|
3242 |
'version' => '0.252.0.0',
|
3243 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3244 |
),
|
3245 |
-
'Google\\Service\\ShoppingContent\\
|
3246 |
'version' => '0.252.0.0',
|
3247 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3248 |
),
|
3249 |
-
'Google\\Service\\ShoppingContent\\
|
3250 |
'version' => '0.252.0.0',
|
3251 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3252 |
),
|
3253 |
-
'Google\\Service\\ShoppingContent\\
|
3254 |
'version' => '0.252.0.0',
|
3255 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3256 |
),
|
3257 |
-
'Google\\Service\\ShoppingContent\\
|
3258 |
'version' => '0.252.0.0',
|
3259 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3260 |
),
|
3261 |
-
'Google\\Service\\ShoppingContent\\
|
3262 |
'version' => '0.252.0.0',
|
3263 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3264 |
),
|
3265 |
-
'Google\\Service\\ShoppingContent\\
|
3266 |
'version' => '0.252.0.0',
|
3267 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3268 |
),
|
3269 |
-
'Google\\Service\\ShoppingContent\\
|
3270 |
'version' => '0.252.0.0',
|
3271 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3272 |
),
|
3273 |
-
'Google\\Service\\ShoppingContent\\
|
3274 |
'version' => '0.252.0.0',
|
3275 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3276 |
),
|
3277 |
-
'Google\\Service\\ShoppingContent\\
|
3278 |
'version' => '0.252.0.0',
|
3279 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3280 |
),
|
3281 |
-
'Google\\Service\\ShoppingContent\\
|
3282 |
'version' => '0.252.0.0',
|
3283 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3284 |
),
|
3285 |
-
'Google\\Service\\ShoppingContent\\
|
3286 |
'version' => '0.252.0.0',
|
3287 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3288 |
),
|
3289 |
-
'Google\\Service\\ShoppingContent\\
|
3290 |
'version' => '0.252.0.0',
|
3291 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3292 |
),
|
3293 |
-
'Google\\Service\\ShoppingContent\\
|
3294 |
'version' => '0.252.0.0',
|
3295 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3296 |
),
|
3297 |
-
'Google\\Service\\ShoppingContent\\
|
3298 |
'version' => '0.252.0.0',
|
3299 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3300 |
),
|
3301 |
-
'Google\\Service\\ShoppingContent\\
|
3302 |
'version' => '0.252.0.0',
|
3303 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3304 |
),
|
3305 |
-
'Google\\Service\\ShoppingContent\\
|
3306 |
'version' => '0.252.0.0',
|
3307 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3308 |
),
|
3309 |
-
'Google\\Service\\ShoppingContent\\
|
3310 |
'version' => '0.252.0.0',
|
3311 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3312 |
),
|
3313 |
-
'Google\\Service\\ShoppingContent\\
|
3314 |
'version' => '0.252.0.0',
|
3315 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3316 |
),
|
3317 |
-
'Google\\Service\\ShoppingContent\\
|
3318 |
'version' => '0.252.0.0',
|
3319 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3320 |
),
|
3321 |
-
'Google\\Service\\ShoppingContent\\
|
3322 |
'version' => '0.252.0.0',
|
3323 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3324 |
),
|
3325 |
-
'Google\\Service\\ShoppingContent\\
|
3326 |
'version' => '0.252.0.0',
|
3327 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3328 |
),
|
3329 |
-
'Google\\Service\\ShoppingContent\\
|
3330 |
'version' => '0.252.0.0',
|
3331 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3332 |
),
|
3333 |
-
'Google\\Service\\ShoppingContent\\
|
3334 |
'version' => '0.252.0.0',
|
3335 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3336 |
),
|
3337 |
-
'Google\\Service\\ShoppingContent\\
|
3338 |
'version' => '0.252.0.0',
|
3339 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3340 |
),
|
3341 |
-
'Google\\Service\\ShoppingContent\\
|
3342 |
'version' => '0.252.0.0',
|
3343 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3344 |
),
|
3345 |
-
'Google\\Service\\ShoppingContent\\
|
3346 |
'version' => '0.252.0.0',
|
3347 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3348 |
),
|
3349 |
'Google\\Service\\ShoppingContent\\ReturnaddressCustomBatchRequestEntry' => array(
|
3350 |
'version' => '0.252.0.0',
|
3351 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnaddressCustomBatchRequestEntry.php'
|
3352 |
),
|
3353 |
-
'Google\\Service\\ShoppingContent\\
|
3354 |
'version' => '0.252.0.0',
|
3355 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3356 |
),
|
3357 |
-
'Google\\Service\\ShoppingContent\\
|
3358 |
'version' => '0.252.0.0',
|
3359 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3360 |
),
|
3361 |
-
'Google\\Service\\ShoppingContent\\
|
3362 |
'version' => '0.252.0.0',
|
3363 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3364 |
),
|
3365 |
-
'Google\\Service\\ShoppingContent\\
|
3366 |
'version' => '0.252.0.0',
|
3367 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3368 |
),
|
3369 |
-
'Google\\Service\\ShoppingContent\\
|
3370 |
'version' => '0.252.0.0',
|
3371 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3372 |
),
|
3373 |
-
'Google\\Service\\ShoppingContent\\
|
3374 |
'version' => '0.252.0.0',
|
3375 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3376 |
),
|
3377 |
-
'Google\\Service\\ShoppingContent\\
|
3378 |
'version' => '0.252.0.0',
|
3379 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3380 |
),
|
3381 |
-
'Google\\Service\\ShoppingContent\\
|
3382 |
'version' => '0.252.0.0',
|
3383 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3384 |
),
|
3385 |
-
'Google\\Service\\ShoppingContent\\
|
3386 |
'version' => '0.252.0.0',
|
3387 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3388 |
),
|
3389 |
-
'Google\\Service\\ShoppingContent\\
|
3390 |
'version' => '0.252.0.0',
|
3391 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3392 |
),
|
3393 |
-
'Google\\Service\\ShoppingContent\\
|
3394 |
'version' => '0.252.0.0',
|
3395 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3396 |
),
|
3397 |
-
'Google\\Service\\ShoppingContent\\
|
3398 |
'version' => '0.252.0.0',
|
3399 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3400 |
),
|
3401 |
-
'Google\\Service\\ShoppingContent\\
|
3402 |
'version' => '0.252.0.0',
|
3403 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3404 |
),
|
3405 |
-
'Google\\Service\\ShoppingContent\\
|
3406 |
'version' => '0.252.0.0',
|
3407 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3408 |
),
|
3409 |
-
'Google\\Service\\ShoppingContent\\
|
3410 |
'version' => '0.252.0.0',
|
3411 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3412 |
),
|
3413 |
-
'Google\\Service\\ShoppingContent\\
|
3414 |
'version' => '0.252.0.0',
|
3415 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3416 |
),
|
3417 |
-
'Google\\Service\\ShoppingContent\\
|
3418 |
'version' => '0.252.0.0',
|
3419 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3420 |
),
|
3421 |
-
'Google\\Service\\ShoppingContent\\
|
3422 |
'version' => '0.252.0.0',
|
3423 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3424 |
),
|
3425 |
'Google\\Service\\ShoppingContent\\Address' => array(
|
3426 |
'version' => '0.252.0.0',
|
3427 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Address.php'
|
3428 |
),
|
3429 |
-
'Google\\Service\\ShoppingContent\\
|
3430 |
'version' => '0.252.0.0',
|
3431 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3432 |
),
|
3433 |
-
'Google\\Service\\ShoppingContent\\
|
3434 |
'version' => '0.252.0.0',
|
3435 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3436 |
),
|
3437 |
-
'Google\\Service\\ShoppingContent\\
|
3438 |
'version' => '0.252.0.0',
|
3439 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3440 |
),
|
3441 |
-
'Google\\Service\\ShoppingContent\\
|
3442 |
'version' => '0.252.0.0',
|
3443 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3444 |
),
|
3445 |
-
'Google\\Service\\ShoppingContent\\
|
3446 |
'version' => '0.252.0.0',
|
3447 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3448 |
),
|
3449 |
-
'Google\\Service\\ShoppingContent\\
|
3450 |
'version' => '0.252.0.0',
|
3451 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3452 |
),
|
3453 |
-
'Google\\Service\\ShoppingContent\\
|
3454 |
'version' => '0.252.0.0',
|
3455 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3456 |
),
|
3457 |
-
'Google\\Service\\ShoppingContent\\
|
3458 |
'version' => '0.252.0.0',
|
3459 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3460 |
),
|
3461 |
-
'Google\\Service\\ShoppingContent\\
|
3462 |
'version' => '0.252.0.0',
|
3463 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3464 |
),
|
3465 |
-
'Google\\Service\\ShoppingContent\\
|
3466 |
'version' => '0.252.0.0',
|
3467 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3468 |
),
|
3469 |
-
'Google\\Service\\ShoppingContent\\
|
3470 |
'version' => '0.252.0.0',
|
3471 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3472 |
),
|
3473 |
-
'Google\\Service\\ShoppingContent\\
|
3474 |
'version' => '0.252.0.0',
|
3475 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3476 |
),
|
3477 |
-
'Google\\Service\\ShoppingContent\\
|
3478 |
'version' => '0.252.0.0',
|
3479 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3480 |
),
|
3481 |
-
'Google\\Service\\ShoppingContent\\
|
3482 |
'version' => '0.252.0.0',
|
3483 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3484 |
),
|
3485 |
-
'Google\\Service\\ShoppingContent\\
|
3486 |
'version' => '0.252.0.0',
|
3487 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3488 |
),
|
3489 |
-
'Google\\Service\\ShoppingContent\\
|
3490 |
'version' => '0.252.0.0',
|
3491 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3492 |
),
|
3493 |
-
'Google\\Service\\ShoppingContent\\
|
3494 |
'version' => '0.252.0.0',
|
3495 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3496 |
),
|
3497 |
-
'Google\\Service\\ShoppingContent\\
|
3498 |
'version' => '0.252.0.0',
|
3499 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3500 |
),
|
3501 |
-
'Google\\Service\\ShoppingContent\\
|
3502 |
'version' => '0.252.0.0',
|
3503 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3504 |
),
|
3505 |
-
'Google\\Service\\ShoppingContent\\
|
3506 |
'version' => '0.252.0.0',
|
3507 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3508 |
),
|
3509 |
-
'Google\\Service\\ShoppingContent\\
|
3510 |
'version' => '0.252.0.0',
|
3511 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3512 |
),
|
3513 |
-
'Google\\Service\\ShoppingContent\\
|
3514 |
'version' => '0.252.0.0',
|
3515 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3516 |
),
|
3517 |
-
'Google\\Service\\ShoppingContent\\
|
3518 |
'version' => '0.252.0.0',
|
3519 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3520 |
),
|
3521 |
-
'Google\\Service\\ShoppingContent\\
|
3522 |
'version' => '0.252.0.0',
|
3523 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3524 |
),
|
3525 |
-
'Google\\Service\\ShoppingContent\\
|
3526 |
'version' => '0.252.0.0',
|
3527 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3528 |
),
|
3529 |
-
'Google\\Service\\ShoppingContent\\
|
3530 |
'version' => '0.252.0.0',
|
3531 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3532 |
),
|
3533 |
-
'Google\\Service\\ShoppingContent\\
|
3534 |
'version' => '0.252.0.0',
|
3535 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3536 |
),
|
3537 |
-
'Google\\Service\\ShoppingContent\\
|
3538 |
'version' => '0.252.0.0',
|
3539 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3540 |
),
|
3541 |
-
'Google\\Service\\ShoppingContent\\
|
3542 |
'version' => '0.252.0.0',
|
3543 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3544 |
),
|
3545 |
-
'Google\\Service\\ShoppingContent\\
|
3546 |
'version' => '0.252.0.0',
|
3547 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3548 |
),
|
3549 |
-
'Google\\Service\\ShoppingContent\\
|
3550 |
'version' => '0.252.0.0',
|
3551 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3552 |
),
|
3553 |
-
'Google\\Service\\ShoppingContent\\
|
3554 |
'version' => '0.252.0.0',
|
3555 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3556 |
),
|
3557 |
-
'Google\\Service\\ShoppingContent\\
|
3558 |
'version' => '0.252.0.0',
|
3559 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3560 |
),
|
3561 |
-
'Google\\Service\\ShoppingContent\\
|
3562 |
'version' => '0.252.0.0',
|
3563 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3564 |
),
|
3565 |
-
'Google\\Service\\ShoppingContent\\
|
3566 |
'version' => '0.252.0.0',
|
3567 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3568 |
),
|
3569 |
-
'Google\\Service\\ShoppingContent\\
|
3570 |
'version' => '0.252.0.0',
|
3571 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3572 |
),
|
3573 |
-
'Google\\Service\\ShoppingContent\\
|
3574 |
'version' => '0.252.0.0',
|
3575 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3576 |
),
|
3577 |
-
'Google\\Service\\ShoppingContent\\
|
3578 |
'version' => '0.252.0.0',
|
3579 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3580 |
),
|
3581 |
-
'Google\\Service\\ShoppingContent\\
|
3582 |
'version' => '0.252.0.0',
|
3583 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3584 |
),
|
3585 |
-
'Google\\Service\\ShoppingContent\\
|
3586 |
'version' => '0.252.0.0',
|
3587 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3588 |
),
|
3589 |
-
'Google\\Service\\ShoppingContent\\
|
3590 |
'version' => '0.252.0.0',
|
3591 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3592 |
),
|
3593 |
-
'Google\\Service\\ShoppingContent\\
|
3594 |
'version' => '0.252.0.0',
|
3595 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3596 |
),
|
3597 |
-
'Google\\Service\\ShoppingContent\\
|
3598 |
'version' => '0.252.0.0',
|
3599 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3600 |
),
|
3601 |
-
'Google\\Service\\ShoppingContent\\
|
3602 |
'version' => '0.252.0.0',
|
3603 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3604 |
),
|
3605 |
-
'Google\\Service\\ShoppingContent\\
|
3606 |
'version' => '0.252.0.0',
|
3607 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3608 |
),
|
3609 |
-
'Google\\Service\\ShoppingContent\\
|
3610 |
'version' => '0.252.0.0',
|
3611 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3612 |
),
|
3613 |
-
'Google\\Service\\ShoppingContent\\
|
3614 |
'version' => '0.252.0.0',
|
3615 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3616 |
),
|
3617 |
-
'Google\\Service\\ShoppingContent\\
|
3618 |
'version' => '0.252.0.0',
|
3619 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3620 |
),
|
3621 |
-
'Google\\Service\\ShoppingContent\\
|
3622 |
'version' => '0.252.0.0',
|
3623 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3624 |
),
|
3625 |
-
'Google\\Service\\ShoppingContent\\
|
3626 |
'version' => '0.252.0.0',
|
3627 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3628 |
),
|
3629 |
-
'Google\\Service\\ShoppingContent\\
|
3630 |
'version' => '0.252.0.0',
|
3631 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3632 |
),
|
3633 |
-
'Google\\Service\\ShoppingContent\\
|
3634 |
'version' => '0.252.0.0',
|
3635 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3636 |
),
|
3637 |
-
'Google\\Service\\ShoppingContent\\
|
3638 |
'version' => '0.252.0.0',
|
3639 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3640 |
),
|
3641 |
-
'Google\\Service\\ShoppingContent\\
|
3642 |
'version' => '0.252.0.0',
|
3643 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3644 |
),
|
3645 |
-
'Google\\Service\\ShoppingContent\\
|
3646 |
'version' => '0.252.0.0',
|
3647 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3648 |
),
|
3649 |
-
'Google\\Service\\ShoppingContent\\
|
3650 |
'version' => '0.252.0.0',
|
3651 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3652 |
),
|
3653 |
-
'Google\\Service\\ShoppingContent\\
|
3654 |
'version' => '0.252.0.0',
|
3655 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3656 |
),
|
3657 |
-
'Google\\Service\\ShoppingContent\\
|
3658 |
'version' => '0.252.0.0',
|
3659 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3660 |
),
|
3661 |
-
'Google\\Service\\ShoppingContent\\
|
3662 |
'version' => '0.252.0.0',
|
3663 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3664 |
),
|
3665 |
-
'Google\\Service\\ShoppingContent\\
|
3666 |
'version' => '0.252.0.0',
|
3667 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3668 |
),
|
3669 |
-
'Google\\Service\\ShoppingContent\\
|
3670 |
'version' => '0.252.0.0',
|
3671 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3672 |
),
|
3673 |
-
'Google\\Service\\ShoppingContent\\
|
3674 |
'version' => '0.252.0.0',
|
3675 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3676 |
),
|
3677 |
-
'Google\\Service\\ShoppingContent\\
|
3678 |
'version' => '0.252.0.0',
|
3679 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3680 |
),
|
3681 |
-
'Google\\Service\\ShoppingContent\\
|
3682 |
'version' => '0.252.0.0',
|
3683 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3684 |
),
|
3685 |
-
'Google\\Service\\ShoppingContent\\
|
3686 |
'version' => '0.252.0.0',
|
3687 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3688 |
),
|
3689 |
-
'Google\\Service\\ShoppingContent\\
|
3690 |
'version' => '0.252.0.0',
|
3691 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3692 |
),
|
3693 |
-
'Google\\Service\\ShoppingContent\\
|
3694 |
'version' => '0.252.0.0',
|
3695 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3696 |
),
|
3697 |
-
'Google\\Service\\ShoppingContent\\
|
3698 |
'version' => '0.252.0.0',
|
3699 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3700 |
),
|
3701 |
-
'Google\\Service\\ShoppingContent\\
|
3702 |
'version' => '0.252.0.0',
|
3703 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3704 |
),
|
3705 |
-
'Google\\Service\\ShoppingContent\\
|
3706 |
'version' => '0.252.0.0',
|
3707 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3708 |
),
|
3709 |
-
'Google\\Service\\ShoppingContent\\
|
3710 |
'version' => '0.252.0.0',
|
3711 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3712 |
),
|
3713 |
-
'Google\\Service\\ShoppingContent\\
|
3714 |
'version' => '0.252.0.0',
|
3715 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3716 |
),
|
3717 |
-
'Google\\Service\\ShoppingContent\\
|
3718 |
'version' => '0.252.0.0',
|
3719 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3720 |
),
|
3721 |
-
'Google\\Service\\ShoppingContent\\
|
3722 |
'version' => '0.252.0.0',
|
3723 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3724 |
),
|
3725 |
-
'Google\\Service\\ShoppingContent\\
|
3726 |
'version' => '0.252.0.0',
|
3727 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3728 |
),
|
3729 |
-
'Google\\Service\\ShoppingContent\\
|
3730 |
'version' => '0.252.0.0',
|
3731 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3732 |
),
|
3733 |
-
'Google\\Service\\ShoppingContent\\
|
3734 |
'version' => '0.252.0.0',
|
3735 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3736 |
),
|
3737 |
-
'Google\\Service\\ShoppingContent\\
|
3738 |
'version' => '0.252.0.0',
|
3739 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3740 |
),
|
3741 |
-
'Google\\Service\\ShoppingContent\\
|
3742 |
'version' => '0.252.0.0',
|
3743 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3744 |
),
|
3745 |
-
'Google\\Service\\ShoppingContent\\
|
3746 |
'version' => '0.252.0.0',
|
3747 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3748 |
),
|
3749 |
-
'Google\\Service\\ShoppingContent\\
|
3750 |
'version' => '0.252.0.0',
|
3751 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3752 |
),
|
3753 |
-
'Google\\Service\\ShoppingContent\\
|
3754 |
'version' => '0.252.0.0',
|
3755 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3756 |
),
|
3757 |
-
'Google\\Service\\ShoppingContent\\
|
3758 |
'version' => '0.252.0.0',
|
3759 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3760 |
),
|
3761 |
-
'Google\\Service\\ShoppingContent\\
|
3762 |
'version' => '0.252.0.0',
|
3763 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3764 |
),
|
3765 |
-
'Google\\Service\\ShoppingContent\\
|
3766 |
'version' => '0.252.0.0',
|
3767 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3768 |
),
|
3769 |
-
'Google\\Service\\ShoppingContent\\
|
3770 |
'version' => '0.252.0.0',
|
3771 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3772 |
),
|
3773 |
-
'Google\\Service\\ShoppingContent\\
|
3774 |
'version' => '0.252.0.0',
|
3775 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3776 |
),
|
3777 |
-
'Google\\Service\\ShoppingContent\\
|
3778 |
'version' => '0.252.0.0',
|
3779 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3780 |
),
|
3781 |
-
'Google\\Service\\ShoppingContent\\
|
3782 |
'version' => '0.252.0.0',
|
3783 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3784 |
),
|
3785 |
-
'Google\\Service\\ShoppingContent\\
|
3786 |
'version' => '0.252.0.0',
|
3787 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3788 |
),
|
3789 |
-
'Google\\Service\\ShoppingContent\\
|
3790 |
'version' => '0.252.0.0',
|
3791 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3792 |
),
|
3793 |
-
'Google\\Service\\ShoppingContent\\
|
3794 |
'version' => '0.252.0.0',
|
3795 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3796 |
),
|
3797 |
-
'Google\\Service\\ShoppingContent\\
|
3798 |
'version' => '0.252.0.0',
|
3799 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3800 |
),
|
3801 |
-
'Google\\Service\\ShoppingContent\\
|
3802 |
'version' => '0.252.0.0',
|
3803 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3804 |
),
|
3805 |
-
'Google\\Service\\ShoppingContent\\
|
3806 |
'version' => '0.252.0.0',
|
3807 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3808 |
),
|
3809 |
-
'Google\\Service\\ShoppingContent\\
|
3810 |
'version' => '0.252.0.0',
|
3811 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3812 |
),
|
3813 |
-
'Google\\Service\\ShoppingContent\\
|
3814 |
'version' => '0.252.0.0',
|
3815 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3816 |
),
|
3817 |
-
'Google\\Service\\ShoppingContent\\
|
3818 |
'version' => '0.252.0.0',
|
3819 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3820 |
),
|
3821 |
-
'Google\\Service\\ShoppingContent\\
|
3822 |
'version' => '0.252.0.0',
|
3823 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3824 |
),
|
3825 |
-
'Google\\Service\\ShoppingContent\\
|
3826 |
'version' => '0.252.0.0',
|
3827 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3828 |
),
|
3829 |
-
'Google\\Service\\ShoppingContent\\
|
3830 |
'version' => '0.252.0.0',
|
3831 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3832 |
),
|
3833 |
-
'Google\\Service\\ShoppingContent\\
|
3834 |
'version' => '0.252.0.0',
|
3835 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3836 |
),
|
3837 |
-
'Google\\Service\\ShoppingContent\\
|
3838 |
'version' => '0.252.0.0',
|
3839 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3840 |
),
|
3841 |
-
'Google\\Service\\ShoppingContent\\
|
3842 |
'version' => '0.252.0.0',
|
3843 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3844 |
),
|
3845 |
-
'Google\\Service\\ShoppingContent\\
|
3846 |
'version' => '0.252.0.0',
|
3847 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3848 |
),
|
3849 |
-
'Google\\Service\\ShoppingContent\\
|
3850 |
'version' => '0.252.0.0',
|
3851 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3852 |
),
|
3853 |
-
'Google\\Service\\ShoppingContent\\
|
3854 |
'version' => '0.252.0.0',
|
3855 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3856 |
),
|
3857 |
-
'Google\\Service\\ShoppingContent\\
|
3858 |
'version' => '0.252.0.0',
|
3859 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3860 |
),
|
3861 |
-
'Google\\Service\\ShoppingContent\\
|
3862 |
'version' => '0.252.0.0',
|
3863 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3864 |
),
|
3865 |
-
'Google\\Service\\ShoppingContent\\
|
3866 |
'version' => '0.252.0.0',
|
3867 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3868 |
),
|
3869 |
-
'Google\\Service\\ShoppingContent\\
|
3870 |
'version' => '0.252.0.0',
|
3871 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3872 |
),
|
3873 |
-
'Google\\Service\\ShoppingContent\\
|
3874 |
'version' => '0.252.0.0',
|
3875 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3876 |
),
|
3877 |
-
'Google\\Service\\ShoppingContent\\
|
3878 |
'version' => '0.252.0.0',
|
3879 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3880 |
),
|
3881 |
-
'Google\\Service\\ShoppingContent\\
|
3882 |
'version' => '0.252.0.0',
|
3883 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3884 |
),
|
3885 |
-
'Google\\Service\\ShoppingContent\\
|
3886 |
'version' => '0.252.0.0',
|
3887 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3888 |
),
|
3889 |
-
'Google\\Service\\ShoppingContent\\
|
3890 |
'version' => '0.252.0.0',
|
3891 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3892 |
),
|
3893 |
-
'Google\\Service\\ShoppingContent\\
|
3894 |
'version' => '0.252.0.0',
|
3895 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3896 |
),
|
3897 |
-
'Google\\Service\\ShoppingContent\\
|
3898 |
'version' => '0.252.0.0',
|
3899 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3900 |
),
|
3901 |
-
'Google\\Service\\ShoppingContent\\
|
3902 |
'version' => '0.252.0.0',
|
3903 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3904 |
),
|
3905 |
-
'Google\\Service\\ShoppingContent\\
|
3906 |
'version' => '0.252.0.0',
|
3907 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3908 |
),
|
3909 |
-
'Google\\Service\\ShoppingContent\\
|
3910 |
'version' => '0.252.0.0',
|
3911 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3912 |
),
|
3913 |
-
'Google\\Service\\ShoppingContent\\
|
3914 |
'version' => '0.252.0.0',
|
3915 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3916 |
),
|
3917 |
-
'Google\\Service\\ShoppingContent\\
|
3918 |
'version' => '0.252.0.0',
|
3919 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3920 |
),
|
3921 |
-
'Google\\Service\\ShoppingContent\\
|
3922 |
'version' => '0.252.0.0',
|
3923 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3924 |
),
|
3925 |
-
'Google\\Service\\ShoppingContent\\
|
3926 |
'version' => '0.252.0.0',
|
3927 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3928 |
),
|
3929 |
-
'Google\\Service\\ShoppingContent\\
|
3930 |
'version' => '0.252.0.0',
|
3931 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3932 |
),
|
3933 |
-
'Google\\Service\\ShoppingContent\\
|
3934 |
'version' => '0.252.0.0',
|
3935 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3936 |
),
|
3937 |
-
'Google\\Service\\ShoppingContent\\
|
3938 |
'version' => '0.252.0.0',
|
3939 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3940 |
),
|
3941 |
-
'Google\\Service\\ShoppingContent\\
|
3942 |
'version' => '0.252.0.0',
|
3943 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3944 |
),
|
3945 |
-
'Google\\Service\\ShoppingContent\\
|
3946 |
'version' => '0.252.0.0',
|
3947 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3948 |
),
|
3949 |
-
'Google\\Service\\ShoppingContent\\
|
3950 |
'version' => '0.252.0.0',
|
3951 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3952 |
),
|
3953 |
-
'Google\\Service\\ShoppingContent\\
|
3954 |
'version' => '0.252.0.0',
|
3955 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3956 |
),
|
3957 |
-
'Google\\Service\\ShoppingContent\\
|
3958 |
'version' => '0.252.0.0',
|
3959 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3960 |
),
|
3961 |
-
'Google\\Service\\ShoppingContent\\
|
3962 |
'version' => '0.252.0.0',
|
3963 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3964 |
),
|
3965 |
-
'Google\\Service\\ShoppingContent\\
|
3966 |
'version' => '0.252.0.0',
|
3967 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3968 |
),
|
3969 |
-
'Google\\Service\\ShoppingContent\\
|
3970 |
'version' => '0.252.0.0',
|
3971 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3972 |
),
|
3973 |
-
'Google\\Service\\ShoppingContent\\
|
3974 |
'version' => '0.252.0.0',
|
3975 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3976 |
),
|
3977 |
-
'Google\\Service\\ShoppingContent\\
|
3978 |
'version' => '0.252.0.0',
|
3979 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3980 |
),
|
3981 |
-
'Google\\Service\\ShoppingContent\\
|
3982 |
'version' => '0.252.0.0',
|
3983 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3984 |
),
|
3985 |
-
'Google\\Service\\ShoppingContent\\
|
3986 |
'version' => '0.252.0.0',
|
3987 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3988 |
),
|
3989 |
-
'Google\\Service\\ShoppingContent\\
|
3990 |
'version' => '0.252.0.0',
|
3991 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3992 |
),
|
3993 |
-
'Google\\Service\\ShoppingContent\\
|
3994 |
'version' => '0.252.0.0',
|
3995 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
3996 |
),
|
3997 |
-
'Google\\Service\\ShoppingContent\\
|
3998 |
'version' => '0.252.0.0',
|
3999 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4000 |
),
|
4001 |
-
'Google\\Service\\ShoppingContent\\
|
4002 |
'version' => '0.252.0.0',
|
4003 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4004 |
),
|
4005 |
-
'Google\\Service\\ShoppingContent\\
|
4006 |
'version' => '0.252.0.0',
|
4007 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4008 |
),
|
4009 |
-
'Google\\Service\\ShoppingContent\\
|
4010 |
'version' => '0.252.0.0',
|
4011 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4012 |
),
|
4013 |
-
'Google\\Service\\ShoppingContent\\
|
4014 |
'version' => '0.252.0.0',
|
4015 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4016 |
),
|
4017 |
-
'Google\\Service\\ShoppingContent\\
|
4018 |
'version' => '0.252.0.0',
|
4019 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4020 |
),
|
4021 |
-
'Google\\Service\\ShoppingContent\\
|
4022 |
'version' => '0.252.0.0',
|
4023 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4024 |
),
|
4025 |
-
'Google\\Service\\ShoppingContent\\
|
4026 |
'version' => '0.252.0.0',
|
4027 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4028 |
),
|
4029 |
-
'Google\\Service\\ShoppingContent\\
|
4030 |
'version' => '0.252.0.0',
|
4031 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4032 |
),
|
4033 |
-
'Google\\Service\\ShoppingContent\\
|
4034 |
'version' => '0.252.0.0',
|
4035 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4036 |
),
|
4037 |
-
'Google\\Service\\ShoppingContent\\
|
4038 |
'version' => '0.252.0.0',
|
4039 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4040 |
),
|
4041 |
-
'Google\\Service\\ShoppingContent\\
|
4042 |
'version' => '0.252.0.0',
|
4043 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4044 |
),
|
4045 |
-
'Google\\Service\\ShoppingContent\\
|
4046 |
'version' => '0.252.0.0',
|
4047 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4048 |
),
|
4049 |
-
'Google\\Service\\ShoppingContent\\
|
4050 |
'version' => '0.252.0.0',
|
4051 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4052 |
),
|
4053 |
-
'Google\\Service\\ShoppingContent\\
|
4054 |
'version' => '0.252.0.0',
|
4055 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4056 |
),
|
4057 |
-
'Google\\Service\\ShoppingContent\\
|
4058 |
'version' => '0.252.0.0',
|
4059 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4060 |
),
|
4061 |
-
'Google\\Service\\ShoppingContent\\
|
4062 |
'version' => '0.252.0.0',
|
4063 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4064 |
),
|
4065 |
-
'Google\\Service\\ShoppingContent\\
|
4066 |
'version' => '0.252.0.0',
|
4067 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4068 |
),
|
4069 |
-
'Google\\Service\\ShoppingContent\\
|
4070 |
'version' => '0.252.0.0',
|
4071 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4072 |
),
|
4073 |
-
'Google\\Service\\ShoppingContent\\
|
4074 |
'version' => '0.252.0.0',
|
4075 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4076 |
),
|
4077 |
-
'Google\\Service\\ShoppingContent\\
|
4078 |
'version' => '0.252.0.0',
|
4079 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4080 |
),
|
4081 |
-
'Google\\Service\\ShoppingContent\\
|
4082 |
'version' => '0.252.0.0',
|
4083 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4084 |
),
|
4085 |
-
'Google\\Service\\ShoppingContent\\
|
4086 |
'version' => '0.252.0.0',
|
4087 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4088 |
),
|
4089 |
-
'Google\\Service\\ShoppingContent\\
|
4090 |
'version' => '0.252.0.0',
|
4091 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4092 |
),
|
4093 |
-
'Google\\Service\\ShoppingContent\\
|
4094 |
'version' => '0.252.0.0',
|
4095 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4096 |
),
|
4097 |
-
'Google\\Service\\ShoppingContent\\
|
4098 |
'version' => '0.252.0.0',
|
4099 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4100 |
),
|
4101 |
-
'Google\\Service\\ShoppingContent\\
|
4102 |
'version' => '0.252.0.0',
|
4103 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4104 |
),
|
4105 |
-
'Google\\Service\\ShoppingContent\\
|
4106 |
'version' => '0.252.0.0',
|
4107 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4108 |
),
|
4109 |
-
'Google\\Service\\ShoppingContent\\
|
4110 |
'version' => '0.252.0.0',
|
4111 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4112 |
),
|
4113 |
-
'Google\\Service\\ShoppingContent\\
|
4114 |
'version' => '0.252.0.0',
|
4115 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4116 |
),
|
4117 |
-
'Google\\Service\\ShoppingContent\\
|
4118 |
'version' => '0.252.0.0',
|
4119 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4120 |
),
|
4121 |
-
'Google\\Service\\ShoppingContent\\
|
4122 |
'version' => '0.252.0.0',
|
4123 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4124 |
),
|
4125 |
-
'Google\\Service\\ShoppingContent\\
|
4126 |
'version' => '0.252.0.0',
|
4127 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4128 |
),
|
4129 |
-
'Google\\Service\\ShoppingContent\\
|
4130 |
'version' => '0.252.0.0',
|
4131 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4132 |
),
|
4133 |
-
'Google\\Service\\ShoppingContent\\
|
4134 |
'version' => '0.252.0.0',
|
4135 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4136 |
),
|
4137 |
-
'Google\\Service\\ShoppingContent\\
|
4138 |
'version' => '0.252.0.0',
|
4139 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4140 |
),
|
4141 |
-
'Google\\Service\\ShoppingContent\\
|
4142 |
'version' => '0.252.0.0',
|
4143 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4144 |
),
|
4145 |
-
'Google\\Service\\ShoppingContent\\
|
4146 |
'version' => '0.252.0.0',
|
4147 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4148 |
),
|
4149 |
-
'Google\\Service\\ShoppingContent\\
|
4150 |
'version' => '0.252.0.0',
|
4151 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4152 |
),
|
4153 |
-
'Google\\Service\\ShoppingContent\\
|
4154 |
'version' => '0.252.0.0',
|
4155 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4156 |
),
|
4157 |
-
'Google\\Service\\ShoppingContent\\
|
4158 |
'version' => '0.252.0.0',
|
4159 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4160 |
),
|
4161 |
-
'Google\\Service\\ShoppingContent\\
|
4162 |
'version' => '0.252.0.0',
|
4163 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4164 |
),
|
4165 |
-
'Google\\Service\\ShoppingContent\\
|
4166 |
'version' => '0.252.0.0',
|
4167 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4168 |
),
|
4169 |
-
'Google\\Service\\ShoppingContent\\
|
4170 |
'version' => '0.252.0.0',
|
4171 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4172 |
),
|
4173 |
-
'Google\\Service\\ShoppingContent\\
|
4174 |
'version' => '0.252.0.0',
|
4175 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4176 |
),
|
4177 |
-
'Google\\Service\\ShoppingContent\\
|
4178 |
'version' => '0.252.0.0',
|
4179 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4180 |
),
|
4181 |
-
'Google\\Service\\ShoppingContent\\
|
4182 |
'version' => '0.252.0.0',
|
4183 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4184 |
),
|
4185 |
-
'Google\\Service\\ShoppingContent\\
|
4186 |
'version' => '0.252.0.0',
|
4187 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4188 |
),
|
4189 |
-
'Google\\Service\\ShoppingContent\\
|
4190 |
'version' => '0.252.0.0',
|
4191 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4192 |
),
|
4193 |
-
'Google\\Service\\ShoppingContent\\
|
4194 |
'version' => '0.252.0.0',
|
4195 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4196 |
),
|
4197 |
-
'Google\\Service\\ShoppingContent\\
|
4198 |
'version' => '0.252.0.0',
|
4199 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4200 |
),
|
4201 |
-
'Google\\Service\\ShoppingContent\\
|
4202 |
'version' => '0.252.0.0',
|
4203 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4204 |
),
|
4205 |
-
'Google\\Service\\ShoppingContent\\
|
4206 |
'version' => '0.252.0.0',
|
4207 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4208 |
),
|
4209 |
-
'Google\\Service\\ShoppingContent\\
|
4210 |
'version' => '0.252.0.0',
|
4211 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4212 |
),
|
4213 |
-
'Google\\Service\\ShoppingContent\\
|
4214 |
'version' => '0.252.0.0',
|
4215 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4216 |
),
|
4217 |
-
'Google\\Service\\ShoppingContent\\
|
4218 |
'version' => '0.252.0.0',
|
4219 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4220 |
),
|
4221 |
-
'Google\\Service\\ShoppingContent\\
|
4222 |
'version' => '0.252.0.0',
|
4223 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4224 |
),
|
4225 |
-
'Google\\Service\\ShoppingContent\\
|
4226 |
'version' => '0.252.0.0',
|
4227 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4228 |
),
|
4229 |
-
'Google\\Service\\ShoppingContent\\
|
4230 |
'version' => '0.252.0.0',
|
4231 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4232 |
),
|
4233 |
-
'Google\\Service\\ShoppingContent\\
|
4234 |
'version' => '0.252.0.0',
|
4235 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4236 |
),
|
4237 |
-
'Google\\Service\\ShoppingContent\\
|
4238 |
'version' => '0.252.0.0',
|
4239 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4240 |
),
|
4241 |
-
'Google\\Service\\ShoppingContent\\
|
4242 |
'version' => '0.252.0.0',
|
4243 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4244 |
),
|
4245 |
-
'Google\\Service\\ShoppingContent\\
|
4246 |
'version' => '0.252.0.0',
|
4247 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4248 |
),
|
4249 |
-
'Google\\Service\\ShoppingContent\\
|
4250 |
'version' => '0.252.0.0',
|
4251 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4252 |
),
|
4253 |
-
'Google\\Service\\ShoppingContent\\
|
4254 |
'version' => '0.252.0.0',
|
4255 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4256 |
),
|
4257 |
-
'Google\\Service\\ShoppingContent\\
|
4258 |
'version' => '0.252.0.0',
|
4259 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4260 |
),
|
4261 |
-
'Google\\Service\\ShoppingContent\\
|
4262 |
'version' => '0.252.0.0',
|
4263 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4264 |
),
|
4265 |
-
'Google\\Service\\ShoppingContent\\
|
4266 |
'version' => '0.252.0.0',
|
4267 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4268 |
),
|
4269 |
-
'Google\\Service\\ShoppingContent\\
|
4270 |
'version' => '0.252.0.0',
|
4271 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4272 |
),
|
4273 |
-
'Google\\Service\\ShoppingContent\\
|
4274 |
'version' => '0.252.0.0',
|
4275 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4276 |
),
|
4277 |
-
'Google\\Service\\ShoppingContent\\
|
4278 |
'version' => '0.252.0.0',
|
4279 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4280 |
),
|
4281 |
-
'Google\\Service\\ShoppingContent\\
|
4282 |
'version' => '0.252.0.0',
|
4283 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4284 |
),
|
4285 |
-
'Google\\Service\\ShoppingContent\\
|
4286 |
'version' => '0.252.0.0',
|
4287 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4288 |
),
|
4289 |
-
'Google\\Service\\ShoppingContent\\
|
4290 |
'version' => '0.252.0.0',
|
4291 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4292 |
),
|
4293 |
-
'Google\\Service\\ShoppingContent\\
|
4294 |
'version' => '0.252.0.0',
|
4295 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4296 |
),
|
4297 |
-
'Google\\Service\\ShoppingContent\\
|
4298 |
'version' => '0.252.0.0',
|
4299 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4300 |
),
|
4301 |
-
'Google\\Service\\ShoppingContent\\
|
4302 |
'version' => '0.252.0.0',
|
4303 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4304 |
),
|
4305 |
-
'Google\\Service\\ShoppingContent\\
|
4306 |
'version' => '0.252.0.0',
|
4307 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4308 |
),
|
4309 |
-
'Google\\Service\\ShoppingContent\\
|
4310 |
'version' => '0.252.0.0',
|
4311 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4312 |
),
|
4313 |
'Google\\Service\\ShoppingContent\\OrderinvoicesCreateChargeInvoiceRequest' => array(
|
4314 |
'version' => '0.252.0.0',
|
4315 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCreateChargeInvoiceRequest.php'
|
4316 |
),
|
4317 |
-
'Google\\Service\\ShoppingContent\\
|
4318 |
'version' => '0.252.0.0',
|
4319 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4320 |
),
|
4321 |
-
'Google\\Service\\ShoppingContent\\
|
4322 |
'version' => '0.252.0.0',
|
4323 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4324 |
),
|
4325 |
-
'Google\\Service\\ShoppingContent\\
|
4326 |
'version' => '0.252.0.0',
|
4327 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4328 |
),
|
4329 |
-
'Google\\Service\\ShoppingContent\\
|
4330 |
'version' => '0.252.0.0',
|
4331 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4332 |
),
|
4333 |
-
'Google\\Service\\ShoppingContent\\
|
4334 |
'version' => '0.252.0.0',
|
4335 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4336 |
),
|
4337 |
-
'Google\\Service\\ShoppingContent\\
|
4338 |
'version' => '0.252.0.0',
|
4339 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4340 |
),
|
4341 |
-
'Google\\Service\\ShoppingContent\\
|
4342 |
'version' => '0.252.0.0',
|
4343 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4344 |
),
|
4345 |
-
'Google\\Service\\ShoppingContent\\
|
4346 |
'version' => '0.252.0.0',
|
4347 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4348 |
),
|
4349 |
-
'Google\\Service\\ShoppingContent\\
|
4350 |
'version' => '0.252.0.0',
|
4351 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4352 |
),
|
4353 |
-
'Google\\Service\\ShoppingContent\\
|
4354 |
'version' => '0.252.0.0',
|
4355 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4356 |
),
|
4357 |
-
'Google\\Service\\ShoppingContent\\
|
4358 |
'version' => '0.252.0.0',
|
4359 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4360 |
),
|
4361 |
-
'Google\\Service\\ShoppingContent\\
|
4362 |
'version' => '0.252.0.0',
|
4363 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4364 |
),
|
4365 |
-
'Google\\Service\\ShoppingContent\\
|
4366 |
'version' => '0.252.0.0',
|
4367 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4368 |
),
|
4369 |
-
'Google\\Service\\ShoppingContent\\
|
4370 |
'version' => '0.252.0.0',
|
4371 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4372 |
),
|
4373 |
-
'Google\\Service\\ShoppingContent\\
|
4374 |
'version' => '0.252.0.0',
|
4375 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4376 |
),
|
4377 |
-
'Google\\Service\\ShoppingContent\\
|
4378 |
'version' => '0.252.0.0',
|
4379 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4380 |
),
|
4381 |
-
'Google\\Service\\ShoppingContent\\
|
4382 |
'version' => '0.252.0.0',
|
4383 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4384 |
),
|
4385 |
-
'Google\\Service\\ShoppingContent\\
|
4386 |
'version' => '0.252.0.0',
|
4387 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4388 |
),
|
4389 |
-
'Google\\Service\\ShoppingContent\\
|
4390 |
'version' => '0.252.0.0',
|
4391 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4392 |
),
|
4393 |
-
'Google\\Service\\ShoppingContent\\
|
4394 |
'version' => '0.252.0.0',
|
4395 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4396 |
),
|
4397 |
-
'Google\\Service\\ShoppingContent\\
|
4398 |
'version' => '0.252.0.0',
|
4399 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4400 |
),
|
4401 |
-
'Google\\Service\\ShoppingContent\\
|
4402 |
'version' => '0.252.0.0',
|
4403 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4404 |
),
|
4405 |
-
'Google\\Service\\ShoppingContent\\
|
4406 |
'version' => '0.252.0.0',
|
4407 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4408 |
),
|
4409 |
-
'Google\\Service\\ShoppingContent\\
|
4410 |
'version' => '0.252.0.0',
|
4411 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4412 |
),
|
4413 |
-
'Google\\Service\\ShoppingContent\\
|
4414 |
'version' => '0.252.0.0',
|
4415 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4416 |
),
|
4417 |
-
'Google\\Service\\ShoppingContent\\
|
4418 |
'version' => '0.252.0.0',
|
4419 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4420 |
),
|
4421 |
-
'Google\\Service\\ShoppingContent\\
|
4422 |
'version' => '0.252.0.0',
|
4423 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4424 |
),
|
4425 |
-
'Google\\Service\\ShoppingContent\\
|
4426 |
'version' => '0.252.0.0',
|
4427 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4428 |
),
|
4429 |
-
'Google\\Service\\ShoppingContent\\
|
4430 |
'version' => '0.252.0.0',
|
4431 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4432 |
),
|
4433 |
-
'Google\\Service\\ShoppingContent\\
|
4434 |
'version' => '0.252.0.0',
|
4435 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4436 |
),
|
4437 |
-
'Google\\Service\\ShoppingContent\\
|
4438 |
'version' => '0.252.0.0',
|
4439 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4440 |
),
|
4441 |
-
'Google\\Service\\ShoppingContent\\
|
4442 |
'version' => '0.252.0.0',
|
4443 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4444 |
),
|
4445 |
-
'Google\\Service\\ShoppingContent\\
|
4446 |
'version' => '0.252.0.0',
|
4447 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4448 |
),
|
4449 |
-
'Google\\Service\\ShoppingContent\\
|
4450 |
'version' => '0.252.0.0',
|
4451 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4452 |
),
|
4453 |
-
'Google\\Service\\ShoppingContent\\
|
4454 |
'version' => '0.252.0.0',
|
4455 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4456 |
),
|
4457 |
-
'Google\\Service\\ShoppingContent\\
|
4458 |
'version' => '0.252.0.0',
|
4459 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4460 |
),
|
4461 |
-
'Google\\Service\\ShoppingContent\\
|
4462 |
'version' => '0.252.0.0',
|
4463 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4464 |
),
|
4465 |
-
'Google\\Service\\ShoppingContent\\
|
4466 |
'version' => '0.252.0.0',
|
4467 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4468 |
),
|
4469 |
-
'Google\\Service\\ShoppingContent\\
|
4470 |
'version' => '0.252.0.0',
|
4471 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4472 |
),
|
4473 |
-
'Google\\Service\\ShoppingContent\\
|
4474 |
'version' => '0.252.0.0',
|
4475 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4476 |
),
|
4477 |
-
'Google\\Service\\ShoppingContent\\
|
4478 |
'version' => '0.252.0.0',
|
4479 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4480 |
),
|
4481 |
-
'Google\\Service\\ShoppingContent\\
|
4482 |
'version' => '0.252.0.0',
|
4483 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4484 |
),
|
4485 |
-
'Google\\Service\\ShoppingContent\\
|
4486 |
'version' => '0.252.0.0',
|
4487 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4488 |
),
|
4489 |
-
'Google\\Service\\ShoppingContent\\
|
4490 |
'version' => '0.252.0.0',
|
4491 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4492 |
),
|
4493 |
-
'Google\\Service\\ShoppingContent\\
|
4494 |
'version' => '0.252.0.0',
|
4495 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4496 |
),
|
4497 |
-
'Google\\Service\\ShoppingContent\\
|
4498 |
'version' => '0.252.0.0',
|
4499 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4500 |
),
|
4501 |
-
'Google\\Service\\ShoppingContent\\
|
4502 |
'version' => '0.252.0.0',
|
4503 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4504 |
),
|
4505 |
-
'Google\\Service\\ShoppingContent\\
|
4506 |
'version' => '0.252.0.0',
|
4507 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4508 |
),
|
4509 |
-
'Google\\Service\\ShoppingContent\\
|
4510 |
'version' => '0.252.0.0',
|
4511 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4512 |
),
|
4513 |
-
'Google\\Service\\ShoppingContent\\
|
4514 |
'version' => '0.252.0.0',
|
4515 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4516 |
),
|
4517 |
-
'Google\\Service\\ShoppingContent\\
|
4518 |
'version' => '0.252.0.0',
|
4519 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4520 |
),
|
4521 |
-
'Google\\Service\\ShoppingContent\\
|
4522 |
'version' => '0.252.0.0',
|
4523 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4524 |
),
|
4525 |
-
'Google\\Service\\ShoppingContent\\
|
4526 |
'version' => '0.252.0.0',
|
4527 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4528 |
),
|
4529 |
-
'Google\\Service\\ShoppingContent\\
|
4530 |
'version' => '0.252.0.0',
|
4531 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4532 |
),
|
4533 |
-
'Google\\Service\\ShoppingContent\\
|
4534 |
'version' => '0.252.0.0',
|
4535 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4536 |
),
|
4537 |
-
'Google\\Service\\ShoppingContent\\
|
4538 |
'version' => '0.252.0.0',
|
4539 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4540 |
),
|
4541 |
-
'Google\\Service\\ShoppingContent\\
|
4542 |
'version' => '0.252.0.0',
|
4543 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4544 |
),
|
4545 |
-
'Google\\Service\\ShoppingContent\\
|
4546 |
'version' => '0.252.0.0',
|
4547 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4548 |
),
|
4549 |
-
'Google\\Service\\ShoppingContent\\
|
4550 |
'version' => '0.252.0.0',
|
4551 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4552 |
),
|
4553 |
-
'Google\\Service\\ShoppingContent\\
|
4554 |
'version' => '0.252.0.0',
|
4555 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4556 |
),
|
4557 |
-
'Google\\Service\\ShoppingContent\\
|
4558 |
'version' => '0.252.0.0',
|
4559 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4560 |
),
|
4561 |
-
'Google\\Service\\ShoppingContent\\
|
4562 |
'version' => '0.252.0.0',
|
4563 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4564 |
),
|
4565 |
-
'Google\\Service\\ShoppingContent\\
|
4566 |
'version' => '0.252.0.0',
|
4567 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4568 |
),
|
4569 |
-
'Google\\Service\\ShoppingContent\\
|
4570 |
'version' => '0.252.0.0',
|
4571 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4572 |
),
|
4573 |
-
'Google\\Service\\ShoppingContent\\
|
4574 |
'version' => '0.252.0.0',
|
4575 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4576 |
),
|
4577 |
-
'Google\\Service\\ShoppingContent\\
|
4578 |
'version' => '0.252.0.0',
|
4579 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4580 |
),
|
4581 |
-
'Google\\Service\\ShoppingContent\\
|
4582 |
'version' => '0.252.0.0',
|
4583 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4584 |
),
|
4585 |
-
'Google\\Service\\ShoppingContent\\
|
4586 |
'version' => '0.252.0.0',
|
4587 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4588 |
),
|
4589 |
-
'Google\\Service\\ShoppingContent\\
|
4590 |
'version' => '0.252.0.0',
|
4591 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4592 |
),
|
4593 |
-
'Google\\Service\\ShoppingContent\\
|
4594 |
'version' => '0.252.0.0',
|
4595 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4596 |
),
|
4597 |
-
'Google\\Service\\ShoppingContent\\
|
4598 |
'version' => '0.252.0.0',
|
4599 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4600 |
),
|
4601 |
-
'Google\\Service\\ShoppingContent\\
|
4602 |
'version' => '0.252.0.0',
|
4603 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4604 |
),
|
4605 |
-
'Google\\Service\\ShoppingContent\\
|
4606 |
'version' => '0.252.0.0',
|
4607 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4608 |
),
|
4609 |
-
'Google\\Service\\ShoppingContent\\
|
4610 |
'version' => '0.252.0.0',
|
4611 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4612 |
),
|
4613 |
-
'Google\\Service\\ShoppingContent\\
|
4614 |
'version' => '0.252.0.0',
|
4615 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4616 |
),
|
4617 |
-
'Google\\Service\\ShoppingContent\\
|
4618 |
'version' => '0.252.0.0',
|
4619 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4620 |
),
|
4621 |
-
'Google\\Service\\ShoppingContent\\
|
4622 |
'version' => '0.252.0.0',
|
4623 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4624 |
),
|
4625 |
-
'Google\\Service\\ShoppingContent\\
|
4626 |
'version' => '0.252.0.0',
|
4627 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4628 |
),
|
4629 |
-
'Google\\Service\\ShoppingContent\\
|
4630 |
'version' => '0.252.0.0',
|
4631 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4632 |
),
|
4633 |
-
'Google\\Service\\ShoppingContent\\
|
4634 |
'version' => '0.252.0.0',
|
4635 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4636 |
),
|
4637 |
-
'Google\\Service\\ShoppingContent\\
|
4638 |
'version' => '0.252.0.0',
|
4639 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
|
|
|
|
|
|
|
|
4640 |
),
|
4641 |
'Google\\Service\\ShoppingContent\\AccounttaxCustomBatchResponse' => array(
|
4642 |
'version' => '0.252.0.0',
|
4643 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccounttaxCustomBatchResponse.php'
|
4644 |
),
|
4645 |
-
'Google\\Service\\ShoppingContent\\
|
4646 |
'version' => '0.252.0.0',
|
4647 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4648 |
),
|
4649 |
-
'Google\\Service\\ShoppingContent\\
|
4650 |
'version' => '0.252.0.0',
|
4651 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4652 |
),
|
4653 |
-
'Google\\Service\\ShoppingContent\\
|
4654 |
'version' => '0.252.0.0',
|
4655 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4656 |
),
|
4657 |
-
'Google\\Service\\ShoppingContent\\
|
4658 |
'version' => '0.252.0.0',
|
4659 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4660 |
),
|
4661 |
-
'Google\\Service\\ShoppingContent\\
|
4662 |
'version' => '0.252.0.0',
|
4663 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4664 |
),
|
4665 |
-
'Google\\Service\\ShoppingContent\\
|
4666 |
'version' => '0.252.0.0',
|
4667 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4668 |
),
|
4669 |
-
'Google\\Service\\ShoppingContent\\
|
4670 |
'version' => '0.252.0.0',
|
4671 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4672 |
),
|
4673 |
-
'Google\\Service\\ShoppingContent\\
|
4674 |
'version' => '0.252.0.0',
|
4675 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4676 |
),
|
4677 |
-
'Google\\Service\\ShoppingContent\\
|
4678 |
'version' => '0.252.0.0',
|
4679 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4680 |
),
|
4681 |
-
'Google\\Service\\ShoppingContent\\
|
4682 |
'version' => '0.252.0.0',
|
4683 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4684 |
),
|
4685 |
-
'Google\\Service\\ShoppingContent\\
|
4686 |
'version' => '0.252.0.0',
|
4687 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4688 |
),
|
4689 |
-
'Google\\Service\\ShoppingContent\\
|
4690 |
'version' => '0.252.0.0',
|
4691 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4692 |
),
|
4693 |
-
'Google\\Service\\ShoppingContent\\
|
4694 |
'version' => '0.252.0.0',
|
4695 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4696 |
),
|
4697 |
-
'Google\\Service\\ShoppingContent\\
|
4698 |
'version' => '0.252.0.0',
|
4699 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4700 |
),
|
4701 |
'Google\\Service\\ShoppingContent\\BuyOnGoogleProgramStatus' => array(
|
4702 |
'version' => '0.252.0.0',
|
4703 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/BuyOnGoogleProgramStatus.php'
|
4704 |
),
|
4705 |
-
'Google\\Service\\ShoppingContent\\
|
4706 |
'version' => '0.252.0.0',
|
4707 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4708 |
),
|
4709 |
-
'Google\\Service\\ShoppingContent\\
|
4710 |
'version' => '0.252.0.0',
|
4711 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4712 |
),
|
4713 |
-
'Google\\Service\\ShoppingContent\\
|
4714 |
'version' => '0.252.0.0',
|
4715 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4716 |
),
|
4717 |
-
'Google\\Service\\ShoppingContent\\
|
4718 |
'version' => '0.252.0.0',
|
4719 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4720 |
),
|
4721 |
-
'Google\\Service\\ShoppingContent\\
|
4722 |
'version' => '0.252.0.0',
|
4723 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4724 |
),
|
4725 |
-
'Google\\Service\\ShoppingContent\\
|
4726 |
'version' => '0.252.0.0',
|
4727 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4728 |
),
|
4729 |
-
'Google\\Service\\ShoppingContent\\
|
4730 |
'version' => '0.252.0.0',
|
4731 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4732 |
),
|
4733 |
-
'Google\\Service\\ShoppingContent\\
|
4734 |
'version' => '0.252.0.0',
|
4735 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4736 |
),
|
4737 |
-
'Google\\Service\\ShoppingContent\\
|
4738 |
'version' => '0.252.0.0',
|
4739 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4740 |
),
|
4741 |
-
'Google\\Service\\ShoppingContent\\
|
4742 |
'version' => '0.252.0.0',
|
4743 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4744 |
),
|
4745 |
-
'Google\\Service\\ShoppingContent\\
|
4746 |
'version' => '0.252.0.0',
|
4747 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/
|
4748 |
),
|
4749 |
-
'Google\\Service\\ShoppingContent' => array(
|
4750 |
'version' => '0.252.0.0',
|
4751 |
-
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent.php'
|
4752 |
),
|
4753 |
-
'Google\\Service\\
|
4754 |
'version' => '0.252.0.0',
|
4755 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
4756 |
),
|
4757 |
-
'Google\\Service\\
|
4758 |
'version' => '0.252.0.0',
|
4759 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
4760 |
),
|
4761 |
-
'Google\\Service\\
|
4762 |
'version' => '0.252.0.0',
|
4763 |
-
'path' => $vendorDir . '/google/apiclient-services/src/
|
4764 |
),
|
4765 |
-
'Google\\
|
4766 |
-
'version' => '
|
4767 |
-
'path' => $vendorDir . '/google/
|
4768 |
),
|
4769 |
-
'Google\\
|
4770 |
-
'version' => '
|
4771 |
-
'path' => $vendorDir . '/google/
|
4772 |
),
|
4773 |
-
'Google\\
|
4774 |
-
'version' => '
|
4775 |
-
'path' => $vendorDir . '/google/
|
4776 |
-
),
|
4777 |
-
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceResourceSite' => array(
|
4778 |
-
'version' => '0.252.0.0',
|
4779 |
-
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceResourceSite.php'
|
4780 |
),
|
4781 |
-
'Google\\
|
4782 |
-
'version' => '
|
4783 |
-
'path' => $vendorDir . '/google/
|
4784 |
),
|
4785 |
-
'Google\\Protobuf\\
|
4786 |
'version' => '3.21.1.0',
|
4787 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4788 |
),
|
4789 |
-
'Google\\Protobuf\\
|
4790 |
'version' => '3.21.1.0',
|
4791 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4792 |
),
|
4793 |
-
'Google\\Protobuf\\
|
4794 |
'version' => '3.21.1.0',
|
4795 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4796 |
),
|
4797 |
-
'Google\\Protobuf\\
|
4798 |
'version' => '3.21.1.0',
|
4799 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4800 |
),
|
4801 |
-
'Google\\Protobuf\\
|
4802 |
'version' => '3.21.1.0',
|
4803 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4804 |
),
|
4805 |
-
'Google\\Protobuf\\
|
4806 |
'version' => '3.21.1.0',
|
4807 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4808 |
),
|
4809 |
-
'Google\\Protobuf\\
|
4810 |
'version' => '3.21.1.0',
|
4811 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4812 |
),
|
4813 |
-
'Google\\Protobuf\\
|
4814 |
'version' => '3.21.1.0',
|
4815 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4816 |
),
|
4817 |
-
'Google\\Protobuf\\
|
4818 |
'version' => '3.21.1.0',
|
4819 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4820 |
),
|
4821 |
-
'Google\\Protobuf\\
|
4822 |
'version' => '3.21.1.0',
|
4823 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4824 |
),
|
4825 |
-
'Google\\Protobuf\\
|
4826 |
'version' => '3.21.1.0',
|
4827 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4828 |
),
|
4829 |
-
'Google\\Protobuf\\
|
4830 |
'version' => '3.21.1.0',
|
4831 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4832 |
),
|
4833 |
'Google\\Protobuf\\Field_Cardinality' => array(
|
4834 |
'version' => '3.21.1.0',
|
4835 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field_Cardinality.php'
|
4836 |
),
|
4837 |
-
'Google\\Protobuf\\
|
4838 |
'version' => '3.21.1.0',
|
4839 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4840 |
),
|
4841 |
-
'Google\\Protobuf\\
|
4842 |
'version' => '3.21.1.0',
|
4843 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4844 |
),
|
4845 |
-
'Google\\Protobuf\\
|
4846 |
'version' => '3.21.1.0',
|
4847 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4848 |
),
|
4849 |
-
'Google\\Protobuf\\
|
4850 |
'version' => '3.21.1.0',
|
4851 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4852 |
),
|
4853 |
-
'Google\\Protobuf\\
|
4854 |
'version' => '3.21.1.0',
|
4855 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4856 |
),
|
4857 |
-
'Google\\Protobuf\\
|
4858 |
'version' => '3.21.1.0',
|
4859 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4860 |
),
|
4861 |
-
'Google\\Protobuf\\
|
4862 |
'version' => '3.21.1.0',
|
4863 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
4864 |
),
|
4865 |
-
'Google\\Protobuf\\Internal\\
|
4866 |
'version' => '3.21.1.0',
|
4867 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4868 |
),
|
4869 |
-
'Google\\Protobuf\\Internal\\
|
4870 |
'version' => '3.21.1.0',
|
4871 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4872 |
),
|
4873 |
-
'Google\\Protobuf\\Internal\\
|
4874 |
'version' => '3.21.1.0',
|
4875 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
|
|
|
|
|
|
|
|
4876 |
),
|
4877 |
'Google\\Protobuf\\Internal\\RawInputStream' => array(
|
4878 |
'version' => '3.21.1.0',
|
4879 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RawInputStream.php'
|
4880 |
),
|
4881 |
-
'Google\\Protobuf\\Internal\\
|
4882 |
'version' => '3.21.1.0',
|
4883 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4884 |
),
|
4885 |
-
'Google\\Protobuf\\Internal\\
|
4886 |
'version' => '3.21.1.0',
|
4887 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4888 |
),
|
4889 |
-
'Google\\Protobuf\\Internal\\
|
4890 |
'version' => '3.21.1.0',
|
4891 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4892 |
),
|
4893 |
-
'Google\\Protobuf\\Internal\\
|
4894 |
'version' => '3.21.1.0',
|
4895 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4896 |
),
|
4897 |
-
'Google\\Protobuf\\Internal\\
|
4898 |
'version' => '3.21.1.0',
|
4899 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4900 |
),
|
4901 |
-
'Google\\Protobuf\\Internal\\
|
4902 |
'version' => '3.21.1.0',
|
4903 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4904 |
),
|
4905 |
-
'Google\\Protobuf\\Internal\\
|
4906 |
'version' => '3.21.1.0',
|
4907 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4908 |
),
|
4909 |
-
'Google\\Protobuf\\Internal\\
|
4910 |
'version' => '3.21.1.0',
|
4911 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4912 |
),
|
4913 |
-
'Google\\Protobuf\\Internal\\
|
4914 |
'version' => '3.21.1.0',
|
4915 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4916 |
),
|
4917 |
-
'Google\\Protobuf\\Internal\\
|
4918 |
'version' => '3.21.1.0',
|
4919 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4920 |
),
|
4921 |
-
'Google\\Protobuf\\Internal\\
|
4922 |
'version' => '3.21.1.0',
|
4923 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4924 |
),
|
4925 |
-
'Google\\Protobuf\\Internal\\
|
4926 |
'version' => '3.21.1.0',
|
4927 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4928 |
),
|
4929 |
-
'Google\\Protobuf\\Internal\\
|
4930 |
'version' => '3.21.1.0',
|
4931 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4932 |
),
|
4933 |
-
'Google\\Protobuf\\Internal\\
|
4934 |
'version' => '3.21.1.0',
|
4935 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4936 |
),
|
4937 |
-
'Google\\Protobuf\\Internal\\
|
4938 |
'version' => '3.21.1.0',
|
4939 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4940 |
),
|
4941 |
-
'Google\\Protobuf\\Internal\\
|
4942 |
'version' => '3.21.1.0',
|
4943 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
|
|
|
|
|
|
|
|
4944 |
),
|
4945 |
'Google\\Protobuf\\Internal\\DescriptorProto_ExtensionRange' => array(
|
4946 |
'version' => '3.21.1.0',
|
4947 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php'
|
4948 |
),
|
4949 |
-
'Google\\Protobuf\\Internal\\
|
4950 |
'version' => '3.21.1.0',
|
4951 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4952 |
),
|
4953 |
-
'Google\\Protobuf\\Internal\\
|
4954 |
'version' => '3.21.1.0',
|
4955 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4956 |
),
|
4957 |
-
'Google\\Protobuf\\Internal\\
|
4958 |
'version' => '3.21.1.0',
|
4959 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4960 |
),
|
4961 |
-
'Google\\Protobuf\\Internal\\
|
4962 |
'version' => '3.21.1.0',
|
4963 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4964 |
),
|
4965 |
-
'Google\\Protobuf\\Internal\\
|
4966 |
'version' => '3.21.1.0',
|
4967 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4968 |
),
|
4969 |
-
'Google\\Protobuf\\Internal\\
|
4970 |
'version' => '3.21.1.0',
|
4971 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4972 |
),
|
4973 |
-
'Google\\Protobuf\\Internal\\
|
4974 |
'version' => '3.21.1.0',
|
4975 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4976 |
),
|
4977 |
-
'Google\\Protobuf\\Internal\\
|
4978 |
'version' => '3.21.1.0',
|
4979 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4980 |
),
|
4981 |
-
'Google\\Protobuf\\Internal\\
|
4982 |
'version' => '3.21.1.0',
|
4983 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4984 |
),
|
4985 |
-
'Google\\Protobuf\\Internal\\
|
4986 |
'version' => '3.21.1.0',
|
4987 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4988 |
),
|
4989 |
-
'Google\\Protobuf\\Internal\\
|
4990 |
'version' => '3.21.1.0',
|
4991 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4992 |
),
|
4993 |
-
'Google\\Protobuf\\Internal\\
|
4994 |
'version' => '3.21.1.0',
|
4995 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
4996 |
),
|
4997 |
-
'Google\\Protobuf\\Internal\\
|
4998 |
'version' => '3.21.1.0',
|
4999 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5000 |
),
|
5001 |
-
'Google\\Protobuf\\Internal\\
|
5002 |
'version' => '3.21.1.0',
|
5003 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5004 |
),
|
5005 |
-
'Google\\Protobuf\\Internal\\
|
5006 |
'version' => '3.21.1.0',
|
5007 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5008 |
),
|
5009 |
-
'Google\\Protobuf\\Internal\\
|
5010 |
'version' => '3.21.1.0',
|
5011 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5012 |
),
|
5013 |
-
'Google\\Protobuf\\Internal\\
|
5014 |
'version' => '3.21.1.0',
|
5015 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5016 |
),
|
5017 |
-
'Google\\Protobuf\\Internal\\
|
5018 |
'version' => '3.21.1.0',
|
5019 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5020 |
),
|
5021 |
-
'Google\\Protobuf\\Internal\\
|
5022 |
'version' => '3.21.1.0',
|
5023 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5024 |
),
|
5025 |
-
'Google\\Protobuf\\Internal\\
|
5026 |
'version' => '3.21.1.0',
|
5027 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5028 |
-
),
|
5029 |
-
'Google\\Protobuf\\Internal\\FileOptions' => array(
|
5030 |
-
'version' => '3.21.1.0',
|
5031 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileOptions.php'
|
5032 |
-
),
|
5033 |
-
'Google\\Protobuf\\Internal\\RepeatedField' => array(
|
5034 |
-
'version' => '3.21.1.0',
|
5035 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RepeatedField.php'
|
5036 |
),
|
5037 |
'Google\\Protobuf\\Internal\\FieldOptions' => array(
|
5038 |
'version' => '3.21.1.0',
|
5039 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions.php'
|
5040 |
),
|
5041 |
-
'Google\\Protobuf\\Internal\\
|
5042 |
-
'version' => '3.21.1.0',
|
5043 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorPool.php'
|
5044 |
-
),
|
5045 |
-
'Google\\Protobuf\\Internal\\FieldOptions_CType' => array(
|
5046 |
-
'version' => '3.21.1.0',
|
5047 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_CType.php'
|
5048 |
-
),
|
5049 |
-
'Google\\Protobuf\\Internal\\UninterpretedOption_NamePart' => array(
|
5050 |
-
'version' => '3.21.1.0',
|
5051 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php'
|
5052 |
-
),
|
5053 |
-
'Google\\Protobuf\\Internal\\EnumBuilderContext' => array(
|
5054 |
-
'version' => '3.21.1.0',
|
5055 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumBuilderContext.php'
|
5056 |
-
),
|
5057 |
-
'Google\\Protobuf\\Internal\\MapEntry' => array(
|
5058 |
'version' => '3.21.1.0',
|
5059 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5060 |
),
|
5061 |
-
'Google\\Protobuf\\Internal\\
|
5062 |
'version' => '3.21.1.0',
|
5063 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5064 |
),
|
5065 |
-
'Google\\Protobuf\\Internal\\
|
5066 |
'version' => '3.21.1.0',
|
5067 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5068 |
),
|
5069 |
-
'Google\\Protobuf\\Internal\\
|
5070 |
'version' => '3.21.1.0',
|
5071 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5072 |
),
|
5073 |
-
'Google\\Protobuf\\Internal\\
|
5074 |
'version' => '3.21.1.0',
|
5075 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5076 |
),
|
5077 |
-
'Google\\Protobuf\\Internal\\
|
5078 |
'version' => '3.21.1.0',
|
5079 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5080 |
),
|
5081 |
-
'Google\\Protobuf\\Internal\\
|
5082 |
'version' => '3.21.1.0',
|
5083 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5084 |
),
|
5085 |
-
'Google\\Protobuf\\Internal\\
|
5086 |
'version' => '3.21.1.0',
|
5087 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5088 |
),
|
5089 |
-
'Google\\Protobuf\\Internal\\
|
5090 |
'version' => '3.21.1.0',
|
5091 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5092 |
),
|
5093 |
-
'Google\\Protobuf\\Internal\\
|
5094 |
'version' => '3.21.1.0',
|
5095 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5096 |
),
|
5097 |
-
'Google\\Protobuf\\Internal\\
|
5098 |
'version' => '3.21.1.0',
|
5099 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5100 |
),
|
5101 |
-
'Google\\Protobuf\\Internal\\
|
5102 |
'version' => '3.21.1.0',
|
5103 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5104 |
),
|
5105 |
-
'Google\\Protobuf\\Internal\\
|
5106 |
'version' => '3.21.1.0',
|
5107 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5108 |
),
|
5109 |
-
'Google\\Protobuf\\Internal\\
|
5110 |
'version' => '3.21.1.0',
|
5111 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5112 |
),
|
5113 |
-
'Google\\Protobuf\\Internal\\
|
5114 |
'version' => '3.21.1.0',
|
5115 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5116 |
),
|
5117 |
-
'Google\\Protobuf\\Internal\\
|
5118 |
'version' => '3.21.1.0',
|
5119 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5120 |
),
|
5121 |
-
'Google\\Protobuf\\Internal\\
|
5122 |
'version' => '3.21.1.0',
|
5123 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5124 |
),
|
5125 |
-
'Google\\Protobuf\\Internal\\
|
5126 |
'version' => '3.21.1.0',
|
5127 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5128 |
),
|
5129 |
-
'Google\\Protobuf\\Internal\\
|
5130 |
'version' => '3.21.1.0',
|
5131 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/
|
5132 |
),
|
5133 |
-
'Google\\Protobuf\\
|
5134 |
'version' => '3.21.1.0',
|
5135 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5136 |
),
|
5137 |
-
'Google\\Protobuf\\
|
5138 |
'version' => '3.21.1.0',
|
5139 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5140 |
),
|
5141 |
-
'Google\\Protobuf\\
|
5142 |
'version' => '3.21.1.0',
|
5143 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5144 |
),
|
5145 |
-
'Google\\Protobuf\\
|
5146 |
'version' => '3.21.1.0',
|
5147 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5148 |
),
|
5149 |
-
'Google\\Protobuf\\
|
5150 |
'version' => '3.21.1.0',
|
5151 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5152 |
),
|
5153 |
-
'Google\\Protobuf\\
|
5154 |
'version' => '3.21.1.0',
|
5155 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5156 |
),
|
5157 |
-
'Google\\Protobuf\\
|
5158 |
'version' => '3.21.1.0',
|
5159 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5160 |
),
|
5161 |
-
'Google\\Protobuf\\
|
5162 |
'version' => '3.21.1.0',
|
5163 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5164 |
),
|
5165 |
-
'Google\\Protobuf\\
|
5166 |
'version' => '3.21.1.0',
|
5167 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5168 |
),
|
5169 |
-
'Google\\Protobuf\\
|
5170 |
'version' => '3.21.1.0',
|
5171 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5172 |
),
|
5173 |
-
'Google\\Protobuf\\
|
5174 |
'version' => '3.21.1.0',
|
5175 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5176 |
),
|
5177 |
'Google\\Protobuf\\OneofDescriptor' => array(
|
5178 |
'version' => '3.21.1.0',
|
5179 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/OneofDescriptor.php'
|
5180 |
),
|
5181 |
-
'Google\\Protobuf\\
|
5182 |
'version' => '3.21.1.0',
|
5183 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5184 |
),
|
5185 |
-
'Google\\Protobuf\\
|
5186 |
'version' => '3.21.1.0',
|
5187 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5188 |
),
|
5189 |
-
'Google\\Protobuf\\
|
5190 |
'version' => '3.21.1.0',
|
5191 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5192 |
),
|
5193 |
-
'Google\\Protobuf\\
|
5194 |
'version' => '3.21.1.0',
|
5195 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5196 |
),
|
5197 |
-
'Google\\Protobuf\\
|
5198 |
'version' => '3.21.1.0',
|
5199 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5200 |
),
|
5201 |
-
'Google\\Protobuf\\
|
5202 |
'version' => '3.21.1.0',
|
5203 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5204 |
),
|
5205 |
-
'Google\\Protobuf\\
|
5206 |
'version' => '3.21.1.0',
|
5207 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5208 |
),
|
5209 |
-
'Google\\Protobuf\\
|
5210 |
'version' => '3.21.1.0',
|
5211 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5212 |
),
|
5213 |
-
'Google\\Protobuf\\
|
5214 |
'version' => '3.21.1.0',
|
5215 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5216 |
),
|
5217 |
-
'Google\\Protobuf\\
|
5218 |
'version' => '3.21.1.0',
|
5219 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5220 |
),
|
5221 |
-
'Google\\Protobuf\\
|
5222 |
'version' => '3.21.1.0',
|
5223 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5224 |
),
|
5225 |
-
'Google\\Protobuf\\
|
5226 |
'version' => '3.21.1.0',
|
5227 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5228 |
),
|
5229 |
-
'Google\\Protobuf\\
|
5230 |
'version' => '3.21.1.0',
|
5231 |
-
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/
|
5232 |
),
|
5233 |
-
'Google\\ApiCore\\
|
5234 |
'version' => '1.12.2.0',
|
5235 |
-
'path' => $vendorDir . '/google/gax/src/
|
5236 |
),
|
5237 |
-
'Google\\ApiCore\\
|
5238 |
'version' => '1.12.2.0',
|
5239 |
-
'path' => $vendorDir . '/google/gax/src/
|
5240 |
),
|
5241 |
-
'Google\\ApiCore\\
|
5242 |
'version' => '1.12.2.0',
|
5243 |
-
'path' => $vendorDir . '/google/gax/src/
|
5244 |
),
|
5245 |
-
'Google\\ApiCore\\
|
5246 |
'version' => '1.12.2.0',
|
5247 |
-
'path' => $vendorDir . '/google/gax/src/
|
5248 |
),
|
5249 |
-
'Google\\ApiCore\\
|
5250 |
'version' => '1.12.2.0',
|
5251 |
-
'path' => $vendorDir . '/google/gax/src/
|
5252 |
),
|
5253 |
-
'Google\\ApiCore\\
|
5254 |
'version' => '1.12.2.0',
|
5255 |
-
'path' => $vendorDir . '/google/gax/src/
|
5256 |
),
|
5257 |
-
'Google\\ApiCore\\
|
5258 |
'version' => '1.12.2.0',
|
5259 |
-
'path' => $vendorDir . '/google/gax/src/
|
5260 |
),
|
5261 |
-
'Google\\ApiCore\\
|
5262 |
'version' => '1.12.2.0',
|
5263 |
-
'path' => $vendorDir . '/google/gax/src/
|
5264 |
),
|
5265 |
-
'Google\\ApiCore\\
|
5266 |
'version' => '1.12.2.0',
|
5267 |
-
'path' => $vendorDir . '/google/gax/src/
|
5268 |
),
|
5269 |
-
'Google\\ApiCore\\
|
5270 |
'version' => '1.12.2.0',
|
5271 |
-
'path' => $vendorDir . '/google/gax/src/
|
5272 |
),
|
5273 |
-
'Google\\ApiCore\\
|
5274 |
'version' => '1.12.2.0',
|
5275 |
-
'path' => $vendorDir . '/google/gax/src/
|
5276 |
),
|
5277 |
-
'Google\\ApiCore\\
|
5278 |
'version' => '1.12.2.0',
|
5279 |
-
'path' => $vendorDir . '/google/gax/src/
|
5280 |
),
|
5281 |
-
'Google\\ApiCore\\
|
5282 |
'version' => '1.12.2.0',
|
5283 |
-
'path' => $vendorDir . '/google/gax/src/
|
5284 |
),
|
5285 |
-
'Google\\ApiCore\\
|
5286 |
'version' => '1.12.2.0',
|
5287 |
-
'path' => $vendorDir . '/google/gax/src/
|
5288 |
),
|
5289 |
-
'Google\\ApiCore\\
|
5290 |
'version' => '1.12.2.0',
|
5291 |
-
'path' => $vendorDir . '/google/gax/src/
|
5292 |
),
|
5293 |
-
'Google\\ApiCore\\
|
5294 |
-
'version' => '1.12.2.0',
|
5295 |
-
'path' => $vendorDir . '/google/gax/src/Transport/Grpc/ForwardingUnaryCall.php'
|
5296 |
-
),
|
5297 |
-
'Google\\ApiCore\\Transport\\Grpc\\ForwardingCall' => array(
|
5298 |
'version' => '1.12.2.0',
|
5299 |
-
'path' => $vendorDir . '/google/gax/src/
|
5300 |
),
|
5301 |
-
'Google\\ApiCore\\
|
5302 |
'version' => '1.12.2.0',
|
5303 |
-
'path' => $vendorDir . '/google/gax/src/
|
5304 |
),
|
5305 |
-
'Google\\ApiCore\\
|
5306 |
'version' => '1.12.2.0',
|
5307 |
-
'path' => $vendorDir . '/google/gax/src/
|
5308 |
),
|
5309 |
-
'Google\\ApiCore\\
|
5310 |
'version' => '1.12.2.0',
|
5311 |
-
'path' => $vendorDir . '/google/gax/src/
|
5312 |
),
|
5313 |
-
'Google\\ApiCore\\
|
5314 |
'version' => '1.12.2.0',
|
5315 |
-
'path' => $vendorDir . '/google/gax/src/
|
5316 |
),
|
5317 |
-
'Google\\ApiCore\\
|
5318 |
'version' => '1.12.2.0',
|
5319 |
-
'path' => $vendorDir . '/google/gax/src/
|
5320 |
),
|
5321 |
-
'Google\\ApiCore\\
|
5322 |
'version' => '1.12.2.0',
|
5323 |
-
'path' => $vendorDir . '/google/gax/src/
|
5324 |
),
|
5325 |
-
'Google\\ApiCore\\
|
5326 |
'version' => '1.12.2.0',
|
5327 |
-
'path' => $vendorDir . '/google/gax/src/
|
5328 |
),
|
5329 |
-
'Google\\ApiCore\\
|
5330 |
'version' => '1.12.2.0',
|
5331 |
-
'path' => $vendorDir . '/google/gax/src/
|
5332 |
),
|
5333 |
-
'Google\\ApiCore\\
|
5334 |
'version' => '1.12.2.0',
|
5335 |
-
'path' => $vendorDir . '/google/gax/src/
|
5336 |
),
|
5337 |
-
'Google\\ApiCore\\
|
5338 |
'version' => '1.12.2.0',
|
5339 |
-
'path' => $vendorDir . '/google/gax/src/
|
5340 |
),
|
5341 |
-
'Google\\ApiCore\\
|
5342 |
'version' => '1.12.2.0',
|
5343 |
-
'path' => $vendorDir . '/google/gax/src/
|
5344 |
),
|
5345 |
-
'Google\\ApiCore\\
|
5346 |
'version' => '1.12.2.0',
|
5347 |
-
'path' => $vendorDir . '/google/gax/src/
|
5348 |
),
|
5349 |
-
'Google\\ApiCore\\
|
5350 |
'version' => '1.12.2.0',
|
5351 |
-
'path' => $vendorDir . '/google/gax/src/
|
5352 |
),
|
5353 |
-
'Google\\ApiCore\\
|
5354 |
'version' => '1.12.2.0',
|
5355 |
-
'path' => $vendorDir . '/google/gax/src/
|
5356 |
),
|
5357 |
-
'Google\\ApiCore\\
|
5358 |
'version' => '1.12.2.0',
|
5359 |
-
'path' => $vendorDir . '/google/gax/src/
|
5360 |
),
|
5361 |
-
'Google\\ApiCore\\
|
5362 |
'version' => '1.12.2.0',
|
5363 |
-
'path' => $vendorDir . '/google/gax/src/
|
5364 |
),
|
5365 |
-
'Google\\ApiCore\\
|
5366 |
'version' => '1.12.2.0',
|
5367 |
-
'path' => $vendorDir . '/google/gax/src/
|
5368 |
),
|
5369 |
-
'Google\\ApiCore\\
|
5370 |
'version' => '1.12.2.0',
|
5371 |
-
'path' => $vendorDir . '/google/gax/src/
|
5372 |
),
|
5373 |
-
'Google\\ApiCore\\
|
5374 |
'version' => '1.12.2.0',
|
5375 |
-
'path' => $vendorDir . '/google/gax/src/
|
5376 |
),
|
5377 |
'Google\\ApiCore\\LongRunning\\Gapic\\OperationsGapicClient' => array(
|
5378 |
'version' => '1.12.2.0',
|
5379 |
'path' => $vendorDir . '/google/gax/src/LongRunning/Gapic/OperationsGapicClient.php'
|
5380 |
),
|
5381 |
-
'Google\\ApiCore\\
|
5382 |
'version' => '1.12.2.0',
|
5383 |
-
'path' => $vendorDir . '/google/gax/src/
|
5384 |
),
|
5385 |
-
'Google\\ApiCore\\
|
5386 |
'version' => '1.12.2.0',
|
5387 |
-
'path' => $vendorDir . '/google/gax/src/
|
5388 |
),
|
5389 |
'Google\\ApiCore\\PathTemplate' => array(
|
5390 |
'version' => '1.12.2.0',
|
5391 |
'path' => $vendorDir . '/google/gax/src/PathTemplate.php'
|
5392 |
),
|
5393 |
-
'Google\\ApiCore\\
|
5394 |
'version' => '1.12.2.0',
|
5395 |
-
'path' => $vendorDir . '/google/gax/src/
|
5396 |
),
|
5397 |
-
'Google\\ApiCore\\
|
5398 |
'version' => '1.12.2.0',
|
5399 |
-
'path' => $vendorDir . '/google/gax/src/
|
5400 |
),
|
5401 |
-
'Google\\ApiCore\\
|
5402 |
'version' => '1.12.2.0',
|
5403 |
-
'path' => $vendorDir . '/google/gax/src/
|
5404 |
),
|
5405 |
-
'Google\\ApiCore\\
|
5406 |
'version' => '1.12.2.0',
|
5407 |
-
'path' => $vendorDir . '/google/gax/src/
|
5408 |
),
|
5409 |
-
'Google\\ApiCore\\
|
5410 |
'version' => '1.12.2.0',
|
5411 |
-
'path' => $vendorDir . '/google/gax/src/
|
5412 |
),
|
5413 |
-
'Google\\ApiCore\\
|
5414 |
'version' => '1.12.2.0',
|
5415 |
-
'path' => $vendorDir . '/google/gax/src/
|
5416 |
),
|
5417 |
-
'Google\\ApiCore\\
|
5418 |
'version' => '1.12.2.0',
|
5419 |
-
'path' => $vendorDir . '/google/gax/src/
|
5420 |
),
|
5421 |
-
'Google\\ApiCore\\
|
5422 |
'version' => '1.12.2.0',
|
5423 |
-
'path' => $vendorDir . '/google/gax/src/
|
5424 |
),
|
5425 |
-
'Google\\ApiCore\\
|
5426 |
'version' => '1.12.2.0',
|
5427 |
-
'path' => $vendorDir . '/google/gax/src/
|
5428 |
),
|
5429 |
-
'Google\\ApiCore\\
|
5430 |
'version' => '1.12.2.0',
|
5431 |
-
'path' => $vendorDir . '/google/gax/src/
|
5432 |
),
|
5433 |
-
'Google\\ApiCore\\
|
5434 |
'version' => '1.12.2.0',
|
5435 |
-
'path' => $vendorDir . '/google/gax/src/
|
5436 |
),
|
5437 |
-
'Google\\ApiCore\\
|
5438 |
'version' => '1.12.2.0',
|
5439 |
-
'path' => $vendorDir . '/google/gax/src/
|
5440 |
),
|
5441 |
-
'Google\\ApiCore\\
|
5442 |
'version' => '1.12.2.0',
|
5443 |
-
'path' => $vendorDir . '/google/gax/src/
|
5444 |
),
|
5445 |
-
'Google\\ApiCore\\
|
5446 |
'version' => '1.12.2.0',
|
5447 |
-
'path' => $vendorDir . '/google/gax/src/
|
5448 |
),
|
5449 |
-
'Google\\ApiCore\\
|
5450 |
'version' => '1.12.2.0',
|
5451 |
-
'path' => $vendorDir . '/google/gax/src/
|
5452 |
),
|
5453 |
-
'Google\\ApiCore\\
|
5454 |
'version' => '1.12.2.0',
|
5455 |
-
'path' => $vendorDir . '/google/gax/src/
|
5456 |
),
|
5457 |
-
'Google\\ApiCore\\
|
5458 |
'version' => '1.12.2.0',
|
5459 |
-
'path' => $vendorDir . '/google/gax/src/
|
5460 |
),
|
5461 |
-
'Google\\ApiCore\\
|
5462 |
'version' => '1.12.2.0',
|
5463 |
-
'path' => $vendorDir . '/google/gax/src/
|
5464 |
),
|
5465 |
-
'Google\\ApiCore\\
|
5466 |
'version' => '1.12.2.0',
|
5467 |
-
'path' => $vendorDir . '/google/gax/src/
|
5468 |
),
|
5469 |
-
'Google\\ApiCore\\
|
5470 |
'version' => '1.12.2.0',
|
5471 |
-
'path' => $vendorDir . '/google/gax/src/
|
5472 |
),
|
5473 |
-
'Google\\ApiCore\\
|
5474 |
'version' => '1.12.2.0',
|
5475 |
-
'path' => $vendorDir . '/google/gax/src/
|
5476 |
),
|
5477 |
-
'Google\\ApiCore\\
|
5478 |
'version' => '1.12.2.0',
|
5479 |
-
'path' => $vendorDir . '/google/gax/src/
|
5480 |
),
|
5481 |
-
'Google\\ApiCore\\
|
5482 |
'version' => '1.12.2.0',
|
5483 |
-
'path' => $vendorDir . '/google/gax/src/
|
5484 |
),
|
5485 |
-
'Google\\ApiCore\\
|
5486 |
'version' => '1.12.2.0',
|
5487 |
-
'path' => $vendorDir . '/google/gax/src/
|
5488 |
),
|
5489 |
-
'Google\\ApiCore\\
|
5490 |
'version' => '1.12.2.0',
|
5491 |
-
'path' => $vendorDir . '/google/gax/src/
|
5492 |
),
|
5493 |
-
'Google\\ApiCore\\
|
5494 |
'version' => '1.12.2.0',
|
5495 |
-
'path' => $vendorDir . '/google/gax/src/
|
5496 |
),
|
5497 |
-
'Google\\ApiCore\\
|
5498 |
'version' => '1.12.2.0',
|
5499 |
-
'path' => $vendorDir . '/google/gax/src/
|
5500 |
),
|
5501 |
-
'Google\\ApiCore\\
|
5502 |
'version' => '1.12.2.0',
|
5503 |
-
'path' => $vendorDir . '/google/gax/src/
|
5504 |
),
|
5505 |
-
'Google\\ApiCore\\
|
5506 |
'version' => '1.12.2.0',
|
5507 |
-
'path' => $vendorDir . '/google/gax/src/
|
5508 |
),
|
5509 |
-
'Google\\ApiCore\\
|
5510 |
'version' => '1.12.2.0',
|
5511 |
-
'path' => $vendorDir . '/google/gax/src/
|
5512 |
),
|
5513 |
-
'Google\\ApiCore\\
|
5514 |
'version' => '1.12.2.0',
|
5515 |
-
'path' => $vendorDir . '/google/gax/src/
|
5516 |
),
|
5517 |
-
'Google\\ApiCore\\
|
5518 |
'version' => '1.12.2.0',
|
5519 |
-
'path' => $vendorDir . '/google/gax/src/
|
5520 |
),
|
5521 |
-
'Google\\ApiCore\\
|
5522 |
'version' => '1.12.2.0',
|
5523 |
-
'path' => $vendorDir . '/google/gax/src/
|
5524 |
),
|
5525 |
-
'Google\\ApiCore\\
|
5526 |
'version' => '1.12.2.0',
|
5527 |
-
'path' => $vendorDir . '/google/gax/src/
|
5528 |
),
|
5529 |
-
'Google\\
|
5530 |
-
'version' => '12.
|
5531 |
-
'path' => $vendorDir . '/
|
5532 |
),
|
5533 |
-
'Google\\Ads\\GoogleAds\\
|
5534 |
'version' => '12.1.0.0',
|
5535 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5536 |
),
|
5537 |
-
'Google\\Ads\\GoogleAds\\
|
5538 |
'version' => '12.1.0.0',
|
5539 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5540 |
),
|
5541 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5542 |
'version' => '12.1.0.0',
|
5543 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5544 |
),
|
5545 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5546 |
'version' => '12.1.0.0',
|
5547 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5548 |
),
|
5549 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5550 |
'version' => '12.1.0.0',
|
5551 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5552 |
),
|
5553 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5554 |
'version' => '12.1.0.0',
|
5555 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5556 |
),
|
5557 |
-
'Google\\Ads\\GoogleAds\\
|
5558 |
'version' => '12.1.0.0',
|
5559 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5560 |
),
|
5561 |
-
'Google\\Ads\\GoogleAds\\
|
5562 |
'version' => '12.1.0.0',
|
5563 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5564 |
),
|
5565 |
-
'Google\\Ads\\GoogleAds\\
|
5566 |
'version' => '12.1.0.0',
|
5567 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5568 |
),
|
5569 |
-
'Google\\Ads\\GoogleAds\\
|
5570 |
'version' => '12.1.0.0',
|
5571 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5572 |
),
|
5573 |
-
'Google\\Ads\\GoogleAds\\
|
5574 |
'version' => '12.1.0.0',
|
5575 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5576 |
),
|
5577 |
-
'Google\\Ads\\GoogleAds\\
|
5578 |
'version' => '12.1.0.0',
|
5579 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5580 |
),
|
5581 |
-
'Google\\Ads\\GoogleAds\\
|
5582 |
'version' => '12.1.0.0',
|
5583 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5584 |
),
|
5585 |
-
'Google\\Ads\\GoogleAds\\
|
5586 |
'version' => '12.1.0.0',
|
5587 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/
|
5588 |
),
|
5589 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5590 |
'version' => '12.1.0.0',
|
5591 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5592 |
),
|
5593 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5594 |
'version' => '12.1.0.0',
|
5595 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5596 |
),
|
5597 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5598 |
'version' => '12.1.0.0',
|
5599 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5600 |
),
|
5601 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5602 |
'version' => '12.1.0.0',
|
5603 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5604 |
),
|
5605 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5606 |
'version' => '12.1.0.0',
|
5607 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5608 |
),
|
5609 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5610 |
'version' => '12.1.0.0',
|
5611 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5612 |
),
|
5613 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5614 |
'version' => '12.1.0.0',
|
5615 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5616 |
),
|
5617 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5618 |
'version' => '12.1.0.0',
|
5619 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5620 |
),
|
5621 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5622 |
'version' => '12.1.0.0',
|
5623 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5624 |
),
|
5625 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5626 |
'version' => '12.1.0.0',
|
5627 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5628 |
),
|
5629 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5630 |
'version' => '12.1.0.0',
|
5631 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5632 |
),
|
5633 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5634 |
'version' => '12.1.0.0',
|
5635 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5636 |
),
|
5637 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5638 |
'version' => '12.1.0.0',
|
5639 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5640 |
),
|
5641 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5642 |
'version' => '12.1.0.0',
|
5643 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5644 |
),
|
5645 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5646 |
'version' => '12.1.0.0',
|
5647 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5648 |
),
|
5649 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5650 |
'version' => '12.1.0.0',
|
5651 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5652 |
),
|
5653 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5654 |
'version' => '12.1.0.0',
|
5655 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5656 |
),
|
5657 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5658 |
'version' => '12.1.0.0',
|
5659 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5660 |
),
|
5661 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5662 |
'version' => '12.1.0.0',
|
5663 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5664 |
),
|
5665 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5666 |
'version' => '12.1.0.0',
|
5667 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5668 |
),
|
5669 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5670 |
'version' => '12.1.0.0',
|
5671 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5672 |
),
|
5673 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5674 |
'version' => '12.1.0.0',
|
5675 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5676 |
),
|
5677 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5678 |
'version' => '12.1.0.0',
|
5679 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5680 |
),
|
5681 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5682 |
'version' => '12.1.0.0',
|
5683 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5684 |
),
|
5685 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5686 |
'version' => '12.1.0.0',
|
5687 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5688 |
),
|
5689 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5690 |
'version' => '12.1.0.0',
|
5691 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5692 |
),
|
5693 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5694 |
'version' => '12.1.0.0',
|
5695 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5696 |
),
|
5697 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5698 |
'version' => '12.1.0.0',
|
5699 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5700 |
),
|
5701 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5702 |
'version' => '12.1.0.0',
|
5703 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5704 |
),
|
5705 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5706 |
'version' => '12.1.0.0',
|
5707 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5708 |
),
|
5709 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5710 |
'version' => '12.1.0.0',
|
5711 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5712 |
),
|
5713 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5714 |
'version' => '12.1.0.0',
|
5715 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5716 |
),
|
5717 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5718 |
'version' => '12.1.0.0',
|
5719 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5720 |
),
|
5721 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5722 |
'version' => '12.1.0.0',
|
5723 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5724 |
),
|
5725 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5726 |
'version' => '12.1.0.0',
|
5727 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5728 |
),
|
5729 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5730 |
'version' => '12.1.0.0',
|
5731 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5732 |
),
|
5733 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5734 |
'version' => '12.1.0.0',
|
5735 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5736 |
),
|
5737 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5738 |
'version' => '12.1.0.0',
|
5739 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5740 |
),
|
5741 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5742 |
'version' => '12.1.0.0',
|
5743 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5744 |
),
|
5745 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5746 |
'version' => '12.1.0.0',
|
5747 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5748 |
),
|
5749 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5750 |
'version' => '12.1.0.0',
|
5751 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5752 |
),
|
5753 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5754 |
'version' => '12.1.0.0',
|
5755 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5756 |
),
|
5757 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5758 |
'version' => '12.1.0.0',
|
5759 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5760 |
),
|
5761 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5762 |
'version' => '12.1.0.0',
|
5763 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5764 |
),
|
5765 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5766 |
'version' => '12.1.0.0',
|
5767 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5768 |
),
|
5769 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5770 |
'version' => '12.1.0.0',
|
5771 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5772 |
),
|
5773 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5774 |
'version' => '12.1.0.0',
|
5775 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5776 |
),
|
5777 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5778 |
'version' => '12.1.0.0',
|
5779 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5780 |
),
|
5781 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5782 |
'version' => '12.1.0.0',
|
5783 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5784 |
),
|
5785 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5786 |
'version' => '12.1.0.0',
|
5787 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5788 |
),
|
5789 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5790 |
'version' => '12.1.0.0',
|
5791 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5792 |
),
|
5793 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5794 |
'version' => '12.1.0.0',
|
5795 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5796 |
),
|
5797 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5798 |
'version' => '12.1.0.0',
|
5799 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5800 |
),
|
5801 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5802 |
'version' => '12.1.0.0',
|
5803 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5804 |
),
|
5805 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5806 |
'version' => '12.1.0.0',
|
5807 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5808 |
),
|
5809 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5810 |
'version' => '12.1.0.0',
|
5811 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5812 |
),
|
5813 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5814 |
'version' => '12.1.0.0',
|
5815 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5816 |
),
|
5817 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5818 |
'version' => '12.1.0.0',
|
5819 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5820 |
),
|
5821 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5822 |
'version' => '12.1.0.0',
|
5823 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5824 |
),
|
5825 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5826 |
'version' => '12.1.0.0',
|
5827 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5828 |
),
|
5829 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5830 |
'version' => '12.1.0.0',
|
5831 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5832 |
),
|
5833 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5834 |
'version' => '12.1.0.0',
|
5835 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5836 |
),
|
5837 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5838 |
'version' => '12.1.0.0',
|
5839 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5840 |
),
|
5841 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5842 |
'version' => '12.1.0.0',
|
5843 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5844 |
),
|
5845 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5846 |
'version' => '12.1.0.0',
|
5847 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5848 |
),
|
5849 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5850 |
'version' => '12.1.0.0',
|
5851 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5852 |
),
|
5853 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5854 |
'version' => '12.1.0.0',
|
5855 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5856 |
),
|
5857 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5858 |
'version' => '12.1.0.0',
|
5859 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5860 |
),
|
5861 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5862 |
'version' => '12.1.0.0',
|
5863 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5864 |
),
|
5865 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5866 |
'version' => '12.1.0.0',
|
5867 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5868 |
),
|
5869 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5870 |
'version' => '12.1.0.0',
|
5871 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5872 |
),
|
5873 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5874 |
'version' => '12.1.0.0',
|
5875 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5876 |
),
|
5877 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5878 |
'version' => '12.1.0.0',
|
5879 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5880 |
),
|
5881 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5882 |
'version' => '12.1.0.0',
|
5883 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5884 |
),
|
5885 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5886 |
'version' => '12.1.0.0',
|
5887 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5888 |
),
|
5889 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5890 |
'version' => '12.1.0.0',
|
5891 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5892 |
),
|
5893 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5894 |
'version' => '12.1.0.0',
|
5895 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5896 |
),
|
5897 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5898 |
'version' => '12.1.0.0',
|
5899 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5900 |
),
|
5901 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5902 |
'version' => '12.1.0.0',
|
5903 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5904 |
),
|
5905 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5906 |
'version' => '12.1.0.0',
|
5907 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5908 |
),
|
5909 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5910 |
'version' => '12.1.0.0',
|
5911 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5912 |
),
|
5913 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5914 |
'version' => '12.1.0.0',
|
5915 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5916 |
),
|
5917 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5918 |
'version' => '12.1.0.0',
|
5919 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5920 |
),
|
5921 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5922 |
'version' => '12.1.0.0',
|
5923 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5924 |
),
|
5925 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5926 |
'version' => '12.1.0.0',
|
5927 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5928 |
),
|
5929 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5930 |
'version' => '12.1.0.0',
|
5931 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5932 |
),
|
5933 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5934 |
'version' => '12.1.0.0',
|
5935 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5936 |
),
|
5937 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5938 |
'version' => '12.1.0.0',
|
5939 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5940 |
),
|
5941 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5942 |
'version' => '12.1.0.0',
|
5943 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5944 |
),
|
5945 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5946 |
'version' => '12.1.0.0',
|
5947 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5948 |
),
|
5949 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5950 |
'version' => '12.1.0.0',
|
5951 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5952 |
),
|
5953 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5954 |
'version' => '12.1.0.0',
|
5955 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5956 |
),
|
5957 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5958 |
'version' => '12.1.0.0',
|
5959 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5960 |
),
|
5961 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5962 |
'version' => '12.1.0.0',
|
5963 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5964 |
),
|
5965 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5966 |
'version' => '12.1.0.0',
|
5967 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5968 |
),
|
5969 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5970 |
'version' => '12.1.0.0',
|
5971 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5972 |
),
|
5973 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5974 |
'version' => '12.1.0.0',
|
5975 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5976 |
),
|
5977 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5978 |
'version' => '12.1.0.0',
|
5979 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5980 |
),
|
5981 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5982 |
'version' => '12.1.0.0',
|
5983 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5984 |
),
|
5985 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5986 |
'version' => '12.1.0.0',
|
5987 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5988 |
),
|
5989 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5990 |
'version' => '12.1.0.0',
|
5991 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5992 |
),
|
5993 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5994 |
'version' => '12.1.0.0',
|
5995 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
5996 |
),
|
5997 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
5998 |
'version' => '12.1.0.0',
|
5999 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6000 |
),
|
6001 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6002 |
'version' => '12.1.0.0',
|
6003 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6004 |
),
|
6005 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6006 |
'version' => '12.1.0.0',
|
6007 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6008 |
),
|
6009 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6010 |
'version' => '12.1.0.0',
|
6011 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6012 |
),
|
6013 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6014 |
'version' => '12.1.0.0',
|
6015 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6016 |
),
|
6017 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6018 |
'version' => '12.1.0.0',
|
6019 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6020 |
),
|
6021 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6022 |
'version' => '12.1.0.0',
|
6023 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6024 |
),
|
6025 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6026 |
'version' => '12.1.0.0',
|
6027 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6028 |
),
|
6029 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6030 |
'version' => '12.1.0.0',
|
6031 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6032 |
),
|
6033 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6034 |
'version' => '12.1.0.0',
|
6035 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6036 |
),
|
6037 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6038 |
'version' => '12.1.0.0',
|
6039 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6040 |
),
|
6041 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6042 |
'version' => '12.1.0.0',
|
6043 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6044 |
),
|
6045 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6046 |
'version' => '12.1.0.0',
|
6047 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6048 |
),
|
6049 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6050 |
'version' => '12.1.0.0',
|
6051 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6052 |
),
|
6053 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6054 |
'version' => '12.1.0.0',
|
6055 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6056 |
),
|
6057 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6058 |
'version' => '12.1.0.0',
|
6059 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6060 |
),
|
6061 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6062 |
'version' => '12.1.0.0',
|
6063 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6064 |
),
|
6065 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6066 |
'version' => '12.1.0.0',
|
6067 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6068 |
),
|
6069 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6070 |
'version' => '12.1.0.0',
|
6071 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6072 |
),
|
6073 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6074 |
'version' => '12.1.0.0',
|
6075 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6076 |
),
|
6077 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6078 |
'version' => '12.1.0.0',
|
6079 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6080 |
),
|
6081 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6082 |
'version' => '12.1.0.0',
|
6083 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6084 |
),
|
6085 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6086 |
'version' => '12.1.0.0',
|
6087 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6088 |
),
|
6089 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6090 |
'version' => '12.1.0.0',
|
6091 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6092 |
),
|
6093 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6094 |
'version' => '12.1.0.0',
|
6095 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6096 |
),
|
6097 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6098 |
'version' => '12.1.0.0',
|
6099 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6100 |
),
|
6101 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6102 |
'version' => '12.1.0.0',
|
6103 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6104 |
),
|
6105 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6106 |
'version' => '12.1.0.0',
|
6107 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6108 |
),
|
6109 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6110 |
'version' => '12.1.0.0',
|
6111 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6112 |
),
|
6113 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6114 |
'version' => '12.1.0.0',
|
6115 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6116 |
),
|
6117 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6118 |
'version' => '12.1.0.0',
|
6119 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6120 |
),
|
6121 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6122 |
'version' => '12.1.0.0',
|
6123 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6124 |
),
|
6125 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6126 |
'version' => '12.1.0.0',
|
6127 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6128 |
),
|
6129 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6130 |
'version' => '12.1.0.0',
|
6131 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6132 |
),
|
6133 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6134 |
'version' => '12.1.0.0',
|
6135 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6136 |
),
|
6137 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6138 |
'version' => '12.1.0.0',
|
6139 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6140 |
),
|
6141 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6142 |
'version' => '12.1.0.0',
|
6143 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6144 |
),
|
6145 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6146 |
'version' => '12.1.0.0',
|
6147 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6148 |
),
|
6149 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6150 |
'version' => '12.1.0.0',
|
6151 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6152 |
),
|
6153 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6154 |
'version' => '12.1.0.0',
|
6155 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6156 |
),
|
6157 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6158 |
'version' => '12.1.0.0',
|
6159 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6160 |
),
|
6161 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6162 |
'version' => '12.1.0.0',
|
6163 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6164 |
),
|
6165 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6166 |
'version' => '12.1.0.0',
|
6167 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6168 |
),
|
6169 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6170 |
'version' => '12.1.0.0',
|
6171 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6172 |
),
|
6173 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6174 |
'version' => '12.1.0.0',
|
6175 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6176 |
),
|
6177 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6178 |
'version' => '12.1.0.0',
|
6179 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6180 |
),
|
6181 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6182 |
'version' => '12.1.0.0',
|
6183 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6184 |
),
|
6185 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6186 |
'version' => '12.1.0.0',
|
6187 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6188 |
),
|
6189 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6190 |
'version' => '12.1.0.0',
|
6191 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6192 |
),
|
6193 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6194 |
'version' => '12.1.0.0',
|
6195 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6196 |
),
|
6197 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6198 |
'version' => '12.1.0.0',
|
6199 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6200 |
),
|
6201 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6202 |
'version' => '12.1.0.0',
|
6203 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6204 |
),
|
6205 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6206 |
'version' => '12.1.0.0',
|
6207 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6208 |
),
|
6209 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6210 |
'version' => '12.1.0.0',
|
6211 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6212 |
),
|
6213 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6214 |
'version' => '12.1.0.0',
|
6215 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6216 |
),
|
6217 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6218 |
'version' => '12.1.0.0',
|
6219 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6220 |
),
|
6221 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6222 |
'version' => '12.1.0.0',
|
6223 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6224 |
),
|
6225 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6226 |
'version' => '12.1.0.0',
|
6227 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6228 |
),
|
6229 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6230 |
'version' => '12.1.0.0',
|
6231 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6232 |
),
|
6233 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6234 |
'version' => '12.1.0.0',
|
6235 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6236 |
),
|
6237 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6238 |
'version' => '12.1.0.0',
|
6239 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6240 |
),
|
6241 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6242 |
'version' => '12.1.0.0',
|
6243 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6244 |
),
|
6245 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6246 |
'version' => '12.1.0.0',
|
6247 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6248 |
),
|
6249 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6250 |
'version' => '12.1.0.0',
|
6251 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6252 |
),
|
6253 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6254 |
'version' => '12.1.0.0',
|
6255 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6256 |
),
|
6257 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6258 |
'version' => '12.1.0.0',
|
6259 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6260 |
),
|
6261 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6262 |
'version' => '12.1.0.0',
|
6263 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6264 |
),
|
6265 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6266 |
'version' => '12.1.0.0',
|
6267 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6268 |
),
|
6269 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6270 |
'version' => '12.1.0.0',
|
6271 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6272 |
),
|
6273 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6274 |
'version' => '12.1.0.0',
|
6275 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6276 |
),
|
6277 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6278 |
'version' => '12.1.0.0',
|
6279 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6280 |
),
|
6281 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6282 |
'version' => '12.1.0.0',
|
6283 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6284 |
),
|
6285 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6286 |
'version' => '12.1.0.0',
|
6287 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6288 |
),
|
6289 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6290 |
'version' => '12.1.0.0',
|
6291 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6292 |
),
|
6293 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6294 |
'version' => '12.1.0.0',
|
6295 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6296 |
),
|
6297 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6298 |
'version' => '12.1.0.0',
|
6299 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6300 |
),
|
6301 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6302 |
'version' => '12.1.0.0',
|
6303 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6304 |
),
|
6305 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6306 |
'version' => '12.1.0.0',
|
6307 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6308 |
),
|
6309 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6310 |
'version' => '12.1.0.0',
|
6311 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6312 |
),
|
6313 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6314 |
'version' => '12.1.0.0',
|
6315 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6316 |
),
|
6317 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6318 |
'version' => '12.1.0.0',
|
6319 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6320 |
),
|
6321 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6322 |
'version' => '12.1.0.0',
|
6323 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6324 |
-
),
|
6325 |
-
'Google\\Ads\\GoogleAds\\V9\\Enums\\AssetGroupStatusEnum_AssetGroupStatus' => array(
|
6326 |
-
'version' => '12.1.0.0',
|
6327 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Enums/AssetGroupStatusEnum_AssetGroupStatus.php'
|
6328 |
),
|
6329 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6330 |
'version' => '12.1.0.0',
|
6331 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6332 |
),
|
6333 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6334 |
'version' => '12.1.0.0',
|
6335 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6336 |
),
|
6337 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6338 |
'version' => '12.1.0.0',
|
6339 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6340 |
),
|
6341 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6342 |
'version' => '12.1.0.0',
|
6343 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6344 |
),
|
6345 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6346 |
'version' => '12.1.0.0',
|
6347 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6348 |
),
|
6349 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6350 |
'version' => '12.1.0.0',
|
6351 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6352 |
),
|
6353 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6354 |
'version' => '12.1.0.0',
|
6355 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6356 |
),
|
6357 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6358 |
'version' => '12.1.0.0',
|
6359 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6360 |
),
|
6361 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6362 |
'version' => '12.1.0.0',
|
6363 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6364 |
),
|
6365 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6366 |
'version' => '12.1.0.0',
|
6367 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6368 |
),
|
6369 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6370 |
'version' => '12.1.0.0',
|
6371 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6372 |
),
|
6373 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6374 |
'version' => '12.1.0.0',
|
6375 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6376 |
),
|
6377 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6378 |
'version' => '12.1.0.0',
|
6379 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6380 |
),
|
6381 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6382 |
'version' => '12.1.0.0',
|
6383 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6384 |
),
|
6385 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6386 |
'version' => '12.1.0.0',
|
6387 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6388 |
),
|
6389 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6390 |
'version' => '12.1.0.0',
|
6391 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6392 |
),
|
6393 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6394 |
'version' => '12.1.0.0',
|
6395 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6396 |
),
|
6397 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6398 |
'version' => '12.1.0.0',
|
6399 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6400 |
),
|
6401 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6402 |
'version' => '12.1.0.0',
|
6403 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6404 |
),
|
6405 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6406 |
'version' => '12.1.0.0',
|
6407 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6408 |
),
|
6409 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6410 |
'version' => '12.1.0.0',
|
6411 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6412 |
),
|
6413 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6414 |
'version' => '12.1.0.0',
|
6415 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6416 |
),
|
6417 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6418 |
'version' => '12.1.0.0',
|
6419 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6420 |
),
|
6421 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6422 |
'version' => '12.1.0.0',
|
6423 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6424 |
),
|
6425 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6426 |
'version' => '12.1.0.0',
|
6427 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6428 |
),
|
6429 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6430 |
'version' => '12.1.0.0',
|
6431 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6432 |
),
|
6433 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6434 |
'version' => '12.1.0.0',
|
6435 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6436 |
),
|
6437 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6438 |
'version' => '12.1.0.0',
|
6439 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6440 |
),
|
6441 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6442 |
'version' => '12.1.0.0',
|
6443 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6444 |
),
|
6445 |
'Google\\Ads\\GoogleAds\\V9\\Common\\DisplayUploadAdInfo' => array(
|
6446 |
'version' => '12.1.0.0',
|
6447 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DisplayUploadAdInfo.php'
|
6448 |
),
|
6449 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6450 |
'version' => '12.1.0.0',
|
6451 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6452 |
),
|
6453 |
'Google\\Ads\\GoogleAds\\V9\\Common\\UrlCollection' => array(
|
6454 |
'version' => '12.1.0.0',
|
6455 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UrlCollection.php'
|
6456 |
),
|
6457 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6458 |
-
'version' => '12.1.0.0',
|
6459 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MonthlySearchVolume.php'
|
6460 |
-
),
|
6461 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetCpa' => array(
|
6462 |
-
'version' => '12.1.0.0',
|
6463 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetCpa.php'
|
6464 |
-
),
|
6465 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\ResponsiveSearchAdInfo' => array(
|
6466 |
'version' => '12.1.0.0',
|
6467 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6468 |
),
|
6469 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6470 |
'version' => '12.1.0.0',
|
6471 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6472 |
),
|
6473 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6474 |
'version' => '12.1.0.0',
|
6475 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6476 |
),
|
6477 |
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelAdvanceBookingWindowInfo' => array(
|
6478 |
'version' => '12.1.0.0',
|
6479 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelAdvanceBookingWindowInfo.php'
|
6480 |
),
|
6481 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6482 |
'version' => '12.1.0.0',
|
6483 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6484 |
),
|
6485 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6486 |
'version' => '12.1.0.0',
|
6487 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6488 |
),
|
6489 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6490 |
'version' => '12.1.0.0',
|
6491 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6492 |
),
|
6493 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6494 |
'version' => '12.1.0.0',
|
6495 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6496 |
),
|
6497 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6498 |
'version' => '12.1.0.0',
|
6499 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6500 |
),
|
6501 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6502 |
'version' => '12.1.0.0',
|
6503 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6504 |
),
|
6505 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6506 |
'version' => '12.1.0.0',
|
6507 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6508 |
),
|
6509 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6510 |
'version' => '12.1.0.0',
|
6511 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6512 |
),
|
6513 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6514 |
'version' => '12.1.0.0',
|
6515 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6516 |
),
|
6517 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6518 |
'version' => '12.1.0.0',
|
6519 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6520 |
),
|
6521 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6522 |
'version' => '12.1.0.0',
|
6523 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6524 |
),
|
6525 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6526 |
'version' => '12.1.0.0',
|
6527 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6528 |
),
|
6529 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6530 |
'version' => '12.1.0.0',
|
6531 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6532 |
),
|
6533 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6534 |
'version' => '12.1.0.0',
|
6535 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6536 |
),
|
6537 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6538 |
'version' => '12.1.0.0',
|
6539 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6540 |
),
|
6541 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6542 |
'version' => '12.1.0.0',
|
6543 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6544 |
),
|
6545 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6546 |
'version' => '12.1.0.0',
|
6547 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6548 |
),
|
6549 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6550 |
'version' => '12.1.0.0',
|
6551 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6552 |
),
|
6553 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6554 |
'version' => '12.1.0.0',
|
6555 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6556 |
),
|
6557 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6558 |
'version' => '12.1.0.0',
|
6559 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6560 |
),
|
6561 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6562 |
'version' => '12.1.0.0',
|
6563 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6564 |
),
|
6565 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6566 |
'version' => '12.1.0.0',
|
6567 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6568 |
),
|
6569 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6570 |
'version' => '12.1.0.0',
|
6571 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6572 |
),
|
6573 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6574 |
'version' => '12.1.0.0',
|
6575 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6576 |
),
|
6577 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6578 |
'version' => '12.1.0.0',
|
6579 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6580 |
),
|
6581 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6582 |
'version' => '12.1.0.0',
|
6583 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6584 |
),
|
6585 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6586 |
'version' => '12.1.0.0',
|
6587 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6588 |
),
|
6589 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6590 |
'version' => '12.1.0.0',
|
6591 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6592 |
),
|
6593 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6594 |
'version' => '12.1.0.0',
|
6595 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6596 |
),
|
6597 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6598 |
'version' => '12.1.0.0',
|
6599 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6600 |
),
|
6601 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6602 |
'version' => '12.1.0.0',
|
6603 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6604 |
),
|
6605 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6606 |
'version' => '12.1.0.0',
|
6607 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6608 |
),
|
6609 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6610 |
'version' => '12.1.0.0',
|
6611 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6612 |
),
|
6613 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6614 |
'version' => '12.1.0.0',
|
6615 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6616 |
),
|
6617 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6618 |
'version' => '12.1.0.0',
|
6619 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6620 |
),
|
6621 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6622 |
'version' => '12.1.0.0',
|
6623 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6624 |
),
|
6625 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6626 |
'version' => '12.1.0.0',
|
6627 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6628 |
),
|
6629 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6630 |
'version' => '12.1.0.0',
|
6631 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6632 |
),
|
6633 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6634 |
'version' => '12.1.0.0',
|
6635 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6636 |
),
|
6637 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6638 |
'version' => '12.1.0.0',
|
6639 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6640 |
),
|
6641 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6642 |
'version' => '12.1.0.0',
|
6643 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6644 |
),
|
6645 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6646 |
'version' => '12.1.0.0',
|
6647 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6648 |
),
|
6649 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6650 |
'version' => '12.1.0.0',
|
6651 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6652 |
),
|
6653 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6654 |
'version' => '12.1.0.0',
|
6655 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6656 |
),
|
6657 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6658 |
'version' => '12.1.0.0',
|
6659 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6660 |
),
|
6661 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6662 |
'version' => '12.1.0.0',
|
6663 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6664 |
),
|
6665 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6666 |
'version' => '12.1.0.0',
|
6667 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6668 |
),
|
6669 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6670 |
'version' => '12.1.0.0',
|
6671 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6672 |
),
|
6673 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6674 |
'version' => '12.1.0.0',
|
6675 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6676 |
),
|
6677 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6678 |
'version' => '12.1.0.0',
|
6679 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6680 |
),
|
6681 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6682 |
'version' => '12.1.0.0',
|
6683 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6684 |
),
|
6685 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6686 |
'version' => '12.1.0.0',
|
6687 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6688 |
),
|
6689 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6690 |
'version' => '12.1.0.0',
|
6691 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6692 |
),
|
6693 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6694 |
'version' => '12.1.0.0',
|
6695 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6696 |
),
|
6697 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6698 |
'version' => '12.1.0.0',
|
6699 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6700 |
),
|
6701 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6702 |
'version' => '12.1.0.0',
|
6703 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6704 |
),
|
6705 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6706 |
'version' => '12.1.0.0',
|
6707 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6708 |
),
|
6709 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6710 |
'version' => '12.1.0.0',
|
6711 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6712 |
),
|
6713 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6714 |
'version' => '12.1.0.0',
|
6715 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6716 |
),
|
6717 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6718 |
'version' => '12.1.0.0',
|
6719 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6720 |
),
|
6721 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6722 |
'version' => '12.1.0.0',
|
6723 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6724 |
),
|
6725 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6726 |
'version' => '12.1.0.0',
|
6727 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6728 |
),
|
6729 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6730 |
'version' => '12.1.0.0',
|
6731 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6732 |
),
|
6733 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6734 |
'version' => '12.1.0.0',
|
6735 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6736 |
),
|
6737 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6738 |
'version' => '12.1.0.0',
|
6739 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6740 |
),
|
6741 |
-
'Google\\Ads\\GoogleAds\\V9\\Common\\
|
6742 |
'version' => '12.1.0.0',
|
6743 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/
|
6744 |
),
|
6745 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6746 |
'version' => '12.1.0.0',
|
6747 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6748 |
),
|
6749 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6750 |
'version' => '12.1.0.0',
|
6751 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6752 |
),
|
6753 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6754 |
'version' => '12.1.0.0',
|
6755 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6756 |
),
|
6757 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6758 |
'version' => '12.1.0.0',
|
6759 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6760 |
),
|
6761 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6762 |
'version' => '12.1.0.0',
|
6763 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6764 |
),
|
6765 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6766 |
'version' => '12.1.0.0',
|
6767 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6768 |
),
|
6769 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6770 |
'version' => '12.1.0.0',
|
6771 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6772 |
),
|
6773 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6774 |
'version' => '12.1.0.0',
|
6775 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6776 |
),
|
6777 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6778 |
'version' => '12.1.0.0',
|
6779 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6780 |
),
|
6781 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6782 |
'version' => '12.1.0.0',
|
6783 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6784 |
),
|
6785 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6786 |
'version' => '12.1.0.0',
|
6787 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6788 |
),
|
6789 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6790 |
'version' => '12.1.0.0',
|
6791 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6792 |
),
|
6793 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6794 |
'version' => '12.1.0.0',
|
6795 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6796 |
),
|
6797 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6798 |
'version' => '12.1.0.0',
|
6799 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6800 |
),
|
6801 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6802 |
'version' => '12.1.0.0',
|
6803 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6804 |
),
|
6805 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6806 |
'version' => '12.1.0.0',
|
6807 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6808 |
),
|
6809 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6810 |
'version' => '12.1.0.0',
|
6811 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6812 |
),
|
6813 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6814 |
'version' => '12.1.0.0',
|
6815 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6816 |
),
|
6817 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6818 |
'version' => '12.1.0.0',
|
6819 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6820 |
),
|
6821 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6822 |
'version' => '12.1.0.0',
|
6823 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6824 |
),
|
6825 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6826 |
'version' => '12.1.0.0',
|
6827 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6828 |
),
|
6829 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6830 |
'version' => '12.1.0.0',
|
6831 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6832 |
),
|
6833 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6834 |
'version' => '12.1.0.0',
|
6835 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6836 |
),
|
6837 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6838 |
'version' => '12.1.0.0',
|
6839 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6840 |
),
|
6841 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6842 |
'version' => '12.1.0.0',
|
6843 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6844 |
),
|
6845 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6846 |
'version' => '12.1.0.0',
|
6847 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6848 |
),
|
6849 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6850 |
'version' => '12.1.0.0',
|
6851 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6852 |
),
|
6853 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6854 |
'version' => '12.1.0.0',
|
6855 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6856 |
),
|
6857 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6858 |
'version' => '12.1.0.0',
|
6859 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6860 |
),
|
6861 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6862 |
'version' => '12.1.0.0',
|
6863 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6864 |
),
|
6865 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6866 |
'version' => '12.1.0.0',
|
6867 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6868 |
),
|
6869 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6870 |
'version' => '12.1.0.0',
|
6871 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6872 |
),
|
6873 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6874 |
'version' => '12.1.0.0',
|
6875 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6876 |
),
|
6877 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6878 |
'version' => '12.1.0.0',
|
6879 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6880 |
),
|
6881 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6882 |
'version' => '12.1.0.0',
|
6883 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6884 |
),
|
6885 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6886 |
'version' => '12.1.0.0',
|
6887 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6888 |
),
|
6889 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6890 |
'version' => '12.1.0.0',
|
6891 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6892 |
),
|
6893 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6894 |
'version' => '12.1.0.0',
|
6895 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6896 |
),
|
6897 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6898 |
'version' => '12.1.0.0',
|
6899 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6900 |
),
|
6901 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6902 |
'version' => '12.1.0.0',
|
6903 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6904 |
),
|
6905 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6906 |
'version' => '12.1.0.0',
|
6907 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6908 |
),
|
6909 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6910 |
'version' => '12.1.0.0',
|
6911 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6912 |
),
|
6913 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6914 |
'version' => '12.1.0.0',
|
6915 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6916 |
),
|
6917 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6918 |
'version' => '12.1.0.0',
|
6919 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6920 |
),
|
6921 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6922 |
'version' => '12.1.0.0',
|
6923 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6924 |
),
|
6925 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6926 |
'version' => '12.1.0.0',
|
6927 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6928 |
),
|
6929 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6930 |
'version' => '12.1.0.0',
|
6931 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6932 |
),
|
6933 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6934 |
'version' => '12.1.0.0',
|
6935 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6936 |
),
|
6937 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6938 |
'version' => '12.1.0.0',
|
6939 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6940 |
),
|
6941 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6942 |
'version' => '12.1.0.0',
|
6943 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6944 |
),
|
6945 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6946 |
'version' => '12.1.0.0',
|
6947 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6948 |
),
|
6949 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6950 |
'version' => '12.1.0.0',
|
6951 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6952 |
),
|
6953 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6954 |
'version' => '12.1.0.0',
|
6955 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6956 |
),
|
6957 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6958 |
'version' => '12.1.0.0',
|
6959 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6960 |
),
|
6961 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6962 |
'version' => '12.1.0.0',
|
6963 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6964 |
),
|
6965 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6966 |
'version' => '12.1.0.0',
|
6967 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6968 |
),
|
6969 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6970 |
'version' => '12.1.0.0',
|
6971 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6972 |
),
|
6973 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6974 |
'version' => '12.1.0.0',
|
6975 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6976 |
),
|
6977 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6978 |
'version' => '12.1.0.0',
|
6979 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6980 |
),
|
6981 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6982 |
'version' => '12.1.0.0',
|
6983 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6984 |
),
|
6985 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6986 |
'version' => '12.1.0.0',
|
6987 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6988 |
),
|
6989 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6990 |
'version' => '12.1.0.0',
|
6991 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6992 |
),
|
6993 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6994 |
'version' => '12.1.0.0',
|
6995 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
6996 |
),
|
6997 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
6998 |
'version' => '12.1.0.0',
|
6999 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7000 |
),
|
7001 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7002 |
'version' => '12.1.0.0',
|
7003 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7004 |
),
|
7005 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7006 |
'version' => '12.1.0.0',
|
7007 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7008 |
),
|
7009 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7010 |
'version' => '12.1.0.0',
|
7011 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7012 |
),
|
7013 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7014 |
'version' => '12.1.0.0',
|
7015 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7016 |
),
|
7017 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7018 |
'version' => '12.1.0.0',
|
7019 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7020 |
),
|
7021 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7022 |
'version' => '12.1.0.0',
|
7023 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7024 |
),
|
7025 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7026 |
'version' => '12.1.0.0',
|
7027 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7028 |
),
|
7029 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7030 |
'version' => '12.1.0.0',
|
7031 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7032 |
),
|
7033 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7034 |
'version' => '12.1.0.0',
|
7035 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7036 |
),
|
7037 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7038 |
'version' => '12.1.0.0',
|
7039 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7040 |
),
|
7041 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7042 |
'version' => '12.1.0.0',
|
7043 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7044 |
),
|
7045 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7046 |
'version' => '12.1.0.0',
|
7047 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7048 |
),
|
7049 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7050 |
'version' => '12.1.0.0',
|
7051 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7052 |
),
|
7053 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7054 |
'version' => '12.1.0.0',
|
7055 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7056 |
),
|
7057 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7058 |
'version' => '12.1.0.0',
|
7059 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7060 |
),
|
7061 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7062 |
'version' => '12.1.0.0',
|
7063 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7064 |
),
|
7065 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7066 |
'version' => '12.1.0.0',
|
7067 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7068 |
),
|
7069 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7070 |
'version' => '12.1.0.0',
|
7071 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7072 |
),
|
7073 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7074 |
'version' => '12.1.0.0',
|
7075 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7076 |
),
|
7077 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7078 |
'version' => '12.1.0.0',
|
7079 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7080 |
),
|
7081 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7082 |
'version' => '12.1.0.0',
|
7083 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7084 |
),
|
7085 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7086 |
'version' => '12.1.0.0',
|
7087 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7088 |
),
|
7089 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7090 |
'version' => '12.1.0.0',
|
7091 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7092 |
),
|
7093 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7094 |
'version' => '12.1.0.0',
|
7095 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7096 |
),
|
7097 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7098 |
'version' => '12.1.0.0',
|
7099 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7100 |
),
|
7101 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7102 |
'version' => '12.1.0.0',
|
7103 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7104 |
),
|
7105 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7106 |
'version' => '12.1.0.0',
|
7107 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7108 |
),
|
7109 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7110 |
'version' => '12.1.0.0',
|
7111 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7112 |
),
|
7113 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7114 |
'version' => '12.1.0.0',
|
7115 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7116 |
),
|
7117 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7118 |
'version' => '12.1.0.0',
|
7119 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7120 |
),
|
7121 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7122 |
'version' => '12.1.0.0',
|
7123 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7124 |
),
|
7125 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7126 |
'version' => '12.1.0.0',
|
7127 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7128 |
),
|
7129 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7130 |
'version' => '12.1.0.0',
|
7131 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7132 |
),
|
7133 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7134 |
'version' => '12.1.0.0',
|
7135 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7136 |
),
|
7137 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7138 |
'version' => '12.1.0.0',
|
7139 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7140 |
),
|
7141 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7142 |
'version' => '12.1.0.0',
|
7143 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7144 |
),
|
7145 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7146 |
'version' => '12.1.0.0',
|
7147 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7148 |
),
|
7149 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7150 |
'version' => '12.1.0.0',
|
7151 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7152 |
),
|
7153 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7154 |
'version' => '12.1.0.0',
|
7155 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7156 |
),
|
7157 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7158 |
'version' => '12.1.0.0',
|
7159 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7160 |
),
|
7161 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7162 |
'version' => '12.1.0.0',
|
7163 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7164 |
),
|
7165 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7166 |
'version' => '12.1.0.0',
|
7167 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7168 |
),
|
7169 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7170 |
'version' => '12.1.0.0',
|
7171 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7172 |
),
|
7173 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7174 |
'version' => '12.1.0.0',
|
7175 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7176 |
),
|
7177 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7178 |
'version' => '12.1.0.0',
|
7179 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7180 |
),
|
7181 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7182 |
'version' => '12.1.0.0',
|
7183 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7184 |
),
|
7185 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7186 |
'version' => '12.1.0.0',
|
7187 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7188 |
),
|
7189 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7190 |
'version' => '12.1.0.0',
|
7191 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7192 |
),
|
7193 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7194 |
'version' => '12.1.0.0',
|
7195 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7196 |
),
|
7197 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7198 |
'version' => '12.1.0.0',
|
7199 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7200 |
),
|
7201 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7202 |
'version' => '12.1.0.0',
|
7203 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7204 |
),
|
7205 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7206 |
'version' => '12.1.0.0',
|
7207 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7208 |
),
|
7209 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7210 |
'version' => '12.1.0.0',
|
7211 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7212 |
),
|
7213 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7214 |
'version' => '12.1.0.0',
|
7215 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7216 |
),
|
7217 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7218 |
'version' => '12.1.0.0',
|
7219 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7220 |
),
|
7221 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7222 |
'version' => '12.1.0.0',
|
7223 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7224 |
),
|
7225 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7226 |
'version' => '12.1.0.0',
|
7227 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7228 |
),
|
7229 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7230 |
'version' => '12.1.0.0',
|
7231 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7232 |
),
|
7233 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7234 |
'version' => '12.1.0.0',
|
7235 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7236 |
),
|
7237 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7238 |
'version' => '12.1.0.0',
|
7239 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7240 |
),
|
7241 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7242 |
'version' => '12.1.0.0',
|
7243 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7244 |
),
|
7245 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7246 |
'version' => '12.1.0.0',
|
7247 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7248 |
),
|
7249 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7250 |
'version' => '12.1.0.0',
|
7251 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7252 |
),
|
7253 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7254 |
'version' => '12.1.0.0',
|
7255 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7256 |
),
|
7257 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7258 |
'version' => '12.1.0.0',
|
7259 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7260 |
),
|
7261 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7262 |
'version' => '12.1.0.0',
|
7263 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7264 |
),
|
7265 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7266 |
'version' => '12.1.0.0',
|
7267 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7268 |
),
|
7269 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7270 |
'version' => '12.1.0.0',
|
7271 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7272 |
),
|
7273 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7274 |
'version' => '12.1.0.0',
|
7275 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7276 |
),
|
7277 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7278 |
'version' => '12.1.0.0',
|
7279 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7280 |
),
|
7281 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7282 |
'version' => '12.1.0.0',
|
7283 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7284 |
),
|
7285 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7286 |
'version' => '12.1.0.0',
|
7287 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7288 |
),
|
7289 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7290 |
'version' => '12.1.0.0',
|
7291 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7292 |
),
|
7293 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7294 |
'version' => '12.1.0.0',
|
7295 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7296 |
),
|
7297 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7298 |
'version' => '12.1.0.0',
|
7299 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7300 |
),
|
7301 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7302 |
'version' => '12.1.0.0',
|
7303 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7304 |
),
|
7305 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7306 |
'version' => '12.1.0.0',
|
7307 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7308 |
),
|
7309 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7310 |
'version' => '12.1.0.0',
|
7311 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7312 |
),
|
7313 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7314 |
'version' => '12.1.0.0',
|
7315 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7316 |
),
|
7317 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7318 |
'version' => '12.1.0.0',
|
7319 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7320 |
),
|
7321 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7322 |
'version' => '12.1.0.0',
|
7323 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7324 |
),
|
7325 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7326 |
'version' => '12.1.0.0',
|
7327 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7328 |
),
|
7329 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7330 |
'version' => '12.1.0.0',
|
7331 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7332 |
),
|
7333 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7334 |
'version' => '12.1.0.0',
|
7335 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7336 |
),
|
7337 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7338 |
'version' => '12.1.0.0',
|
7339 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7340 |
),
|
7341 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7342 |
'version' => '12.1.0.0',
|
7343 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7344 |
),
|
7345 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7346 |
'version' => '12.1.0.0',
|
7347 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7348 |
),
|
7349 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7350 |
'version' => '12.1.0.0',
|
7351 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7352 |
),
|
7353 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7354 |
'version' => '12.1.0.0',
|
7355 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7356 |
),
|
7357 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7358 |
'version' => '12.1.0.0',
|
7359 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7360 |
),
|
7361 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7362 |
'version' => '12.1.0.0',
|
7363 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7364 |
),
|
7365 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7366 |
'version' => '12.1.0.0',
|
7367 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7368 |
),
|
7369 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7370 |
'version' => '12.1.0.0',
|
7371 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7372 |
),
|
7373 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7374 |
'version' => '12.1.0.0',
|
7375 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7376 |
),
|
7377 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7378 |
'version' => '12.1.0.0',
|
7379 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7380 |
),
|
7381 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7382 |
'version' => '12.1.0.0',
|
7383 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7384 |
),
|
7385 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7386 |
'version' => '12.1.0.0',
|
7387 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7388 |
),
|
7389 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7390 |
'version' => '12.1.0.0',
|
7391 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7392 |
),
|
7393 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7394 |
'version' => '12.1.0.0',
|
7395 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7396 |
),
|
7397 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7398 |
'version' => '12.1.0.0',
|
7399 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7400 |
),
|
7401 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7402 |
'version' => '12.1.0.0',
|
7403 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7404 |
),
|
7405 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7406 |
'version' => '12.1.0.0',
|
7407 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7408 |
),
|
7409 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7410 |
'version' => '12.1.0.0',
|
7411 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7412 |
),
|
7413 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7414 |
'version' => '12.1.0.0',
|
7415 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7416 |
),
|
7417 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7418 |
'version' => '12.1.0.0',
|
7419 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7420 |
),
|
7421 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7422 |
'version' => '12.1.0.0',
|
7423 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7424 |
),
|
7425 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7426 |
'version' => '12.1.0.0',
|
7427 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7428 |
),
|
7429 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7430 |
'version' => '12.1.0.0',
|
7431 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7432 |
),
|
7433 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7434 |
'version' => '12.1.0.0',
|
7435 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7436 |
),
|
7437 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7438 |
'version' => '12.1.0.0',
|
7439 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7440 |
),
|
7441 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7442 |
'version' => '12.1.0.0',
|
7443 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7444 |
),
|
7445 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7446 |
'version' => '12.1.0.0',
|
7447 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7448 |
),
|
7449 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
7450 |
'version' => '12.1.0.0',
|
7451 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
7452 |
),
|
7453 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7454 |
'version' => '12.1.0.0',
|
7455 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7456 |
),
|
7457 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7458 |
'version' => '12.1.0.0',
|
7459 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7460 |
),
|
7461 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7462 |
'version' => '12.1.0.0',
|
7463 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7464 |
),
|
7465 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7466 |
'version' => '12.1.0.0',
|
7467 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7468 |
),
|
7469 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7470 |
'version' => '12.1.0.0',
|
7471 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7472 |
),
|
7473 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7474 |
'version' => '12.1.0.0',
|
7475 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7476 |
),
|
7477 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7478 |
'version' => '12.1.0.0',
|
7479 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7480 |
),
|
7481 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7482 |
'version' => '12.1.0.0',
|
7483 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7484 |
),
|
7485 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7486 |
'version' => '12.1.0.0',
|
7487 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7488 |
),
|
7489 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7490 |
'version' => '12.1.0.0',
|
7491 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7492 |
),
|
7493 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7494 |
'version' => '12.1.0.0',
|
7495 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7496 |
),
|
7497 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7498 |
'version' => '12.1.0.0',
|
7499 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7500 |
),
|
7501 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7502 |
'version' => '12.1.0.0',
|
7503 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7504 |
),
|
7505 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7506 |
'version' => '12.1.0.0',
|
7507 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7508 |
),
|
7509 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7510 |
'version' => '12.1.0.0',
|
7511 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7512 |
),
|
7513 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7514 |
'version' => '12.1.0.0',
|
7515 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7516 |
),
|
7517 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7518 |
'version' => '12.1.0.0',
|
7519 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7520 |
),
|
7521 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7522 |
'version' => '12.1.0.0',
|
7523 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7524 |
),
|
7525 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7526 |
'version' => '12.1.0.0',
|
7527 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7528 |
),
|
7529 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7530 |
'version' => '12.1.0.0',
|
7531 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7532 |
),
|
7533 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7534 |
'version' => '12.1.0.0',
|
7535 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7536 |
),
|
7537 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7538 |
'version' => '12.1.0.0',
|
7539 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7540 |
),
|
7541 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7542 |
'version' => '12.1.0.0',
|
7543 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7544 |
),
|
7545 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7546 |
'version' => '12.1.0.0',
|
7547 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7548 |
),
|
7549 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7550 |
'version' => '12.1.0.0',
|
7551 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7552 |
),
|
7553 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7554 |
'version' => '12.1.0.0',
|
7555 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7556 |
),
|
7557 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7558 |
'version' => '12.1.0.0',
|
7559 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7560 |
),
|
7561 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7562 |
'version' => '12.1.0.0',
|
7563 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7564 |
),
|
7565 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7566 |
'version' => '12.1.0.0',
|
7567 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7568 |
),
|
7569 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7570 |
'version' => '12.1.0.0',
|
7571 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7572 |
),
|
7573 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7574 |
'version' => '12.1.0.0',
|
7575 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7576 |
),
|
7577 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7578 |
'version' => '12.1.0.0',
|
7579 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7580 |
),
|
7581 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7582 |
'version' => '12.1.0.0',
|
7583 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7584 |
),
|
7585 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7586 |
'version' => '12.1.0.0',
|
7587 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7588 |
),
|
7589 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7590 |
'version' => '12.1.0.0',
|
7591 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7592 |
),
|
7593 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7594 |
'version' => '12.1.0.0',
|
7595 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7596 |
),
|
7597 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7598 |
'version' => '12.1.0.0',
|
7599 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7600 |
),
|
7601 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7602 |
'version' => '12.1.0.0',
|
7603 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7604 |
),
|
7605 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7606 |
'version' => '12.1.0.0',
|
7607 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7608 |
),
|
7609 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7610 |
'version' => '12.1.0.0',
|
7611 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7612 |
),
|
7613 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7614 |
'version' => '12.1.0.0',
|
7615 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7616 |
),
|
7617 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7618 |
'version' => '12.1.0.0',
|
7619 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7620 |
),
|
7621 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7622 |
'version' => '12.1.0.0',
|
7623 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7624 |
),
|
7625 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7626 |
'version' => '12.1.0.0',
|
7627 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7628 |
),
|
7629 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7630 |
'version' => '12.1.0.0',
|
7631 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7632 |
),
|
7633 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7634 |
'version' => '12.1.0.0',
|
7635 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7636 |
),
|
7637 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7638 |
'version' => '12.1.0.0',
|
7639 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7640 |
),
|
7641 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7642 |
'version' => '12.1.0.0',
|
7643 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7644 |
),
|
7645 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7646 |
'version' => '12.1.0.0',
|
7647 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7648 |
),
|
7649 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7650 |
'version' => '12.1.0.0',
|
7651 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7652 |
),
|
7653 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7654 |
'version' => '12.1.0.0',
|
7655 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7656 |
),
|
7657 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7658 |
'version' => '12.1.0.0',
|
7659 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7660 |
),
|
7661 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7662 |
'version' => '12.1.0.0',
|
7663 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7664 |
),
|
7665 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7666 |
'version' => '12.1.0.0',
|
7667 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7668 |
),
|
7669 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7670 |
'version' => '12.1.0.0',
|
7671 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7672 |
),
|
7673 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7674 |
'version' => '12.1.0.0',
|
7675 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7676 |
),
|
7677 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7678 |
'version' => '12.1.0.0',
|
7679 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7680 |
),
|
7681 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7682 |
'version' => '12.1.0.0',
|
7683 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7684 |
),
|
7685 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7686 |
'version' => '12.1.0.0',
|
7687 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7688 |
),
|
7689 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7690 |
'version' => '12.1.0.0',
|
7691 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7692 |
),
|
7693 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7694 |
'version' => '12.1.0.0',
|
7695 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7696 |
),
|
7697 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7698 |
'version' => '12.1.0.0',
|
7699 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7700 |
),
|
7701 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7702 |
'version' => '12.1.0.0',
|
7703 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7704 |
),
|
7705 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7706 |
'version' => '12.1.0.0',
|
7707 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7708 |
),
|
7709 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7710 |
'version' => '12.1.0.0',
|
7711 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7712 |
),
|
7713 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7714 |
'version' => '12.1.0.0',
|
7715 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7716 |
),
|
7717 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7718 |
'version' => '12.1.0.0',
|
7719 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7720 |
),
|
7721 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7722 |
'version' => '12.1.0.0',
|
7723 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7724 |
),
|
7725 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7726 |
'version' => '12.1.0.0',
|
7727 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7728 |
),
|
7729 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7730 |
'version' => '12.1.0.0',
|
7731 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7732 |
),
|
7733 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\ContextErrorEnum' => array(
|
7734 |
'version' => '12.1.0.0',
|
7735 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ContextErrorEnum.php'
|
7736 |
),
|
7737 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7738 |
'version' => '12.1.0.0',
|
7739 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7740 |
),
|
7741 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7742 |
'version' => '12.1.0.0',
|
7743 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7744 |
),
|
7745 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7746 |
'version' => '12.1.0.0',
|
7747 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7748 |
),
|
7749 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7750 |
'version' => '12.1.0.0',
|
7751 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7752 |
),
|
7753 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7754 |
'version' => '12.1.0.0',
|
7755 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7756 |
),
|
7757 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7758 |
'version' => '12.1.0.0',
|
7759 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7760 |
),
|
7761 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7762 |
'version' => '12.1.0.0',
|
7763 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7764 |
),
|
7765 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7766 |
'version' => '12.1.0.0',
|
7767 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7768 |
),
|
7769 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7770 |
'version' => '12.1.0.0',
|
7771 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7772 |
),
|
7773 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7774 |
'version' => '12.1.0.0',
|
7775 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7776 |
),
|
7777 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7778 |
'version' => '12.1.0.0',
|
7779 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7780 |
),
|
7781 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7782 |
'version' => '12.1.0.0',
|
7783 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7784 |
),
|
7785 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7786 |
'version' => '12.1.0.0',
|
7787 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7788 |
),
|
7789 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7790 |
'version' => '12.1.0.0',
|
7791 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7792 |
),
|
7793 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7794 |
'version' => '12.1.0.0',
|
7795 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7796 |
),
|
7797 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7798 |
'version' => '12.1.0.0',
|
7799 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7800 |
),
|
7801 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7802 |
'version' => '12.1.0.0',
|
7803 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7804 |
),
|
7805 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7806 |
'version' => '12.1.0.0',
|
7807 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7808 |
),
|
7809 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7810 |
'version' => '12.1.0.0',
|
7811 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7812 |
),
|
7813 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7814 |
'version' => '12.1.0.0',
|
7815 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7816 |
),
|
7817 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7818 |
'version' => '12.1.0.0',
|
7819 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7820 |
),
|
7821 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7822 |
'version' => '12.1.0.0',
|
7823 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7824 |
),
|
7825 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7826 |
'version' => '12.1.0.0',
|
7827 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7828 |
),
|
7829 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7830 |
'version' => '12.1.0.0',
|
7831 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7832 |
),
|
7833 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7834 |
'version' => '12.1.0.0',
|
7835 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7836 |
),
|
7837 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7838 |
'version' => '12.1.0.0',
|
7839 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7840 |
),
|
7841 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7842 |
'version' => '12.1.0.0',
|
7843 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7844 |
),
|
7845 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7846 |
'version' => '12.1.0.0',
|
7847 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7848 |
),
|
7849 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7850 |
'version' => '12.1.0.0',
|
7851 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7852 |
),
|
7853 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7854 |
'version' => '12.1.0.0',
|
7855 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7856 |
),
|
7857 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7858 |
'version' => '12.1.0.0',
|
7859 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7860 |
),
|
7861 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7862 |
'version' => '12.1.0.0',
|
7863 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7864 |
),
|
7865 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7866 |
'version' => '12.1.0.0',
|
7867 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7868 |
),
|
7869 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7870 |
'version' => '12.1.0.0',
|
7871 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7872 |
),
|
7873 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7874 |
'version' => '12.1.0.0',
|
7875 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7876 |
),
|
7877 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7878 |
'version' => '12.1.0.0',
|
7879 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7880 |
),
|
7881 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7882 |
'version' => '12.1.0.0',
|
7883 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7884 |
),
|
7885 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7886 |
'version' => '12.1.0.0',
|
7887 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7888 |
),
|
7889 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7890 |
'version' => '12.1.0.0',
|
7891 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7892 |
),
|
7893 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7894 |
'version' => '12.1.0.0',
|
7895 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7896 |
),
|
7897 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7898 |
'version' => '12.1.0.0',
|
7899 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7900 |
),
|
7901 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7902 |
'version' => '12.1.0.0',
|
7903 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7904 |
),
|
7905 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7906 |
'version' => '12.1.0.0',
|
7907 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7908 |
),
|
7909 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7910 |
'version' => '12.1.0.0',
|
7911 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7912 |
),
|
7913 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7914 |
'version' => '12.1.0.0',
|
7915 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7916 |
),
|
7917 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7918 |
'version' => '12.1.0.0',
|
7919 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7920 |
),
|
7921 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7922 |
'version' => '12.1.0.0',
|
7923 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7924 |
),
|
7925 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7926 |
'version' => '12.1.0.0',
|
7927 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7928 |
),
|
7929 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7930 |
'version' => '12.1.0.0',
|
7931 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7932 |
),
|
7933 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7934 |
'version' => '12.1.0.0',
|
7935 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7936 |
),
|
7937 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7938 |
'version' => '12.1.0.0',
|
7939 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7940 |
),
|
7941 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7942 |
'version' => '12.1.0.0',
|
7943 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7944 |
),
|
7945 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7946 |
'version' => '12.1.0.0',
|
7947 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7948 |
),
|
7949 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7950 |
'version' => '12.1.0.0',
|
7951 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7952 |
),
|
7953 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7954 |
'version' => '12.1.0.0',
|
7955 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7956 |
),
|
7957 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7958 |
'version' => '12.1.0.0',
|
7959 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7960 |
),
|
7961 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7962 |
'version' => '12.1.0.0',
|
7963 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7964 |
),
|
7965 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7966 |
'version' => '12.1.0.0',
|
7967 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7968 |
),
|
7969 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7970 |
'version' => '12.1.0.0',
|
7971 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7972 |
),
|
7973 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7974 |
'version' => '12.1.0.0',
|
7975 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7976 |
),
|
7977 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7978 |
'version' => '12.1.0.0',
|
7979 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7980 |
),
|
7981 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7982 |
'version' => '12.1.0.0',
|
7983 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7984 |
),
|
7985 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7986 |
'version' => '12.1.0.0',
|
7987 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7988 |
),
|
7989 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7990 |
'version' => '12.1.0.0',
|
7991 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7992 |
),
|
7993 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7994 |
'version' => '12.1.0.0',
|
7995 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
7996 |
),
|
7997 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
7998 |
'version' => '12.1.0.0',
|
7999 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8000 |
),
|
8001 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8002 |
'version' => '12.1.0.0',
|
8003 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8004 |
),
|
8005 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8006 |
'version' => '12.1.0.0',
|
8007 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8008 |
),
|
8009 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8010 |
'version' => '12.1.0.0',
|
8011 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8012 |
),
|
8013 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8014 |
'version' => '12.1.0.0',
|
8015 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8016 |
),
|
8017 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8018 |
'version' => '12.1.0.0',
|
8019 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8020 |
),
|
8021 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8022 |
'version' => '12.1.0.0',
|
8023 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8024 |
),
|
8025 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8026 |
'version' => '12.1.0.0',
|
8027 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8028 |
),
|
8029 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8030 |
'version' => '12.1.0.0',
|
8031 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8032 |
),
|
8033 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeEventErrorEnum
|
8034 |
'version' => '12.1.0.0',
|
8035 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeEventErrorEnum
|
8036 |
),
|
8037 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8038 |
'version' => '12.1.0.0',
|
8039 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8040 |
),
|
8041 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8042 |
'version' => '12.1.0.0',
|
8043 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8044 |
),
|
8045 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8046 |
'version' => '12.1.0.0',
|
8047 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8048 |
),
|
8049 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8050 |
'version' => '12.1.0.0',
|
8051 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8052 |
),
|
8053 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8054 |
'version' => '12.1.0.0',
|
8055 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8056 |
),
|
8057 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8058 |
'version' => '12.1.0.0',
|
8059 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8060 |
),
|
8061 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8062 |
'version' => '12.1.0.0',
|
8063 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8064 |
),
|
8065 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8066 |
'version' => '12.1.0.0',
|
8067 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8068 |
),
|
8069 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8070 |
'version' => '12.1.0.0',
|
8071 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8072 |
),
|
8073 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8074 |
'version' => '12.1.0.0',
|
8075 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8076 |
),
|
8077 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8078 |
'version' => '12.1.0.0',
|
8079 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
|
|
|
|
|
|
|
|
8080 |
),
|
8081 |
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedErrorEnum' => array(
|
8082 |
'version' => '12.1.0.0',
|
8083 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedErrorEnum.php'
|
8084 |
),
|
8085 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8086 |
'version' => '12.1.0.0',
|
8087 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8088 |
),
|
8089 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8090 |
'version' => '12.1.0.0',
|
8091 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8092 |
),
|
8093 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8094 |
'version' => '12.1.0.0',
|
8095 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8096 |
),
|
8097 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8098 |
'version' => '12.1.0.0',
|
8099 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8100 |
),
|
8101 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8102 |
'version' => '12.1.0.0',
|
8103 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8104 |
),
|
8105 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8106 |
'version' => '12.1.0.0',
|
8107 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8108 |
),
|
8109 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8110 |
'version' => '12.1.0.0',
|
8111 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8112 |
),
|
8113 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8114 |
'version' => '12.1.0.0',
|
8115 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8116 |
),
|
8117 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8118 |
'version' => '12.1.0.0',
|
8119 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8120 |
),
|
8121 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8122 |
'version' => '12.1.0.0',
|
8123 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8124 |
),
|
8125 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8126 |
'version' => '12.1.0.0',
|
8127 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8128 |
),
|
8129 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8130 |
'version' => '12.1.0.0',
|
8131 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8132 |
),
|
8133 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8134 |
'version' => '12.1.0.0',
|
8135 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8136 |
),
|
8137 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8138 |
'version' => '12.1.0.0',
|
8139 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8140 |
),
|
8141 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8142 |
'version' => '12.1.0.0',
|
8143 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8144 |
),
|
8145 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8146 |
'version' => '12.1.0.0',
|
8147 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8148 |
),
|
8149 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8150 |
'version' => '12.1.0.0',
|
8151 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8152 |
),
|
8153 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8154 |
'version' => '12.1.0.0',
|
8155 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8156 |
),
|
8157 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8158 |
'version' => '12.1.0.0',
|
8159 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8160 |
),
|
8161 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8162 |
'version' => '12.1.0.0',
|
8163 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8164 |
),
|
8165 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8166 |
'version' => '12.1.0.0',
|
8167 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8168 |
),
|
8169 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8170 |
'version' => '12.1.0.0',
|
8171 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8172 |
),
|
8173 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8174 |
'version' => '12.1.0.0',
|
8175 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8176 |
),
|
8177 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8178 |
'version' => '12.1.0.0',
|
8179 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8180 |
),
|
8181 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8182 |
'version' => '12.1.0.0',
|
8183 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8184 |
),
|
8185 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8186 |
'version' => '12.1.0.0',
|
8187 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8188 |
),
|
8189 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8190 |
'version' => '12.1.0.0',
|
8191 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8192 |
),
|
8193 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8194 |
'version' => '12.1.0.0',
|
8195 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8196 |
),
|
8197 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8198 |
'version' => '12.1.0.0',
|
8199 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8200 |
),
|
8201 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8202 |
'version' => '12.1.0.0',
|
8203 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8204 |
),
|
8205 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8206 |
'version' => '12.1.0.0',
|
8207 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8208 |
),
|
8209 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8210 |
'version' => '12.1.0.0',
|
8211 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8212 |
),
|
8213 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8214 |
'version' => '12.1.0.0',
|
8215 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8216 |
),
|
8217 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8218 |
'version' => '12.1.0.0',
|
8219 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8220 |
),
|
8221 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8222 |
'version' => '12.1.0.0',
|
8223 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8224 |
),
|
8225 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8226 |
'version' => '12.1.0.0',
|
8227 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8228 |
),
|
8229 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8230 |
'version' => '12.1.0.0',
|
8231 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8232 |
),
|
8233 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8234 |
'version' => '12.1.0.0',
|
8235 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8236 |
),
|
8237 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8238 |
'version' => '12.1.0.0',
|
8239 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8240 |
),
|
8241 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8242 |
'version' => '12.1.0.0',
|
8243 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8244 |
),
|
8245 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8246 |
'version' => '12.1.0.0',
|
8247 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8248 |
),
|
8249 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8250 |
'version' => '12.1.0.0',
|
8251 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8252 |
),
|
8253 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8254 |
'version' => '12.1.0.0',
|
8255 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8256 |
),
|
8257 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8258 |
'version' => '12.1.0.0',
|
8259 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8260 |
),
|
8261 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8262 |
'version' => '12.1.0.0',
|
8263 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8264 |
),
|
8265 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8266 |
'version' => '12.1.0.0',
|
8267 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8268 |
),
|
8269 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8270 |
'version' => '12.1.0.0',
|
8271 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8272 |
),
|
8273 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8274 |
'version' => '12.1.0.0',
|
8275 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8276 |
),
|
8277 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8278 |
'version' => '12.1.0.0',
|
8279 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8280 |
),
|
8281 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8282 |
'version' => '12.1.0.0',
|
8283 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8284 |
),
|
8285 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8286 |
'version' => '12.1.0.0',
|
8287 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8288 |
),
|
8289 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8290 |
'version' => '12.1.0.0',
|
8291 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8292 |
),
|
8293 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8294 |
'version' => '12.1.0.0',
|
8295 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8296 |
),
|
8297 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8298 |
'version' => '12.1.0.0',
|
8299 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8300 |
),
|
8301 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8302 |
'version' => '12.1.0.0',
|
8303 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8304 |
),
|
8305 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8306 |
'version' => '12.1.0.0',
|
8307 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8308 |
),
|
8309 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8310 |
'version' => '12.1.0.0',
|
8311 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8312 |
),
|
8313 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8314 |
'version' => '12.1.0.0',
|
8315 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8316 |
),
|
8317 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8318 |
'version' => '12.1.0.0',
|
8319 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8320 |
),
|
8321 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8322 |
'version' => '12.1.0.0',
|
8323 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8324 |
),
|
8325 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8326 |
'version' => '12.1.0.0',
|
8327 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8328 |
),
|
8329 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8330 |
'version' => '12.1.0.0',
|
8331 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8332 |
),
|
8333 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8334 |
'version' => '12.1.0.0',
|
8335 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8336 |
),
|
8337 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8338 |
'version' => '12.1.0.0',
|
8339 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8340 |
),
|
8341 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8342 |
'version' => '12.1.0.0',
|
8343 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8344 |
),
|
8345 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8346 |
'version' => '12.1.0.0',
|
8347 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8348 |
),
|
8349 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8350 |
'version' => '12.1.0.0',
|
8351 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8352 |
),
|
8353 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8354 |
'version' => '12.1.0.0',
|
8355 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8356 |
),
|
8357 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8358 |
'version' => '12.1.0.0',
|
8359 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8360 |
),
|
8361 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8362 |
'version' => '12.1.0.0',
|
8363 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8364 |
),
|
8365 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8366 |
'version' => '12.1.0.0',
|
8367 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8368 |
),
|
8369 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8370 |
'version' => '12.1.0.0',
|
8371 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8372 |
),
|
8373 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8374 |
'version' => '12.1.0.0',
|
8375 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8376 |
),
|
8377 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8378 |
'version' => '12.1.0.0',
|
8379 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8380 |
),
|
8381 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8382 |
'version' => '12.1.0.0',
|
8383 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8384 |
),
|
8385 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8386 |
'version' => '12.1.0.0',
|
8387 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8388 |
),
|
8389 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8390 |
'version' => '12.1.0.0',
|
8391 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8392 |
),
|
8393 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8394 |
'version' => '12.1.0.0',
|
8395 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8396 |
),
|
8397 |
-
'Google\\Ads\\GoogleAds\\V9\\Errors\\
|
8398 |
'version' => '12.1.0.0',
|
8399 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/
|
8400 |
),
|
8401 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8402 |
'version' => '12.1.0.0',
|
8403 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8404 |
),
|
8405 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8406 |
'version' => '12.1.0.0',
|
8407 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8408 |
),
|
8409 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8410 |
'version' => '12.1.0.0',
|
8411 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8412 |
),
|
8413 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8414 |
'version' => '12.1.0.0',
|
8415 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8416 |
),
|
8417 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8418 |
'version' => '12.1.0.0',
|
8419 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8420 |
),
|
8421 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8422 |
'version' => '12.1.0.0',
|
8423 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8424 |
),
|
8425 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8426 |
'version' => '12.1.0.0',
|
8427 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8428 |
),
|
8429 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8430 |
'version' => '12.1.0.0',
|
8431 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8432 |
),
|
8433 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8434 |
'version' => '12.1.0.0',
|
8435 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8436 |
),
|
8437 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8438 |
'version' => '12.1.0.0',
|
8439 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8440 |
),
|
8441 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8442 |
'version' => '12.1.0.0',
|
8443 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8444 |
),
|
8445 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8446 |
'version' => '12.1.0.0',
|
8447 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8448 |
),
|
8449 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8450 |
'version' => '12.1.0.0',
|
8451 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8452 |
),
|
8453 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8454 |
'version' => '12.1.0.0',
|
8455 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8456 |
),
|
8457 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8458 |
'version' => '12.1.0.0',
|
8459 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8460 |
),
|
8461 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8462 |
'version' => '12.1.0.0',
|
8463 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8464 |
),
|
8465 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8466 |
'version' => '12.1.0.0',
|
8467 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8468 |
),
|
8469 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8470 |
'version' => '12.1.0.0',
|
8471 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8472 |
),
|
8473 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8474 |
'version' => '12.1.0.0',
|
8475 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8476 |
),
|
8477 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8478 |
'version' => '12.1.0.0',
|
8479 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8480 |
),
|
8481 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8482 |
'version' => '12.1.0.0',
|
8483 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8484 |
),
|
8485 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8486 |
'version' => '12.1.0.0',
|
8487 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8488 |
),
|
8489 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8490 |
'version' => '12.1.0.0',
|
8491 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8492 |
),
|
8493 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8494 |
'version' => '12.1.0.0',
|
8495 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8496 |
),
|
8497 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8498 |
'version' => '12.1.0.0',
|
8499 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8500 |
),
|
8501 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8502 |
'version' => '12.1.0.0',
|
8503 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8504 |
),
|
8505 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8506 |
'version' => '12.1.0.0',
|
8507 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8508 |
),
|
8509 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8510 |
'version' => '12.1.0.0',
|
8511 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8512 |
),
|
8513 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8514 |
'version' => '12.1.0.0',
|
8515 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8516 |
),
|
8517 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8518 |
'version' => '12.1.0.0',
|
8519 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8520 |
),
|
8521 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8522 |
'version' => '12.1.0.0',
|
8523 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8524 |
),
|
8525 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8526 |
'version' => '12.1.0.0',
|
8527 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8528 |
),
|
8529 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8530 |
'version' => '12.1.0.0',
|
8531 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8532 |
),
|
8533 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8534 |
'version' => '12.1.0.0',
|
8535 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8536 |
),
|
8537 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8538 |
'version' => '12.1.0.0',
|
8539 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8540 |
),
|
8541 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8542 |
'version' => '12.1.0.0',
|
8543 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8544 |
),
|
8545 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8546 |
'version' => '12.1.0.0',
|
8547 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8548 |
),
|
8549 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8550 |
'version' => '12.1.0.0',
|
8551 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8552 |
),
|
8553 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8554 |
'version' => '12.1.0.0',
|
8555 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8556 |
),
|
8557 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8558 |
'version' => '12.1.0.0',
|
8559 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8560 |
),
|
8561 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8562 |
'version' => '12.1.0.0',
|
8563 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8564 |
),
|
8565 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8566 |
'version' => '12.1.0.0',
|
8567 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8568 |
),
|
8569 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8570 |
'version' => '12.1.0.0',
|
8571 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8572 |
),
|
8573 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8574 |
'version' => '12.1.0.0',
|
8575 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8576 |
),
|
8577 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8578 |
'version' => '12.1.0.0',
|
8579 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8580 |
),
|
8581 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8582 |
'version' => '12.1.0.0',
|
8583 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8584 |
),
|
8585 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8586 |
'version' => '12.1.0.0',
|
8587 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8588 |
),
|
8589 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8590 |
'version' => '12.1.0.0',
|
8591 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8592 |
),
|
8593 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8594 |
'version' => '12.1.0.0',
|
8595 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8596 |
),
|
8597 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8598 |
'version' => '12.1.0.0',
|
8599 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8600 |
),
|
8601 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8602 |
'version' => '12.1.0.0',
|
8603 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8604 |
),
|
8605 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8606 |
'version' => '12.1.0.0',
|
8607 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8608 |
),
|
8609 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8610 |
'version' => '12.1.0.0',
|
8611 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8612 |
),
|
8613 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8614 |
'version' => '12.1.0.0',
|
8615 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8616 |
),
|
8617 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8618 |
'version' => '12.1.0.0',
|
8619 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8620 |
),
|
8621 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8622 |
'version' => '12.1.0.0',
|
8623 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8624 |
),
|
8625 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8626 |
'version' => '12.1.0.0',
|
8627 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8628 |
),
|
8629 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8630 |
'version' => '12.1.0.0',
|
8631 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8632 |
),
|
8633 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8634 |
'version' => '12.1.0.0',
|
8635 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8636 |
),
|
8637 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8638 |
'version' => '12.1.0.0',
|
8639 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8640 |
),
|
8641 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8642 |
'version' => '12.1.0.0',
|
8643 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8644 |
),
|
8645 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8646 |
'version' => '12.1.0.0',
|
8647 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8648 |
),
|
8649 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8650 |
'version' => '12.1.0.0',
|
8651 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8652 |
),
|
8653 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8654 |
'version' => '12.1.0.0',
|
8655 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8656 |
),
|
8657 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8658 |
'version' => '12.1.0.0',
|
8659 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8660 |
),
|
8661 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8662 |
'version' => '12.1.0.0',
|
8663 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8664 |
),
|
8665 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8666 |
'version' => '12.1.0.0',
|
8667 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8668 |
),
|
8669 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8670 |
'version' => '12.1.0.0',
|
8671 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8672 |
),
|
8673 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8674 |
'version' => '12.1.0.0',
|
8675 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8676 |
),
|
8677 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8678 |
'version' => '12.1.0.0',
|
8679 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8680 |
),
|
8681 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8682 |
'version' => '12.1.0.0',
|
8683 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8684 |
),
|
8685 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8686 |
'version' => '12.1.0.0',
|
8687 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8688 |
),
|
8689 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8690 |
'version' => '12.1.0.0',
|
8691 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8692 |
),
|
8693 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8694 |
'version' => '12.1.0.0',
|
8695 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8696 |
),
|
8697 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8698 |
'version' => '12.1.0.0',
|
8699 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8700 |
),
|
8701 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8702 |
'version' => '12.1.0.0',
|
8703 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8704 |
),
|
8705 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8706 |
'version' => '12.1.0.0',
|
8707 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8708 |
),
|
8709 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8710 |
'version' => '12.1.0.0',
|
8711 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8712 |
),
|
8713 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8714 |
'version' => '12.1.0.0',
|
8715 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8716 |
),
|
8717 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8718 |
'version' => '12.1.0.0',
|
8719 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8720 |
),
|
8721 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8722 |
'version' => '12.1.0.0',
|
8723 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8724 |
),
|
8725 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8726 |
'version' => '12.1.0.0',
|
8727 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8728 |
),
|
8729 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8730 |
'version' => '12.1.0.0',
|
8731 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8732 |
),
|
8733 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8734 |
'version' => '12.1.0.0',
|
8735 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8736 |
),
|
8737 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8738 |
'version' => '12.1.0.0',
|
8739 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8740 |
),
|
8741 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8742 |
'version' => '12.1.0.0',
|
8743 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8744 |
),
|
8745 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8746 |
'version' => '12.1.0.0',
|
8747 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8748 |
),
|
8749 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8750 |
'version' => '12.1.0.0',
|
8751 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8752 |
),
|
8753 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8754 |
'version' => '12.1.0.0',
|
8755 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8756 |
),
|
8757 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8758 |
'version' => '12.1.0.0',
|
8759 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8760 |
),
|
8761 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8762 |
'version' => '12.1.0.0',
|
8763 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8764 |
),
|
8765 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8766 |
'version' => '12.1.0.0',
|
8767 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8768 |
),
|
8769 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8770 |
'version' => '12.1.0.0',
|
8771 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8772 |
),
|
8773 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8774 |
'version' => '12.1.0.0',
|
8775 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8776 |
),
|
8777 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8778 |
'version' => '12.1.0.0',
|
8779 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8780 |
),
|
8781 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8782 |
'version' => '12.1.0.0',
|
8783 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8784 |
),
|
8785 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8786 |
'version' => '12.1.0.0',
|
8787 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8788 |
),
|
8789 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8790 |
'version' => '12.1.0.0',
|
8791 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8792 |
),
|
8793 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8794 |
'version' => '12.1.0.0',
|
8795 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8796 |
),
|
8797 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8798 |
'version' => '12.1.0.0',
|
8799 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8800 |
),
|
8801 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8802 |
'version' => '12.1.0.0',
|
8803 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8804 |
),
|
8805 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8806 |
'version' => '12.1.0.0',
|
8807 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8808 |
),
|
8809 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8810 |
'version' => '12.1.0.0',
|
8811 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8812 |
),
|
8813 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8814 |
'version' => '12.1.0.0',
|
8815 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8816 |
),
|
8817 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8818 |
'version' => '12.1.0.0',
|
8819 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8820 |
),
|
8821 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8822 |
'version' => '12.1.0.0',
|
8823 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8824 |
),
|
8825 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8826 |
'version' => '12.1.0.0',
|
8827 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8828 |
),
|
8829 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8830 |
'version' => '12.1.0.0',
|
8831 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8832 |
),
|
8833 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8834 |
'version' => '12.1.0.0',
|
8835 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8836 |
),
|
8837 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8838 |
'version' => '12.1.0.0',
|
8839 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8840 |
),
|
8841 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8842 |
'version' => '12.1.0.0',
|
8843 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8844 |
),
|
8845 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8846 |
'version' => '12.1.0.0',
|
8847 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8848 |
),
|
8849 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8850 |
'version' => '12.1.0.0',
|
8851 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8852 |
),
|
8853 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8854 |
'version' => '12.1.0.0',
|
8855 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8856 |
),
|
8857 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8858 |
'version' => '12.1.0.0',
|
8859 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8860 |
),
|
8861 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8862 |
'version' => '12.1.0.0',
|
8863 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8864 |
),
|
8865 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8866 |
'version' => '12.1.0.0',
|
8867 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8868 |
),
|
8869 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8870 |
'version' => '12.1.0.0',
|
8871 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8872 |
),
|
8873 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8874 |
'version' => '12.1.0.0',
|
8875 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8876 |
),
|
8877 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8878 |
'version' => '12.1.0.0',
|
8879 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8880 |
),
|
8881 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8882 |
'version' => '12.1.0.0',
|
8883 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8884 |
),
|
8885 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8886 |
'version' => '12.1.0.0',
|
8887 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8888 |
),
|
8889 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8890 |
'version' => '12.1.0.0',
|
8891 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8892 |
),
|
8893 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8894 |
'version' => '12.1.0.0',
|
8895 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8896 |
),
|
8897 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8898 |
'version' => '12.1.0.0',
|
8899 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8900 |
),
|
8901 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8902 |
'version' => '12.1.0.0',
|
8903 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8904 |
),
|
8905 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8906 |
'version' => '12.1.0.0',
|
8907 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8908 |
),
|
8909 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8910 |
'version' => '12.1.0.0',
|
8911 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8912 |
),
|
8913 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8914 |
'version' => '12.1.0.0',
|
8915 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8916 |
),
|
8917 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8918 |
'version' => '12.1.0.0',
|
8919 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8920 |
),
|
8921 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8922 |
'version' => '12.1.0.0',
|
8923 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8924 |
),
|
8925 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8926 |
'version' => '12.1.0.0',
|
8927 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8928 |
),
|
8929 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8930 |
'version' => '12.1.0.0',
|
8931 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8932 |
),
|
8933 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8934 |
'version' => '12.1.0.0',
|
8935 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8936 |
),
|
8937 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8938 |
'version' => '12.1.0.0',
|
8939 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8940 |
),
|
8941 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8942 |
'version' => '12.1.0.0',
|
8943 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8944 |
),
|
8945 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8946 |
'version' => '12.1.0.0',
|
8947 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8948 |
),
|
8949 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8950 |
'version' => '12.1.0.0',
|
8951 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8952 |
),
|
8953 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8954 |
'version' => '12.1.0.0',
|
8955 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8956 |
),
|
8957 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8958 |
'version' => '12.1.0.0',
|
8959 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8960 |
),
|
8961 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8962 |
'version' => '12.1.0.0',
|
8963 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8964 |
),
|
8965 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8966 |
'version' => '12.1.0.0',
|
8967 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8968 |
),
|
8969 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8970 |
'version' => '12.1.0.0',
|
8971 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8972 |
),
|
8973 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8974 |
'version' => '12.1.0.0',
|
8975 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8976 |
),
|
8977 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8978 |
'version' => '12.1.0.0',
|
8979 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8980 |
),
|
8981 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8982 |
'version' => '12.1.0.0',
|
8983 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8984 |
),
|
8985 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8986 |
'version' => '12.1.0.0',
|
8987 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8988 |
),
|
8989 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8990 |
'version' => '12.1.0.0',
|
8991 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8992 |
),
|
8993 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8994 |
'version' => '12.1.0.0',
|
8995 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
8996 |
),
|
8997 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
8998 |
'version' => '12.1.0.0',
|
8999 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9000 |
),
|
9001 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9002 |
'version' => '12.1.0.0',
|
9003 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9004 |
),
|
9005 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9006 |
'version' => '12.1.0.0',
|
9007 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9008 |
),
|
9009 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9010 |
'version' => '12.1.0.0',
|
9011 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9012 |
),
|
9013 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9014 |
'version' => '12.1.0.0',
|
9015 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9016 |
),
|
9017 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9018 |
'version' => '12.1.0.0',
|
9019 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9020 |
),
|
9021 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9022 |
'version' => '12.1.0.0',
|
9023 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9024 |
),
|
9025 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9026 |
'version' => '12.1.0.0',
|
9027 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9028 |
),
|
9029 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9030 |
'version' => '12.1.0.0',
|
9031 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9032 |
),
|
9033 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9034 |
'version' => '12.1.0.0',
|
9035 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9036 |
),
|
9037 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9038 |
'version' => '12.1.0.0',
|
9039 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9040 |
),
|
9041 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9042 |
'version' => '12.1.0.0',
|
9043 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9044 |
),
|
9045 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9046 |
'version' => '12.1.0.0',
|
9047 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9048 |
),
|
9049 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9050 |
'version' => '12.1.0.0',
|
9051 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9052 |
),
|
9053 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9054 |
'version' => '12.1.0.0',
|
9055 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9056 |
),
|
9057 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9058 |
'version' => '12.1.0.0',
|
9059 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9060 |
),
|
9061 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9062 |
'version' => '12.1.0.0',
|
9063 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9064 |
),
|
9065 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9066 |
'version' => '12.1.0.0',
|
9067 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9068 |
),
|
9069 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9070 |
'version' => '12.1.0.0',
|
9071 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9072 |
),
|
9073 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9074 |
'version' => '12.1.0.0',
|
9075 |
-
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/
|
9076 |
),
|
9077 |
-
'Google\\Ads\\GoogleAds\\V9\\
|
9078 |
'version' => '12.1.0.0',
|
9079 |
-
'path' => $vendorDir . '/googleads/google-ads-
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
+
'phpseclib3\\Math\\BinaryField' => array(
|
10 |
'version' => '3.0.14.0',
|
11 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BinaryField.php'
|
12 |
),
|
13 |
+
'phpseclib3\\Math\\PrimeField' => array(
|
14 |
'version' => '3.0.14.0',
|
15 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/PrimeField.php'
|
16 |
),
|
17 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\Engine' => array(
|
18 |
'version' => '3.0.14.0',
|
19 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/Engine.php'
|
20 |
),
|
21 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP32' => array(
|
22 |
'version' => '3.0.14.0',
|
23 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP32.php'
|
24 |
),
|
25 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath' => array(
|
26 |
'version' => '3.0.14.0',
|
27 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath.php'
|
28 |
),
|
29 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\OpenSSL' => array(
|
30 |
'version' => '3.0.14.0',
|
31 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/OpenSSL.php'
|
32 |
),
|
33 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\Base' => array(
|
34 |
'version' => '3.0.14.0',
|
35 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Base.php'
|
36 |
),
|
37 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\DefaultEngine' => array(
|
38 |
'version' => '3.0.14.0',
|
39 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/DefaultEngine.php'
|
40 |
),
|
41 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\Reductions\\Barrett' => array(
|
42 |
'version' => '3.0.14.0',
|
43 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/Barrett.php'
|
44 |
),
|
45 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\Reductions\\EvalBarrett' => array(
|
46 |
'version' => '3.0.14.0',
|
47 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/EvalBarrett.php'
|
48 |
),
|
49 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\OpenSSL' => array(
|
50 |
'version' => '3.0.14.0',
|
51 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/OpenSSL.php'
|
52 |
),
|
53 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\BCMath\\BuiltIn' => array(
|
54 |
'version' => '3.0.14.0',
|
55 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/BuiltIn.php'
|
56 |
),
|
57 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\GMP\\DefaultEngine' => array(
|
58 |
'version' => '3.0.14.0',
|
59 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP/DefaultEngine.php'
|
60 |
),
|
61 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\GMP' => array(
|
62 |
'version' => '3.0.14.0',
|
63 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP.php'
|
64 |
),
|
65 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP64' => array(
|
66 |
'version' => '3.0.14.0',
|
67 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP64.php'
|
68 |
),
|
69 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Montgomery' => array(
|
70 |
'version' => '3.0.14.0',
|
71 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Montgomery.php'
|
72 |
),
|
73 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Base' => array(
|
74 |
'version' => '3.0.14.0',
|
75 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Base.php'
|
76 |
),
|
77 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\DefaultEngine' => array(
|
78 |
'version' => '3.0.14.0',
|
79 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/DefaultEngine.php'
|
80 |
),
|
81 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\Montgomery' => array(
|
82 |
'version' => '3.0.14.0',
|
83 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Montgomery.php'
|
84 |
),
|
85 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\Barrett' => array(
|
86 |
'version' => '3.0.14.0',
|
87 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Barrett.php'
|
88 |
),
|
89 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\PowerOfTwo' => array(
|
90 |
'version' => '3.0.14.0',
|
91 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/PowerOfTwo.php'
|
92 |
),
|
93 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\Classic' => array(
|
94 |
'version' => '3.0.14.0',
|
95 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Classic.php'
|
96 |
),
|
97 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\EvalBarrett' => array(
|
98 |
'version' => '3.0.14.0',
|
99 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php'
|
100 |
),
|
101 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\Reductions\\MontgomeryMult' => array(
|
102 |
'version' => '3.0.14.0',
|
103 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/MontgomeryMult.php'
|
104 |
),
|
105 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP\\OpenSSL' => array(
|
106 |
'version' => '3.0.14.0',
|
107 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/OpenSSL.php'
|
108 |
),
|
109 |
+
'phpseclib3\\Math\\BigInteger\\Engines\\PHP' => array(
|
110 |
'version' => '3.0.14.0',
|
111 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP.php'
|
112 |
),
|
113 |
+
'phpseclib3\\Math\\Common\\FiniteField' => array(
|
114 |
'version' => '3.0.14.0',
|
115 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField.php'
|
116 |
),
|
117 |
+
'phpseclib3\\Math\\Common\\FiniteField\\Integer' => array(
|
118 |
'version' => '3.0.14.0',
|
119 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField/Integer.php'
|
120 |
),
|
121 |
+
'phpseclib3\\Math\\PrimeField\\Integer' => array(
|
122 |
'version' => '3.0.14.0',
|
123 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/PrimeField/Integer.php'
|
124 |
),
|
125 |
+
'phpseclib3\\Math\\BinaryField\\Integer' => array(
|
126 |
'version' => '3.0.14.0',
|
127 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BinaryField/Integer.php'
|
128 |
),
|
129 |
+
'phpseclib3\\Math\\BigInteger' => array(
|
130 |
'version' => '3.0.14.0',
|
131 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Math/BigInteger.php'
|
132 |
),
|
133 |
+
'phpseclib3\\Common\\Functions\\Strings' => array(
|
134 |
'version' => '3.0.14.0',
|
135 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Common/Functions/Strings.php'
|
136 |
),
|
137 |
+
'phpseclib3\\Net\\SFTP\\Stream' => array(
|
138 |
'version' => '3.0.14.0',
|
139 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php'
|
140 |
),
|
141 |
+
'phpseclib3\\Net\\SFTP' => array(
|
142 |
'version' => '3.0.14.0',
|
143 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SFTP.php'
|
144 |
),
|
145 |
+
'phpseclib3\\Net\\SSH2' => array(
|
146 |
'version' => '3.0.14.0',
|
147 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Net/SSH2.php'
|
148 |
),
|
149 |
+
'phpseclib3\\Crypt\\Twofish' => array(
|
150 |
'version' => '3.0.14.0',
|
151 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php'
|
152 |
),
|
153 |
+
'phpseclib3\\Crypt\\Hash' => array(
|
154 |
'version' => '3.0.14.0',
|
155 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Hash.php'
|
156 |
),
|
157 |
+
'phpseclib3\\Crypt\\ChaCha20' => array(
|
158 |
'version' => '3.0.14.0',
|
159 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/ChaCha20.php'
|
160 |
),
|
161 |
+
'phpseclib3\\Crypt\\DSA\\PublicKey' => array(
|
162 |
'version' => '3.0.14.0',
|
163 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/PublicKey.php'
|
164 |
),
|
165 |
+
'phpseclib3\\Crypt\\DSA\\Parameters' => array(
|
166 |
'version' => '3.0.14.0',
|
167 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Parameters.php'
|
168 |
),
|
169 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Signature\\ASN1' => array(
|
170 |
'version' => '3.0.14.0',
|
171 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/ASN1.php'
|
172 |
),
|
173 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Signature\\Raw' => array(
|
174 |
'version' => '3.0.14.0',
|
175 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/Raw.php'
|
176 |
),
|
177 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Signature\\SSH2' => array(
|
178 |
'version' => '3.0.14.0',
|
179 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/SSH2.php'
|
180 |
),
|
181 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Keys\\XML' => array(
|
182 |
'version' => '3.0.14.0',
|
183 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/XML.php'
|
184 |
),
|
185 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Keys\\PuTTY' => array(
|
186 |
'version' => '3.0.14.0',
|
187 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PuTTY.php'
|
188 |
),
|
189 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Keys\\OpenSSH' => array(
|
190 |
'version' => '3.0.14.0',
|
191 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/OpenSSH.php'
|
192 |
),
|
193 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Keys\\PKCS1' => array(
|
194 |
'version' => '3.0.14.0',
|
195 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PKCS1.php'
|
196 |
),
|
197 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Keys\\PKCS8' => array(
|
198 |
'version' => '3.0.14.0',
|
199 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PKCS8.php'
|
200 |
),
|
201 |
+
'phpseclib3\\Crypt\\DSA\\Formats\\Keys\\Raw' => array(
|
202 |
'version' => '3.0.14.0',
|
203 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/Raw.php'
|
204 |
),
|
205 |
+
'phpseclib3\\Crypt\\DSA\\PrivateKey' => array(
|
206 |
'version' => '3.0.14.0',
|
207 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA/PrivateKey.php'
|
208 |
),
|
209 |
+
'phpseclib3\\Crypt\\DH\\PublicKey' => array(
|
210 |
'version' => '3.0.14.0',
|
211 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DH/PublicKey.php'
|
212 |
),
|
213 |
+
'phpseclib3\\Crypt\\DH\\Parameters' => array(
|
214 |
'version' => '3.0.14.0',
|
215 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DH/Parameters.php'
|
216 |
),
|
217 |
+
'phpseclib3\\Crypt\\DH\\Formats\\Keys\\PKCS1' => array(
|
218 |
'version' => '3.0.14.0',
|
219 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/PKCS1.php'
|
220 |
),
|
221 |
+
'phpseclib3\\Crypt\\DH\\Formats\\Keys\\PKCS8' => array(
|
222 |
'version' => '3.0.14.0',
|
223 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/PKCS8.php'
|
224 |
),
|
225 |
+
'phpseclib3\\Crypt\\DH\\PrivateKey' => array(
|
226 |
'version' => '3.0.14.0',
|
227 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DH/PrivateKey.php'
|
228 |
),
|
229 |
+
'phpseclib3\\Crypt\\Common\\PublicKey' => array(
|
230 |
'version' => '3.0.14.0',
|
231 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/PublicKey.php'
|
232 |
),
|
233 |
+
'phpseclib3\\Crypt\\Common\\Formats\\Signature\\Raw' => array(
|
234 |
'version' => '3.0.14.0',
|
235 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature/Raw.php'
|
236 |
),
|
237 |
+
'phpseclib3\\Crypt\\Common\\Formats\\Keys\\PuTTY' => array(
|
238 |
'version' => '3.0.14.0',
|
239 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PuTTY.php'
|
240 |
),
|
241 |
+
'phpseclib3\\Crypt\\Common\\Formats\\Keys\\OpenSSH' => array(
|
242 |
'version' => '3.0.14.0',
|
243 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/OpenSSH.php'
|
244 |
),
|
245 |
+
'phpseclib3\\Crypt\\Common\\Formats\\Keys\\PKCS' => array(
|
246 |
'version' => '3.0.14.0',
|
247 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS.php'
|
248 |
),
|
249 |
+
'phpseclib3\\Crypt\\Common\\Formats\\Keys\\PKCS1' => array(
|
250 |
'version' => '3.0.14.0',
|
251 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS1.php'
|
252 |
),
|
253 |
+
'phpseclib3\\Crypt\\Common\\Formats\\Keys\\PKCS8' => array(
|
254 |
'version' => '3.0.14.0',
|
255 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS8.php'
|
256 |
),
|
257 |
+
'phpseclib3\\Crypt\\Common\\StreamCipher' => array(
|
258 |
'version' => '3.0.14.0',
|
259 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/StreamCipher.php'
|
260 |
),
|
261 |
+
'phpseclib3\\Crypt\\Common\\Traits\\Fingerprint' => array(
|
262 |
'version' => '3.0.14.0',
|
263 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/Fingerprint.php'
|
264 |
),
|
265 |
+
'phpseclib3\\Crypt\\Common\\Traits\\PasswordProtected' => array(
|
266 |
'version' => '3.0.14.0',
|
267 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/PasswordProtected.php'
|
268 |
),
|
269 |
+
'phpseclib3\\Crypt\\Common\\PrivateKey' => array(
|
270 |
'version' => '3.0.14.0',
|
271 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/PrivateKey.php'
|
272 |
),
|
273 |
+
'phpseclib3\\Crypt\\Common\\SymmetricKey' => array(
|
274 |
'version' => '3.0.14.0',
|
275 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/SymmetricKey.php'
|
276 |
),
|
277 |
+
'phpseclib3\\Crypt\\Common\\AsymmetricKey' => array(
|
278 |
'version' => '3.0.14.0',
|
279 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/AsymmetricKey.php'
|
280 |
),
|
281 |
+
'phpseclib3\\Crypt\\Common\\BlockCipher' => array(
|
282 |
'version' => '3.0.14.0',
|
283 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Common/BlockCipher.php'
|
284 |
),
|
285 |
+
'phpseclib3\\Crypt\\EC\\PublicKey' => array(
|
286 |
'version' => '3.0.14.0',
|
287 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/PublicKey.php'
|
288 |
),
|
289 |
+
'phpseclib3\\Crypt\\EC\\Parameters' => array(
|
290 |
'version' => '3.0.14.0',
|
291 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Parameters.php'
|
292 |
),
|
293 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Signature\\ASN1' => array(
|
294 |
'version' => '3.0.14.0',
|
295 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/ASN1.php'
|
296 |
),
|
297 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Signature\\Raw' => array(
|
298 |
'version' => '3.0.14.0',
|
299 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/Raw.php'
|
300 |
),
|
301 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Signature\\SSH2' => array(
|
302 |
'version' => '3.0.14.0',
|
303 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/SSH2.php'
|
304 |
),
|
305 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\libsodium' => array(
|
306 |
'version' => '3.0.14.0',
|
307 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/libsodium.php'
|
308 |
),
|
309 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\XML' => array(
|
310 |
'version' => '3.0.14.0',
|
311 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/XML.php'
|
312 |
),
|
313 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\MontgomeryPrivate' => array(
|
314 |
'version' => '3.0.14.0',
|
315 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/MontgomeryPrivate.php'
|
316 |
),
|
317 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\Common' => array(
|
318 |
'version' => '3.0.14.0',
|
319 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/Common.php'
|
320 |
),
|
321 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\PuTTY' => array(
|
322 |
'version' => '3.0.14.0',
|
323 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PuTTY.php'
|
324 |
),
|
325 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\OpenSSH' => array(
|
326 |
'version' => '3.0.14.0',
|
327 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/OpenSSH.php'
|
328 |
),
|
329 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\PKCS1' => array(
|
330 |
'version' => '3.0.14.0',
|
331 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PKCS1.php'
|
332 |
),
|
333 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\PKCS8' => array(
|
334 |
'version' => '3.0.14.0',
|
335 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PKCS8.php'
|
336 |
),
|
337 |
+
'phpseclib3\\Crypt\\EC\\Formats\\Keys\\MontgomeryPublic' => array(
|
338 |
'version' => '3.0.14.0',
|
339 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/MontgomeryPublic.php'
|
340 |
),
|
341 |
+
'phpseclib3\\Crypt\\EC\\PrivateKey' => array(
|
342 |
'version' => '3.0.14.0',
|
343 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/PrivateKey.php'
|
344 |
),
|
345 |
+
'phpseclib3\\Crypt\\EC\\Curves\\Curve25519' => array(
|
346 |
'version' => '3.0.14.0',
|
347 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Curve25519.php'
|
348 |
),
|
349 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect163k1' => array(
|
350 |
'version' => '3.0.14.0',
|
351 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163k1.php'
|
352 |
),
|
353 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime192v2' => array(
|
354 |
'version' => '3.0.14.0',
|
355 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v2.php'
|
356 |
),
|
357 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP192t1' => array(
|
358 |
'version' => '3.0.14.0',
|
359 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP192t1.php'
|
360 |
),
|
361 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime256v1' => array(
|
362 |
'version' => '3.0.14.0',
|
363 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime256v1.php'
|
364 |
),
|
365 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistt571' => array(
|
366 |
'version' => '3.0.14.0',
|
367 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistt571.php'
|
368 |
),
|
369 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp160k1' => array(
|
370 |
'version' => '3.0.14.0',
|
371 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160k1.php'
|
372 |
),
|
373 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP256r1' => array(
|
374 |
'version' => '3.0.14.0',
|
375 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP256r1.php'
|
376 |
),
|
377 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistk233' => array(
|
378 |
'version' => '3.0.14.0',
|
379 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk233.php'
|
380 |
),
|
381 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect193r2' => array(
|
382 |
'version' => '3.0.14.0',
|
383 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect193r2.php'
|
384 |
),
|
385 |
+
'phpseclib3\\Crypt\\EC\\Curves\\Curve448' => array(
|
386 |
'version' => '3.0.14.0',
|
387 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Curve448.php'
|
388 |
),
|
389 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp112r1' => array(
|
390 |
'version' => '3.0.14.0',
|
391 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp112r1.php'
|
392 |
),
|
393 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime192v3' => array(
|
394 |
'version' => '3.0.14.0',
|
395 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v3.php'
|
396 |
),
|
397 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp160r1' => array(
|
398 |
'version' => '3.0.14.0',
|
399 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160r1.php'
|
400 |
),
|
401 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP192r1' => array(
|
402 |
'version' => '3.0.14.0',
|
403 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP192r1.php'
|
404 |
),
|
405 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP224t1' => array(
|
406 |
'version' => '3.0.14.0',
|
407 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP224t1.php'
|
408 |
),
|
409 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect571k1' => array(
|
410 |
'version' => '3.0.14.0',
|
411 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect571k1.php'
|
412 |
),
|
413 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistp192' => array(
|
414 |
'version' => '3.0.14.0',
|
415 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp192.php'
|
416 |
),
|
417 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP256t1' => array(
|
418 |
'version' => '3.0.14.0',
|
419 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP256t1.php'
|
420 |
),
|
421 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp192r1' => array(
|
422 |
'version' => '3.0.14.0',
|
423 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp192r1.php'
|
424 |
),
|
425 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP160r1' => array(
|
426 |
'version' => '3.0.14.0',
|
427 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP160r1.php'
|
428 |
),
|
429 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistp521' => array(
|
430 |
'version' => '3.0.14.0',
|
431 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp521.php'
|
432 |
),
|
433 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect239k1' => array(
|
434 |
'version' => '3.0.14.0',
|
435 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect239k1.php'
|
436 |
),
|
437 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect283r1' => array(
|
438 |
'version' => '3.0.14.0',
|
439 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect283r1.php'
|
440 |
),
|
441 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp224r1' => array(
|
442 |
'version' => '3.0.14.0',
|
443 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp224r1.php'
|
444 |
),
|
445 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistk163' => array(
|
446 |
'version' => '3.0.14.0',
|
447 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk163.php'
|
448 |
),
|
449 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect163r2' => array(
|
450 |
'version' => '3.0.14.0',
|
451 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163r2.php'
|
452 |
),
|
453 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect233r1' => array(
|
454 |
'version' => '3.0.14.0',
|
455 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect233r1.php'
|
456 |
),
|
457 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP512r1' => array(
|
458 |
'version' => '3.0.14.0',
|
459 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP512r1.php'
|
460 |
),
|
461 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP320t1' => array(
|
462 |
'version' => '3.0.14.0',
|
463 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP320t1.php'
|
464 |
),
|
465 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect571r1' => array(
|
466 |
'version' => '3.0.14.0',
|
467 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect571r1.php'
|
468 |
),
|
469 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp256r1' => array(
|
470 |
'version' => '3.0.14.0',
|
471 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp256r1.php'
|
472 |
),
|
473 |
+
'phpseclib3\\Crypt\\EC\\Curves\\Ed25519' => array(
|
474 |
'version' => '3.0.14.0',
|
475 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Ed25519.php'
|
476 |
),
|
477 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect233k1' => array(
|
478 |
'version' => '3.0.14.0',
|
479 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect233k1.php'
|
480 |
),
|
481 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime239v2' => array(
|
482 |
'version' => '3.0.14.0',
|
483 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v2.php'
|
484 |
),
|
485 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP384r1' => array(
|
486 |
'version' => '3.0.14.0',
|
487 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP384r1.php'
|
488 |
),
|
489 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp128r2' => array(
|
490 |
'version' => '3.0.14.0',
|
491 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp128r2.php'
|
492 |
),
|
493 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP384t1' => array(
|
494 |
'version' => '3.0.14.0',
|
495 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP384t1.php'
|
496 |
),
|
497 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect163r1' => array(
|
498 |
'version' => '3.0.14.0',
|
499 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163r1.php'
|
500 |
),
|
501 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime239v1' => array(
|
502 |
'version' => '3.0.14.0',
|
503 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v1.php'
|
504 |
),
|
505 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp112r2' => array(
|
506 |
'version' => '3.0.14.0',
|
507 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp112r2.php'
|
508 |
),
|
509 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistk283' => array(
|
510 |
'version' => '3.0.14.0',
|
511 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk283.php'
|
512 |
),
|
513 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect409k1' => array(
|
514 |
'version' => '3.0.14.0',
|
515 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect409k1.php'
|
516 |
),
|
517 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistp224' => array(
|
518 |
'version' => '3.0.14.0',
|
519 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp224.php'
|
520 |
),
|
521 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime192v1' => array(
|
522 |
'version' => '3.0.14.0',
|
523 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v1.php'
|
524 |
),
|
525 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect131r2' => array(
|
526 |
'version' => '3.0.14.0',
|
527 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect131r2.php'
|
528 |
),
|
529 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistb233' => array(
|
530 |
'version' => '3.0.14.0',
|
531 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb233.php'
|
532 |
),
|
533 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistp384' => array(
|
534 |
'version' => '3.0.14.0',
|
535 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp384.php'
|
536 |
),
|
537 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistb409' => array(
|
538 |
'version' => '3.0.14.0',
|
539 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb409.php'
|
540 |
),
|
541 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP160t1' => array(
|
542 |
'version' => '3.0.14.0',
|
543 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP160t1.php'
|
544 |
),
|
545 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect409r1' => array(
|
546 |
'version' => '3.0.14.0',
|
547 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect409r1.php'
|
548 |
),
|
549 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP320r1' => array(
|
550 |
'version' => '3.0.14.0',
|
551 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP320r1.php'
|
552 |
),
|
553 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect131r1' => array(
|
554 |
'version' => '3.0.14.0',
|
555 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect131r1.php'
|
556 |
),
|
557 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp384r1' => array(
|
558 |
'version' => '3.0.14.0',
|
559 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp384r1.php'
|
560 |
),
|
561 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp160r2' => array(
|
562 |
'version' => '3.0.14.0',
|
563 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160r2.php'
|
564 |
),
|
565 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp521r1' => array(
|
566 |
'version' => '3.0.14.0',
|
567 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp521r1.php'
|
568 |
),
|
569 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect283k1' => array(
|
570 |
'version' => '3.0.14.0',
|
571 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect283k1.php'
|
572 |
),
|
573 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistk409' => array(
|
574 |
'version' => '3.0.14.0',
|
575 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk409.php'
|
576 |
),
|
577 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp128r1' => array(
|
578 |
'version' => '3.0.14.0',
|
579 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp128r1.php'
|
580 |
),
|
581 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect113r1' => array(
|
582 |
'version' => '3.0.14.0',
|
583 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect113r1.php'
|
584 |
),
|
585 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp192k1' => array(
|
586 |
'version' => '3.0.14.0',
|
587 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp192k1.php'
|
588 |
),
|
589 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp224k1' => array(
|
590 |
'version' => '3.0.14.0',
|
591 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp224k1.php'
|
592 |
),
|
593 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect193r1' => array(
|
594 |
'version' => '3.0.14.0',
|
595 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect193r1.php'
|
596 |
),
|
597 |
+
'phpseclib3\\Crypt\\EC\\Curves\\secp256k1' => array(
|
598 |
'version' => '3.0.14.0',
|
599 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp256k1.php'
|
600 |
),
|
601 |
+
'phpseclib3\\Crypt\\EC\\Curves\\Ed448' => array(
|
602 |
'version' => '3.0.14.0',
|
603 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Ed448.php'
|
604 |
),
|
605 |
+
'phpseclib3\\Crypt\\EC\\Curves\\sect113r2' => array(
|
606 |
'version' => '3.0.14.0',
|
607 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect113r2.php'
|
608 |
),
|
609 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP224r1' => array(
|
610 |
'version' => '3.0.14.0',
|
611 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP224r1.php'
|
612 |
),
|
613 |
+
'phpseclib3\\Crypt\\EC\\Curves\\nistp256' => array(
|
614 |
'version' => '3.0.14.0',
|
615 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp256.php'
|
616 |
),
|
617 |
+
'phpseclib3\\Crypt\\EC\\Curves\\prime239v3' => array(
|
618 |
'version' => '3.0.14.0',
|
619 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v3.php'
|
620 |
),
|
621 |
+
'phpseclib3\\Crypt\\EC\\Curves\\brainpoolP512t1' => array(
|
622 |
'version' => '3.0.14.0',
|
623 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP512t1.php'
|
624 |
),
|
625 |
+
'phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery' => array(
|
626 |
'version' => '3.0.14.0',
|
627 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Montgomery.php'
|
628 |
),
|
629 |
+
'phpseclib3\\Crypt\\EC\\BaseCurves\\Base' => array(
|
630 |
'version' => '3.0.14.0',
|
631 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Base.php'
|
632 |
),
|
633 |
+
'phpseclib3\\Crypt\\EC\\BaseCurves\\Prime' => array(
|
634 |
'version' => '3.0.14.0',
|
635 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Prime.php'
|
636 |
),
|
637 |
+
'phpseclib3\\Crypt\\EC\\BaseCurves\\TwistedEdwards' => array(
|
638 |
'version' => '3.0.14.0',
|
639 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/TwistedEdwards.php'
|
640 |
),
|
641 |
+
'phpseclib3\\Crypt\\EC\\BaseCurves\\KoblitzPrime' => array(
|
642 |
'version' => '3.0.14.0',
|
643 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/KoblitzPrime.php'
|
644 |
),
|
645 |
+
'phpseclib3\\Crypt\\EC\\BaseCurves\\Binary' => array(
|
646 |
'version' => '3.0.14.0',
|
647 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Binary.php'
|
648 |
),
|
649 |
+
'phpseclib3\\Crypt\\Blowfish' => array(
|
650 |
'version' => '3.0.14.0',
|
651 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php'
|
652 |
),
|
653 |
+
'phpseclib3\\Crypt\\TripleDES' => array(
|
654 |
'version' => '3.0.14.0',
|
655 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php'
|
656 |
),
|
657 |
+
'phpseclib3\\Crypt\\AES' => array(
|
658 |
'version' => '3.0.14.0',
|
659 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/AES.php'
|
660 |
),
|
661 |
+
'phpseclib3\\Crypt\\PublicKeyLoader' => array(
|
662 |
'version' => '3.0.14.0',
|
663 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/PublicKeyLoader.php'
|
664 |
),
|
665 |
+
'phpseclib3\\Crypt\\RSA' => array(
|
666 |
'version' => '3.0.14.0',
|
667 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA.php'
|
668 |
),
|
669 |
+
'phpseclib3\\Crypt\\Rijndael' => array(
|
670 |
'version' => '3.0.14.0',
|
671 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'
|
672 |
),
|
673 |
+
'phpseclib3\\Crypt\\Salsa20' => array(
|
674 |
'version' => '3.0.14.0',
|
675 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Salsa20.php'
|
676 |
),
|
677 |
+
'phpseclib3\\Crypt\\EC' => array(
|
678 |
'version' => '3.0.14.0',
|
679 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/EC.php'
|
680 |
),
|
681 |
+
'phpseclib3\\Crypt\\DES' => array(
|
682 |
'version' => '3.0.14.0',
|
683 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DES.php'
|
684 |
),
|
685 |
+
'phpseclib3\\Crypt\\Random' => array(
|
686 |
'version' => '3.0.14.0',
|
687 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Random.php'
|
688 |
),
|
689 |
+
'phpseclib3\\Crypt\\RSA\\PublicKey' => array(
|
690 |
'version' => '3.0.14.0',
|
691 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/PublicKey.php'
|
692 |
),
|
693 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\XML' => array(
|
694 |
'version' => '3.0.14.0',
|
695 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/XML.php'
|
696 |
),
|
697 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\PuTTY' => array(
|
698 |
'version' => '3.0.14.0',
|
699 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PuTTY.php'
|
700 |
),
|
701 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\OpenSSH' => array(
|
702 |
'version' => '3.0.14.0',
|
703 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/OpenSSH.php'
|
704 |
),
|
705 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\PKCS1' => array(
|
706 |
'version' => '3.0.14.0',
|
707 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PKCS1.php'
|
708 |
),
|
709 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\PKCS8' => array(
|
710 |
'version' => '3.0.14.0',
|
711 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PKCS8.php'
|
712 |
),
|
713 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\MSBLOB' => array(
|
714 |
'version' => '3.0.14.0',
|
715 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/MSBLOB.php'
|
716 |
),
|
717 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\Raw' => array(
|
718 |
'version' => '3.0.14.0',
|
719 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/Raw.php'
|
720 |
),
|
721 |
+
'phpseclib3\\Crypt\\RSA\\Formats\\Keys\\PSS' => array(
|
722 |
'version' => '3.0.14.0',
|
723 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PSS.php'
|
724 |
),
|
725 |
+
'phpseclib3\\Crypt\\RSA\\PrivateKey' => array(
|
726 |
'version' => '3.0.14.0',
|
727 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RSA/PrivateKey.php'
|
728 |
),
|
729 |
+
'phpseclib3\\Crypt\\RC4' => array(
|
730 |
'version' => '3.0.14.0',
|
731 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RC4.php'
|
732 |
),
|
733 |
+
'phpseclib3\\Crypt\\DSA' => array(
|
734 |
'version' => '3.0.14.0',
|
735 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DSA.php'
|
736 |
),
|
737 |
+
'phpseclib3\\Crypt\\RC2' => array(
|
738 |
'version' => '3.0.14.0',
|
739 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/RC2.php'
|
740 |
),
|
741 |
+
'phpseclib3\\Crypt\\DH' => array(
|
742 |
'version' => '3.0.14.0',
|
743 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/DH.php'
|
744 |
),
|
745 |
+
'phpseclib3\\System\\SSH\\Agent' => array(
|
746 |
'version' => '3.0.14.0',
|
747 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php'
|
748 |
),
|
749 |
+
'phpseclib3\\System\\SSH\\Common\\Traits\\ReadBytes' => array(
|
750 |
'version' => '3.0.14.0',
|
751 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/ReadBytes.php'
|
752 |
),
|
753 |
+
'phpseclib3\\System\\SSH\\Agent\\Identity' => array(
|
754 |
'version' => '3.0.14.0',
|
755 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php'
|
756 |
),
|
757 |
+
'phpseclib3\\File\\ASN1\\Maps\\OrganizationName' => array(
|
758 |
'version' => '3.0.14.0',
|
759 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/OrganizationName.php'
|
760 |
),
|
761 |
+
'phpseclib3\\File\\ASN1\\Maps\\BaseDistance' => array(
|
762 |
'version' => '3.0.14.0',
|
763 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/BaseDistance.php'
|
764 |
),
|
765 |
+
'phpseclib3\\File\\ASN1\\Maps\\RSASSA_PSS_params' => array(
|
766 |
'version' => '3.0.14.0',
|
767 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RSASSA_PSS_params.php'
|
768 |
),
|
769 |
+
'phpseclib3\\File\\ASN1\\Maps\\ReasonFlags' => array(
|
770 |
'version' => '3.0.14.0',
|
771 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ReasonFlags.php'
|
772 |
),
|
773 |
+
'phpseclib3\\File\\ASN1\\Maps\\PublicKey' => array(
|
774 |
'version' => '3.0.14.0',
|
775 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PublicKey.php'
|
776 |
),
|
777 |
+
'phpseclib3\\File\\ASN1\\Maps\\AuthorityInfoAccessSyntax' => array(
|
778 |
'version' => '3.0.14.0',
|
779 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AuthorityInfoAccessSyntax.php'
|
780 |
),
|
781 |
+
'phpseclib3\\File\\ASN1\\Maps\\GeneralSubtrees' => array(
|
782 |
'version' => '3.0.14.0',
|
783 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/GeneralSubtrees.php'
|
784 |
),
|
785 |
+
'phpseclib3\\File\\ASN1\\Maps\\KeyIdentifier' => array(
|
786 |
'version' => '3.0.14.0',
|
787 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/KeyIdentifier.php'
|
788 |
),
|
789 |
+
'phpseclib3\\File\\ASN1\\Maps\\BuiltInDomainDefinedAttributes' => array(
|
790 |
'version' => '3.0.14.0',
|
791 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/BuiltInDomainDefinedAttributes.php'
|
792 |
),
|
793 |
+
'phpseclib3\\File\\ASN1\\Maps\\RSAPublicKey' => array(
|
794 |
'version' => '3.0.14.0',
|
795 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RSAPublicKey.php'
|
796 |
),
|
797 |
+
'phpseclib3\\File\\ASN1\\Maps\\PrivateKeyUsagePeriod' => array(
|
798 |
'version' => '3.0.14.0',
|
799 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PrivateKeyUsagePeriod.php'
|
800 |
),
|
801 |
+
'phpseclib3\\File\\ASN1\\Maps\\PBMAC1params' => array(
|
802 |
'version' => '3.0.14.0',
|
803 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PBMAC1params.php'
|
804 |
),
|
805 |
+
'phpseclib3\\File\\ASN1\\Maps\\AttributeValue' => array(
|
806 |
'version' => '3.0.14.0',
|
807 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AttributeValue.php'
|
808 |
),
|
809 |
+
'phpseclib3\\File\\ASN1\\Maps\\NetworkAddress' => array(
|
810 |
'version' => '3.0.14.0',
|
811 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/NetworkAddress.php'
|
812 |
),
|
813 |
+
'phpseclib3\\File\\ASN1\\Maps\\Certificate' => array(
|
814 |
'version' => '3.0.14.0',
|
815 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Certificate.php'
|
816 |
),
|
817 |
+
'phpseclib3\\File\\ASN1\\Maps\\PrivateKeyInfo' => array(
|
818 |
'version' => '3.0.14.0',
|
819 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PrivateKeyInfo.php'
|
820 |
),
|
821 |
+
'phpseclib3\\File\\ASN1\\Maps\\AuthorityKeyIdentifier' => array(
|
822 |
'version' => '3.0.14.0',
|
823 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AuthorityKeyIdentifier.php'
|
824 |
),
|
825 |
+
'phpseclib3\\File\\ASN1\\Maps\\PostalAddress' => array(
|
826 |
'version' => '3.0.14.0',
|
827 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PostalAddress.php'
|
828 |
),
|
829 |
+
'phpseclib3\\File\\ASN1\\Maps\\ExtensionAttributes' => array(
|
830 |
'version' => '3.0.14.0',
|
831 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ExtensionAttributes.php'
|
832 |
),
|
833 |
+
'phpseclib3\\File\\ASN1\\Maps\\Characteristic_two' => array(
|
834 |
'version' => '3.0.14.0',
|
835 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Characteristic_two.php'
|
836 |
),
|
837 |
+
'phpseclib3\\File\\ASN1\\Maps\\Curve' => array(
|
838 |
'version' => '3.0.14.0',
|
839 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Curve.php'
|
840 |
),
|
841 |
+
'phpseclib3\\File\\ASN1\\Maps\\Name' => array(
|
842 |
'version' => '3.0.14.0',
|
843 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Name.php'
|
844 |
),
|
845 |
+
'phpseclib3\\File\\ASN1\\Maps\\RevokedCertificate' => array(
|
846 |
'version' => '3.0.14.0',
|
847 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RevokedCertificate.php'
|
848 |
),
|
849 |
+
'phpseclib3\\File\\ASN1\\Maps\\OtherPrimeInfo' => array(
|
850 |
'version' => '3.0.14.0',
|
851 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/OtherPrimeInfo.php'
|
852 |
),
|
853 |
+
'phpseclib3\\File\\ASN1\\Maps\\PolicyMappings' => array(
|
854 |
'version' => '3.0.14.0',
|
855 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PolicyMappings.php'
|
856 |
),
|
857 |
+
'phpseclib3\\File\\ASN1\\Maps\\SignedPublicKeyAndChallenge' => array(
|
858 |
'version' => '3.0.14.0',
|
859 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SignedPublicKeyAndChallenge.php'
|
860 |
),
|
861 |
+
'phpseclib3\\File\\ASN1\\Maps\\Pentanomial' => array(
|
862 |
'version' => '3.0.14.0',
|
863 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Pentanomial.php'
|
864 |
),
|
865 |
+
'phpseclib3\\File\\ASN1\\Maps\\UniqueIdentifier' => array(
|
866 |
'version' => '3.0.14.0',
|
867 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/UniqueIdentifier.php'
|
868 |
),
|
869 |
+
'phpseclib3\\File\\ASN1\\Maps\\OneAsymmetricKey' => array(
|
870 |
'version' => '3.0.14.0',
|
871 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/OneAsymmetricKey.php'
|
872 |
),
|
873 |
+
'phpseclib3\\File\\ASN1\\Maps\\PBKDF2params' => array(
|
874 |
'version' => '3.0.14.0',
|
875 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PBKDF2params.php'
|
876 |
),
|
877 |
+
'phpseclib3\\File\\ASN1\\Maps\\SubjectAltName' => array(
|
878 |
'version' => '3.0.14.0',
|
879 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SubjectAltName.php'
|
880 |
),
|
881 |
+
'phpseclib3\\File\\ASN1\\Maps\\Extensions' => array(
|
882 |
'version' => '3.0.14.0',
|
883 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Extensions.php'
|
884 |
),
|
885 |
+
'phpseclib3\\File\\ASN1\\Maps\\PBES2params' => array(
|
886 |
'version' => '3.0.14.0',
|
887 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PBES2params.php'
|
888 |
),
|
889 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertificatePolicies' => array(
|
890 |
'version' => '3.0.14.0',
|
891 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificatePolicies.php'
|
892 |
),
|
893 |
+
'phpseclib3\\File\\ASN1\\Maps\\IssuerAltName' => array(
|
894 |
'version' => '3.0.14.0',
|
895 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/IssuerAltName.php'
|
896 |
),
|
897 |
+
'phpseclib3\\File\\ASN1\\Maps\\DigestInfo' => array(
|
898 |
'version' => '3.0.14.0',
|
899 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DigestInfo.php'
|
900 |
),
|
901 |
+
'phpseclib3\\File\\ASN1\\Maps\\CRLDistributionPoints' => array(
|
902 |
'version' => '3.0.14.0',
|
903 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CRLDistributionPoints.php'
|
904 |
),
|
905 |
+
'phpseclib3\\File\\ASN1\\Maps\\DHParameter' => array(
|
906 |
'version' => '3.0.14.0',
|
907 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DHParameter.php'
|
908 |
),
|
909 |
+
'phpseclib3\\File\\ASN1\\Maps\\DSAPublicKey' => array(
|
910 |
'version' => '3.0.14.0',
|
911 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DSAPublicKey.php'
|
912 |
),
|
913 |
+
'phpseclib3\\File\\ASN1\\Maps\\RDNSequence' => array(
|
914 |
'version' => '3.0.14.0',
|
915 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RDNSequence.php'
|
916 |
),
|
917 |
+
'phpseclib3\\File\\ASN1\\Maps\\PolicyInformation' => array(
|
918 |
'version' => '3.0.14.0',
|
919 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PolicyInformation.php'
|
920 |
),
|
921 |
+
'phpseclib3\\File\\ASN1\\Maps\\DistributionPointName' => array(
|
922 |
'version' => '3.0.14.0',
|
923 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DistributionPointName.php'
|
924 |
),
|
925 |
+
'phpseclib3\\File\\ASN1\\Maps\\GeneralSubtree' => array(
|
926 |
'version' => '3.0.14.0',
|
927 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/GeneralSubtree.php'
|
928 |
),
|
929 |
+
'phpseclib3\\File\\ASN1\\Maps\\AttributeType' => array(
|
930 |
'version' => '3.0.14.0',
|
931 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AttributeType.php'
|
932 |
),
|
933 |
+
'phpseclib3\\File\\ASN1\\Maps\\Attribute' => array(
|
934 |
'version' => '3.0.14.0',
|
935 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Attribute.php'
|
936 |
),
|
937 |
+
'phpseclib3\\File\\ASN1\\Maps\\DirectoryString' => array(
|
938 |
'version' => '3.0.14.0',
|
939 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DirectoryString.php'
|
940 |
),
|
941 |
+
'phpseclib3\\File\\ASN1\\Maps\\DssSigValue' => array(
|
942 |
'version' => '3.0.14.0',
|
943 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DssSigValue.php'
|
944 |
),
|
945 |
+
'phpseclib3\\File\\ASN1\\Maps\\PBEParameter' => array(
|
946 |
'version' => '3.0.14.0',
|
947 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PBEParameter.php'
|
948 |
),
|
949 |
+
'phpseclib3\\File\\ASN1\\Maps\\SpecifiedECDomain' => array(
|
950 |
'version' => '3.0.14.0',
|
951 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SpecifiedECDomain.php'
|
952 |
),
|
953 |
+
'phpseclib3\\File\\ASN1\\Maps\\ECPrivateKey' => array(
|
954 |
'version' => '3.0.14.0',
|
955 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ECPrivateKey.php'
|
956 |
),
|
957 |
+
'phpseclib3\\File\\ASN1\\Maps\\HoldInstructionCode' => array(
|
958 |
'version' => '3.0.14.0',
|
959 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/HoldInstructionCode.php'
|
960 |
),
|
961 |
+
'phpseclib3\\File\\ASN1\\Maps\\MaskGenAlgorithm' => array(
|
962 |
'version' => '3.0.14.0',
|
963 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/MaskGenAlgorithm.php'
|
964 |
),
|
965 |
+
'phpseclib3\\File\\ASN1\\Maps\\Prime_p' => array(
|
966 |
'version' => '3.0.14.0',
|
967 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Prime_p.php'
|
968 |
),
|
969 |
+
'phpseclib3\\File\\ASN1\\Maps\\EncryptedPrivateKeyInfo' => array(
|
970 |
'version' => '3.0.14.0',
|
971 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/EncryptedPrivateKeyInfo.php'
|
972 |
),
|
973 |
+
'phpseclib3\\File\\ASN1\\Maps\\ExtensionAttribute' => array(
|
974 |
'version' => '3.0.14.0',
|
975 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ExtensionAttribute.php'
|
976 |
),
|
977 |
+
'phpseclib3\\File\\ASN1\\Maps\\DisplayText' => array(
|
978 |
'version' => '3.0.14.0',
|
979 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DisplayText.php'
|
980 |
),
|
981 |
+
'phpseclib3\\File\\ASN1\\Maps\\NameConstraints' => array(
|
982 |
'version' => '3.0.14.0',
|
983 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/NameConstraints.php'
|
984 |
),
|
985 |
+
'phpseclib3\\File\\ASN1\\Maps\\KeyPurposeId' => array(
|
986 |
'version' => '3.0.14.0',
|
987 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/KeyPurposeId.php'
|
988 |
),
|
989 |
+
'phpseclib3\\File\\ASN1\\Maps\\OtherPrimeInfos' => array(
|
990 |
'version' => '3.0.14.0',
|
991 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/OtherPrimeInfos.php'
|
992 |
),
|
993 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertificateSerialNumber' => array(
|
994 |
'version' => '3.0.14.0',
|
995 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificateSerialNumber.php'
|
996 |
),
|
997 |
+
'phpseclib3\\File\\ASN1\\Maps\\ECParameters' => array(
|
998 |
'version' => '3.0.14.0',
|
999 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ECParameters.php'
|
1000 |
),
|
1001 |
+
'phpseclib3\\File\\ASN1\\Maps\\ECPoint' => array(
|
1002 |
'version' => '3.0.14.0',
|
1003 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ECPoint.php'
|
1004 |
),
|
1005 |
+
'phpseclib3\\File\\ASN1\\Maps\\KeyUsage' => array(
|
1006 |
'version' => '3.0.14.0',
|
1007 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/KeyUsage.php'
|
1008 |
),
|
1009 |
+
'phpseclib3\\File\\ASN1\\Maps\\UserNotice' => array(
|
1010 |
'version' => '3.0.14.0',
|
1011 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/UserNotice.php'
|
1012 |
),
|
1013 |
+
'phpseclib3\\File\\ASN1\\Maps\\EDIPartyName' => array(
|
1014 |
'version' => '3.0.14.0',
|
1015 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/EDIPartyName.php'
|
1016 |
),
|
1017 |
+
'phpseclib3\\File\\ASN1\\Maps\\FieldID' => array(
|
1018 |
'version' => '3.0.14.0',
|
1019 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/FieldID.php'
|
1020 |
),
|
1021 |
+
'phpseclib3\\File\\ASN1\\Maps\\PrivateDomainName' => array(
|
1022 |
'version' => '3.0.14.0',
|
1023 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PrivateDomainName.php'
|
1024 |
),
|
1025 |
+
'phpseclib3\\File\\ASN1\\Maps\\CRLNumber' => array(
|
1026 |
'version' => '3.0.14.0',
|
1027 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CRLNumber.php'
|
1028 |
),
|
1029 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertificationRequestInfo' => array(
|
1030 |
'version' => '3.0.14.0',
|
1031 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificationRequestInfo.php'
|
1032 |
),
|
1033 |
+
'phpseclib3\\File\\ASN1\\Maps\\netscape_cert_type' => array(
|
|
|
|
|
|
|
|
|
1034 |
'version' => '3.0.14.0',
|
1035 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/netscape_cert_type.php'
|
1036 |
),
|
1037 |
+
'phpseclib3\\File\\ASN1\\Maps\\CPSuri' => array(
|
1038 |
'version' => '3.0.14.0',
|
1039 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CPSuri.php'
|
1040 |
),
|
1041 |
+
'phpseclib3\\File\\ASN1\\Maps\\OrganizationalUnitNames' => array(
|
1042 |
'version' => '3.0.14.0',
|
1043 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/OrganizationalUnitNames.php'
|
1044 |
),
|
1045 |
+
'phpseclib3\\File\\ASN1\\Maps\\IssuingDistributionPoint' => array(
|
1046 |
'version' => '3.0.14.0',
|
1047 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/IssuingDistributionPoint.php'
|
1048 |
),
|
1049 |
+
'phpseclib3\\File\\ASN1\\Maps\\PublicKeyInfo' => array(
|
1050 |
'version' => '3.0.14.0',
|
1051 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PublicKeyInfo.php'
|
1052 |
),
|
1053 |
+
'phpseclib3\\File\\ASN1\\Maps\\RelativeDistinguishedName' => array(
|
1054 |
'version' => '3.0.14.0',
|
1055 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RelativeDistinguishedName.php'
|
1056 |
),
|
1057 |
+
'phpseclib3\\File\\ASN1\\Maps\\NumericUserIdentifier' => array(
|
1058 |
'version' => '3.0.14.0',
|
1059 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/NumericUserIdentifier.php'
|
1060 |
),
|
1061 |
+
'phpseclib3\\File\\ASN1\\Maps\\SubjectDirectoryAttributes' => array(
|
1062 |
'version' => '3.0.14.0',
|
1063 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SubjectDirectoryAttributes.php'
|
1064 |
),
|
1065 |
+
'phpseclib3\\File\\ASN1\\Maps\\AnotherName' => array(
|
1066 |
'version' => '3.0.14.0',
|
1067 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AnotherName.php'
|
1068 |
),
|
1069 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertificateIssuer' => array(
|
1070 |
'version' => '3.0.14.0',
|
1071 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificateIssuer.php'
|
1072 |
),
|
1073 |
+
'phpseclib3\\File\\ASN1\\Maps\\HashAlgorithm' => array(
|
1074 |
'version' => '3.0.14.0',
|
1075 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/HashAlgorithm.php'
|
1076 |
),
|
1077 |
+
'phpseclib3\\File\\ASN1\\Maps\\AlgorithmIdentifier' => array(
|
1078 |
'version' => '3.0.14.0',
|
1079 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AlgorithmIdentifier.php'
|
1080 |
),
|
1081 |
+
'phpseclib3\\File\\ASN1\\Maps\\InvalidityDate' => array(
|
1082 |
'version' => '3.0.14.0',
|
1083 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/InvalidityDate.php'
|
1084 |
),
|
1085 |
+
'phpseclib3\\File\\ASN1\\Maps\\SubjectInfoAccessSyntax' => array(
|
1086 |
'version' => '3.0.14.0',
|
1087 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SubjectInfoAccessSyntax.php'
|
1088 |
),
|
1089 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertificationRequest' => array(
|
1090 |
'version' => '3.0.14.0',
|
1091 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificationRequest.php'
|
1092 |
),
|
1093 |
+
'phpseclib3\\File\\ASN1\\Maps\\Attributes' => array(
|
1094 |
'version' => '3.0.14.0',
|
1095 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Attributes.php'
|
1096 |
),
|
1097 |
+
'phpseclib3\\File\\ASN1\\Maps\\AccessDescription' => array(
|
1098 |
'version' => '3.0.14.0',
|
1099 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AccessDescription.php'
|
1100 |
),
|
1101 |
+
'phpseclib3\\File\\ASN1\\Maps\\FieldElement' => array(
|
1102 |
'version' => '3.0.14.0',
|
1103 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/FieldElement.php'
|
1104 |
),
|
1105 |
+
'phpseclib3\\File\\ASN1\\Maps\\BuiltInStandardAttributes' => array(
|
1106 |
'version' => '3.0.14.0',
|
1107 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/BuiltInStandardAttributes.php'
|
1108 |
),
|
1109 |
+
'phpseclib3\\File\\ASN1\\Maps\\BasicConstraints' => array(
|
1110 |
'version' => '3.0.14.0',
|
1111 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/BasicConstraints.php'
|
1112 |
),
|
1113 |
+
'phpseclib3\\File\\ASN1\\Maps\\Trinomial' => array(
|
1114 |
'version' => '3.0.14.0',
|
1115 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Trinomial.php'
|
1116 |
),
|
1117 |
+
'phpseclib3\\File\\ASN1\\Maps\\PolicyQualifierId' => array(
|
1118 |
'version' => '3.0.14.0',
|
1119 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PolicyQualifierId.php'
|
1120 |
),
|
1121 |
+
'phpseclib3\\File\\ASN1\\Maps\\netscape_ca_policy_url' => array(
|
1122 |
'version' => '3.0.14.0',
|
1123 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/netscape_ca_policy_url.php'
|
1124 |
),
|
1125 |
+
'phpseclib3\\File\\ASN1\\Maps\\PrivateKey' => array(
|
1126 |
'version' => '3.0.14.0',
|
1127 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PrivateKey.php'
|
1128 |
),
|
1129 |
+
'phpseclib3\\File\\ASN1\\Maps\\EcdsaSigValue' => array(
|
1130 |
'version' => '3.0.14.0',
|
1131 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/EcdsaSigValue.php'
|
1132 |
),
|
1133 |
+
'phpseclib3\\File\\ASN1\\Maps\\NoticeReference' => array(
|
1134 |
'version' => '3.0.14.0',
|
1135 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/NoticeReference.php'
|
1136 |
),
|
1137 |
+
'phpseclib3\\File\\ASN1\\Maps\\AdministrationDomainName' => array(
|
1138 |
'version' => '3.0.14.0',
|
1139 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AdministrationDomainName.php'
|
1140 |
),
|
1141 |
+
'phpseclib3\\File\\ASN1\\Maps\\netscape_comment' => array(
|
1142 |
'version' => '3.0.14.0',
|
1143 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/netscape_comment.php'
|
1144 |
),
|
1145 |
+
'phpseclib3\\File\\ASN1\\Maps\\PKCS9String' => array(
|
1146 |
'version' => '3.0.14.0',
|
1147 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PKCS9String.php'
|
1148 |
),
|
1149 |
+
'phpseclib3\\File\\ASN1\\Maps\\ORAddress' => array(
|
1150 |
'version' => '3.0.14.0',
|
1151 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ORAddress.php'
|
1152 |
),
|
1153 |
+
'phpseclib3\\File\\ASN1\\Maps\\Validity' => array(
|
1154 |
'version' => '3.0.14.0',
|
1155 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Validity.php'
|
1156 |
),
|
1157 |
+
'phpseclib3\\File\\ASN1\\Maps\\ExtKeyUsageSyntax' => array(
|
1158 |
'version' => '3.0.14.0',
|
1159 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ExtKeyUsageSyntax.php'
|
1160 |
),
|
1161 |
+
'phpseclib3\\File\\ASN1\\Maps\\TBSCertificate' => array(
|
1162 |
'version' => '3.0.14.0',
|
1163 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/TBSCertificate.php'
|
1164 |
),
|
1165 |
+
'phpseclib3\\File\\ASN1\\Maps\\PolicyQualifierInfo' => array(
|
1166 |
'version' => '3.0.14.0',
|
1167 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PolicyQualifierInfo.php'
|
1168 |
),
|
1169 |
+
'phpseclib3\\File\\ASN1\\Maps\\DSAPrivateKey' => array(
|
1170 |
'version' => '3.0.14.0',
|
1171 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DSAPrivateKey.php'
|
1172 |
),
|
1173 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertPolicyId' => array(
|
1174 |
'version' => '3.0.14.0',
|
1175 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertPolicyId.php'
|
1176 |
),
|
1177 |
+
'phpseclib3\\File\\ASN1\\Maps\\GeneralNames' => array(
|
1178 |
'version' => '3.0.14.0',
|
1179 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/GeneralNames.php'
|
1180 |
),
|
1181 |
+
'phpseclib3\\File\\ASN1\\Maps\\PersonalName' => array(
|
1182 |
'version' => '3.0.14.0',
|
1183 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PersonalName.php'
|
1184 |
),
|
1185 |
+
'phpseclib3\\File\\ASN1\\Maps\\TerminalIdentifier' => array(
|
1186 |
'version' => '3.0.14.0',
|
1187 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/TerminalIdentifier.php'
|
1188 |
),
|
1189 |
+
'phpseclib3\\File\\ASN1\\Maps\\EncryptedData' => array(
|
1190 |
'version' => '3.0.14.0',
|
1191 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/EncryptedData.php'
|
1192 |
),
|
1193 |
+
'phpseclib3\\File\\ASN1\\Maps\\DistributionPoint' => array(
|
1194 |
'version' => '3.0.14.0',
|
1195 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DistributionPoint.php'
|
1196 |
),
|
1197 |
+
'phpseclib3\\File\\ASN1\\Maps\\CRLReason' => array(
|
1198 |
'version' => '3.0.14.0',
|
1199 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CRLReason.php'
|
1200 |
),
|
1201 |
+
'phpseclib3\\File\\ASN1\\Maps\\Time' => array(
|
1202 |
'version' => '3.0.14.0',
|
1203 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Time.php'
|
1204 |
),
|
1205 |
+
'phpseclib3\\File\\ASN1\\Maps\\PublicKeyAndChallenge' => array(
|
1206 |
'version' => '3.0.14.0',
|
1207 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PublicKeyAndChallenge.php'
|
1208 |
),
|
1209 |
+
'phpseclib3\\File\\ASN1\\Maps\\RSAPrivateKey' => array(
|
1210 |
'version' => '3.0.14.0',
|
1211 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RSAPrivateKey.php'
|
1212 |
),
|
1213 |
+
'phpseclib3\\File\\ASN1\\Maps\\SubjectPublicKeyInfo' => array(
|
1214 |
'version' => '3.0.14.0',
|
1215 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/SubjectPublicKeyInfo.php'
|
1216 |
),
|
1217 |
+
'phpseclib3\\File\\ASN1\\Maps\\RC2CBCParameter' => array(
|
1218 |
'version' => '3.0.14.0',
|
1219 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/RC2CBCParameter.php'
|
1220 |
),
|
1221 |
+
'phpseclib3\\File\\ASN1\\Maps\\Extension' => array(
|
1222 |
'version' => '3.0.14.0',
|
1223 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/Extension.php'
|
1224 |
),
|
1225 |
+
'phpseclib3\\File\\ASN1\\Maps\\TBSCertList' => array(
|
1226 |
'version' => '3.0.14.0',
|
1227 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/TBSCertList.php'
|
1228 |
),
|
1229 |
+
'phpseclib3\\File\\ASN1\\Maps\\GeneralName' => array(
|
1230 |
'version' => '3.0.14.0',
|
1231 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/GeneralName.php'
|
1232 |
),
|
1233 |
+
'phpseclib3\\File\\ASN1\\Maps\\AttributeTypeAndValue' => array(
|
1234 |
'version' => '3.0.14.0',
|
1235 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/AttributeTypeAndValue.php'
|
1236 |
),
|
1237 |
+
'phpseclib3\\File\\ASN1\\Maps\\DSAParams' => array(
|
1238 |
'version' => '3.0.14.0',
|
1239 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/DSAParams.php'
|
1240 |
),
|
1241 |
+
'phpseclib3\\File\\ASN1\\Maps\\CertificateList' => array(
|
1242 |
'version' => '3.0.14.0',
|
1243 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CertificateList.php'
|
1244 |
),
|
1245 |
+
'phpseclib3\\File\\ASN1\\Maps\\CountryName' => array(
|
1246 |
'version' => '3.0.14.0',
|
1247 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/CountryName.php'
|
1248 |
),
|
1249 |
+
'phpseclib3\\File\\ASN1\\Maps\\BuiltInDomainDefinedAttribute' => array(
|
1250 |
'version' => '3.0.14.0',
|
1251 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/BuiltInDomainDefinedAttribute.php'
|
1252 |
),
|
1253 |
+
'phpseclib3\\File\\ASN1\\Element' => array(
|
1254 |
'version' => '3.0.14.0',
|
1255 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php'
|
1256 |
),
|
1257 |
+
'phpseclib3\\File\\ASN1' => array(
|
1258 |
'version' => '3.0.14.0',
|
1259 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ASN1.php'
|
1260 |
),
|
1261 |
+
'phpseclib3\\File\\X509' => array(
|
1262 |
'version' => '3.0.14.0',
|
1263 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/X509.php'
|
1264 |
),
|
1265 |
+
'phpseclib3\\File\\ANSI' => array(
|
1266 |
'version' => '3.0.14.0',
|
1267 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/File/ANSI.php'
|
1268 |
),
|
1269 |
+
'phpseclib3\\Exception\\UnsupportedAlgorithmException' => array(
|
1270 |
'version' => '3.0.14.0',
|
1271 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnsupportedAlgorithmException.php'
|
1272 |
),
|
1273 |
'phpseclib3\\Exception\\InsufficientSetupException' => array(
|
1274 |
'version' => '3.0.14.0',
|
1275 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/InsufficientSetupException.php'
|
1276 |
),
|
1277 |
+
'phpseclib3\\Exception\\BadDecryptionException' => array(
|
1278 |
'version' => '3.0.14.0',
|
1279 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/BadDecryptionException.php'
|
1280 |
+
),
|
1281 |
+
'phpseclib3\\Exception\\BadModeException' => array(
|
1282 |
+
'version' => '3.0.14.0',
|
1283 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/BadModeException.php'
|
1284 |
),
|
1285 |
'phpseclib3\\Exception\\UnsupportedOperationException' => array(
|
1286 |
'version' => '3.0.14.0',
|
1287 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnsupportedOperationException.php'
|
1288 |
),
|
1289 |
+
'phpseclib3\\Exception\\NoKeyLoadedException' => array(
|
1290 |
'version' => '3.0.14.0',
|
1291 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/NoKeyLoadedException.php'
|
1292 |
+
),
|
1293 |
+
'phpseclib3\\Exception\\BadConfigurationException' => array(
|
1294 |
+
'version' => '3.0.14.0',
|
1295 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/BadConfigurationException.php'
|
1296 |
),
|
1297 |
'phpseclib3\\Exception\\UnsupportedCurveException' => array(
|
1298 |
'version' => '3.0.14.0',
|
1299 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnsupportedCurveException.php'
|
1300 |
),
|
1301 |
+
'phpseclib3\\Exception\\UnsupportedFormatException' => array(
|
1302 |
'version' => '3.0.14.0',
|
1303 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnsupportedFormatException.php'
|
1304 |
),
|
1305 |
+
'phpseclib3\\Exception\\ConnectionClosedException' => array(
|
1306 |
'version' => '3.0.14.0',
|
1307 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/ConnectionClosedException.php'
|
1308 |
),
|
1309 |
'phpseclib3\\Exception\\InconsistentSetupException' => array(
|
1310 |
'version' => '3.0.14.0',
|
1311 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/InconsistentSetupException.php'
|
1312 |
),
|
1313 |
+
'phpseclib3\\Exception\\NoSupportedAlgorithmsException' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1314 |
'version' => '3.0.14.0',
|
1315 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/NoSupportedAlgorithmsException.php'
|
1316 |
),
|
1317 |
'phpseclib3\\Exception\\FileNotFoundException' => array(
|
1318 |
'version' => '3.0.14.0',
|
1319 |
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/FileNotFoundException.php'
|
1320 |
),
|
1321 |
+
'phpseclib3\\Exception\\UnableToConnectException' => array(
|
1322 |
+
'version' => '3.0.14.0',
|
1323 |
+
'path' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Exception/UnableToConnectException.php'
|
1324 |
+
),
|
1325 |
'bcmath_compat\\BCMath' => array(
|
1326 |
'version' => '2.0.1.0',
|
1327 |
'path' => $vendorDir . '/phpseclib/bcmath_compat/src/BCMath.php'
|
1346 |
'version' => '1.26.0.0',
|
1347 |
'path' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php'
|
1348 |
),
|
1349 |
+
'Symfony\\Contracts\\Translation\\LocaleAwareInterface' => array(
|
1350 |
+
'version' => '2.5.1.0',
|
1351 |
+
'path' => $vendorDir . '/symfony/translation-contracts/LocaleAwareInterface.php'
|
1352 |
+
),
|
1353 |
'Symfony\\Contracts\\Translation\\TranslatableInterface' => array(
|
1354 |
'version' => '2.5.1.0',
|
1355 |
'path' => $vendorDir . '/symfony/translation-contracts/TranslatableInterface.php'
|
1358 |
'version' => '2.5.1.0',
|
1359 |
'path' => $vendorDir . '/symfony/translation-contracts/TranslatorInterface.php'
|
1360 |
),
|
1361 |
+
'Symfony\\Contracts\\Translation\\TranslatorTrait' => array(
|
1362 |
'version' => '2.5.1.0',
|
1363 |
+
'path' => $vendorDir . '/symfony/translation-contracts/TranslatorTrait.php'
|
1364 |
),
|
1365 |
'Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => array(
|
1366 |
'version' => '2.5.1.0',
|
1367 |
'path' => $vendorDir . '/symfony/translation-contracts/Test/TranslatorTest.php'
|
1368 |
),
|
1369 |
+
'Symfony\\Component\\Validator\\ObjectInitializerInterface' => array(
|
1370 |
+
'version' => '5.4.8.0',
|
1371 |
+
'path' => $vendorDir . '/symfony/validator/ObjectInitializerInterface.php'
|
1372 |
),
|
1373 |
'Symfony\\Component\\Validator\\DataCollector\\ValidatorDataCollector' => array(
|
1374 |
'version' => '5.4.8.0',
|
1375 |
'path' => $vendorDir . '/symfony/validator/DataCollector/ValidatorDataCollector.php'
|
1376 |
),
|
1377 |
+
'Symfony\\Component\\Validator\\ConstraintValidatorInterface' => array(
|
1378 |
'version' => '5.4.8.0',
|
1379 |
+
'path' => $vendorDir . '/symfony/validator/ConstraintValidatorInterface.php'
|
1380 |
),
|
1381 |
+
'Symfony\\Component\\Validator\\Constraints\\Isbn' => array(
|
1382 |
'version' => '5.4.8.0',
|
1383 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Isbn.php'
|
1384 |
),
|
1385 |
+
'Symfony\\Component\\Validator\\Constraints\\Date' => array(
|
1386 |
'version' => '5.4.8.0',
|
1387 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Date.php'
|
1388 |
),
|
1389 |
+
'Symfony\\Component\\Validator\\Constraints\\LessThan' => array(
|
1390 |
'version' => '5.4.8.0',
|
1391 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LessThan.php'
|
1392 |
),
|
1393 |
+
'Symfony\\Component\\Validator\\Constraints\\GreaterThanOrEqualValidator' => array(
|
1394 |
'version' => '5.4.8.0',
|
1395 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/GreaterThanOrEqualValidator.php'
|
1396 |
),
|
1397 |
+
'Symfony\\Component\\Validator\\Constraints\\Compound' => array(
|
1398 |
'version' => '5.4.8.0',
|
1399 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Compound.php'
|
1400 |
),
|
1401 |
+
'Symfony\\Component\\Validator\\Constraints\\Range' => array(
|
1402 |
'version' => '5.4.8.0',
|
1403 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Range.php'
|
1404 |
),
|
1405 |
+
'Symfony\\Component\\Validator\\Constraints\\Length' => array(
|
1406 |
'version' => '5.4.8.0',
|
1407 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Length.php'
|
1408 |
),
|
1409 |
+
'Symfony\\Component\\Validator\\Constraints\\NegativeOrZero' => array(
|
1410 |
'version' => '5.4.8.0',
|
1411 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NegativeOrZero.php'
|
1412 |
),
|
1413 |
+
'Symfony\\Component\\Validator\\Constraints\\AbstractComparison' => array(
|
1414 |
'version' => '5.4.8.0',
|
1415 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/AbstractComparison.php'
|
1416 |
),
|
1417 |
+
'Symfony\\Component\\Validator\\Constraints\\IsNullValidator' => array(
|
1418 |
'version' => '5.4.8.0',
|
1419 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsNullValidator.php'
|
1420 |
),
|
1421 |
+
'Symfony\\Component\\Validator\\Constraints\\NotBlankValidator' => array(
|
1422 |
'version' => '5.4.8.0',
|
1423 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotBlankValidator.php'
|
1424 |
),
|
1425 |
+
'Symfony\\Component\\Validator\\Constraints\\LengthValidator' => array(
|
1426 |
'version' => '5.4.8.0',
|
1427 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LengthValidator.php'
|
1428 |
),
|
1429 |
+
'Symfony\\Component\\Validator\\Constraints\\ExpressionLanguageSyntax' => array(
|
1430 |
'version' => '5.4.8.0',
|
1431 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ExpressionLanguageSyntax.php'
|
1432 |
),
|
1433 |
+
'Symfony\\Component\\Validator\\Constraints\\RegexValidator' => array(
|
1434 |
'version' => '5.4.8.0',
|
1435 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/RegexValidator.php'
|
1436 |
),
|
1437 |
+
'Symfony\\Component\\Validator\\Constraints\\NotEqualToValidator' => array(
|
1438 |
'version' => '5.4.8.0',
|
1439 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotEqualToValidator.php'
|
1440 |
),
|
1441 |
+
'Symfony\\Component\\Validator\\Constraints\\Expression' => array(
|
1442 |
'version' => '5.4.8.0',
|
1443 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Expression.php'
|
1444 |
),
|
1445 |
+
'Symfony\\Component\\Validator\\Constraints\\LessThanOrEqual' => array(
|
1446 |
'version' => '5.4.8.0',
|
1447 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LessThanOrEqual.php'
|
1448 |
),
|
1449 |
+
'Symfony\\Component\\Validator\\Constraints\\Hostname' => array(
|
1450 |
'version' => '5.4.8.0',
|
1451 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Hostname.php'
|
1452 |
),
|
1453 |
+
'Symfony\\Component\\Validator\\Constraints\\IssnValidator' => array(
|
1454 |
'version' => '5.4.8.0',
|
1455 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IssnValidator.php'
|
1456 |
),
|
1457 |
+
'Symfony\\Component\\Validator\\Constraints\\CountValidator' => array(
|
1458 |
'version' => '5.4.8.0',
|
1459 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CountValidator.php'
|
1460 |
),
|
1461 |
+
'Symfony\\Component\\Validator\\Constraints\\IsTrueValidator' => array(
|
1462 |
'version' => '5.4.8.0',
|
1463 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsTrueValidator.php'
|
1464 |
),
|
1465 |
+
'Symfony\\Component\\Validator\\Constraints\\NotCompromisedPassword' => array(
|
1466 |
'version' => '5.4.8.0',
|
1467 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotCompromisedPassword.php'
|
1468 |
),
|
1469 |
+
'Symfony\\Component\\Validator\\Constraints\\BicValidator' => array(
|
1470 |
'version' => '5.4.8.0',
|
1471 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/BicValidator.php'
|
1472 |
),
|
1473 |
+
'Symfony\\Component\\Validator\\Constraints\\SequentiallyValidator' => array(
|
1474 |
'version' => '5.4.8.0',
|
1475 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/SequentiallyValidator.php'
|
1476 |
),
|
1477 |
+
'Symfony\\Component\\Validator\\Constraints\\ExpressionValidator' => array(
|
1478 |
'version' => '5.4.8.0',
|
1479 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ExpressionValidator.php'
|
1480 |
),
|
1481 |
+
'Symfony\\Component\\Validator\\Constraints\\IsinValidator' => array(
|
1482 |
'version' => '5.4.8.0',
|
1483 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsinValidator.php'
|
1484 |
),
|
1485 |
+
'Symfony\\Component\\Validator\\Constraints\\ZeroComparisonConstraintTrait' => array(
|
1486 |
'version' => '5.4.8.0',
|
1487 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ZeroComparisonConstraintTrait.php'
|
1488 |
),
|
1489 |
+
'Symfony\\Component\\Validator\\Constraints\\Timezone' => array(
|
1490 |
'version' => '5.4.8.0',
|
1491 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Timezone.php'
|
1492 |
),
|
1493 |
+
'Symfony\\Component\\Validator\\Constraints\\ChoiceValidator' => array(
|
1494 |
'version' => '5.4.8.0',
|
1495 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ChoiceValidator.php'
|
1496 |
),
|
1497 |
+
'Symfony\\Component\\Validator\\Constraints\\Type' => array(
|
1498 |
'version' => '5.4.8.0',
|
1499 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Type.php'
|
1500 |
),
|
1501 |
+
'Symfony\\Component\\Validator\\Constraints\\LuhnValidator' => array(
|
1502 |
'version' => '5.4.8.0',
|
1503 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LuhnValidator.php'
|
1504 |
),
|
1505 |
+
'Symfony\\Component\\Validator\\Constraints\\DateTime' => array(
|
1506 |
'version' => '5.4.8.0',
|
1507 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/DateTime.php'
|
1508 |
),
|
1509 |
+
'Symfony\\Component\\Validator\\Constraints\\Sequentially' => array(
|
1510 |
'version' => '5.4.8.0',
|
1511 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Sequentially.php'
|
1512 |
),
|
1513 |
+
'Symfony\\Component\\Validator\\Constraints\\Ip' => array(
|
1514 |
'version' => '5.4.8.0',
|
1515 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Ip.php'
|
1516 |
),
|
1517 |
+
'Symfony\\Component\\Validator\\Constraints\\IdenticalTo' => array(
|
1518 |
'version' => '5.4.8.0',
|
1519 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IdenticalTo.php'
|
1520 |
),
|
1521 |
+
'Symfony\\Component\\Validator\\Constraints\\Luhn' => array(
|
1522 |
'version' => '5.4.8.0',
|
1523 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Luhn.php'
|
1524 |
),
|
1525 |
+
'Symfony\\Component\\Validator\\Constraints\\Image' => array(
|
1526 |
'version' => '5.4.8.0',
|
1527 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Image.php'
|
1528 |
),
|
1529 |
+
'Symfony\\Component\\Validator\\Constraints\\TypeValidator' => array(
|
1530 |
'version' => '5.4.8.0',
|
1531 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/TypeValidator.php'
|
1532 |
),
|
1533 |
+
'Symfony\\Component\\Validator\\Constraints\\Collection' => array(
|
1534 |
'version' => '5.4.8.0',
|
1535 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Collection.php'
|
1536 |
),
|
1537 |
+
'Symfony\\Component\\Validator\\Constraints\\IsFalseValidator' => array(
|
1538 |
'version' => '5.4.8.0',
|
1539 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsFalseValidator.php'
|
1540 |
),
|
1541 |
+
'Symfony\\Component\\Validator\\Constraints\\UlidValidator' => array(
|
1542 |
'version' => '5.4.8.0',
|
1543 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/UlidValidator.php'
|
1544 |
),
|
1545 |
+
'Symfony\\Component\\Validator\\Constraints\\GroupSequenceProvider' => array(
|
1546 |
'version' => '5.4.8.0',
|
1547 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/GroupSequenceProvider.php'
|
1548 |
),
|
1549 |
+
'Symfony\\Component\\Validator\\Constraints\\Choice' => array(
|
1550 |
'version' => '5.4.8.0',
|
1551 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Choice.php'
|
1552 |
),
|
1553 |
+
'Symfony\\Component\\Validator\\Constraints\\Composite' => array(
|
1554 |
'version' => '5.4.8.0',
|
1555 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Composite.php'
|
1556 |
),
|
1557 |
+
'Symfony\\Component\\Validator\\Constraints\\ExpressionLanguageSyntaxValidator' => array(
|
1558 |
'version' => '5.4.8.0',
|
1559 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ExpressionLanguageSyntaxValidator.php'
|
1560 |
),
|
1561 |
+
'Symfony\\Component\\Validator\\Constraints\\Callback' => array(
|
1562 |
'version' => '5.4.8.0',
|
1563 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Callback.php'
|
1564 |
),
|
1565 |
+
'Symfony\\Component\\Validator\\Constraints\\GreaterThanOrEqual' => array(
|
1566 |
'version' => '5.4.8.0',
|
1567 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/GreaterThanOrEqual.php'
|
1568 |
),
|
1569 |
+
'Symfony\\Component\\Validator\\Constraints\\Cidr' => array(
|
1570 |
'version' => '5.4.8.0',
|
1571 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Cidr.php'
|
1572 |
),
|
1573 |
+
'Symfony\\Component\\Validator\\Constraints\\Json' => array(
|
1574 |
'version' => '5.4.8.0',
|
1575 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Json.php'
|
1576 |
),
|
1577 |
+
'Symfony\\Component\\Validator\\Constraints\\CardScheme' => array(
|
1578 |
'version' => '5.4.8.0',
|
1579 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CardScheme.php'
|
1580 |
),
|
1581 |
+
'Symfony\\Component\\Validator\\Constraints\\CountryValidator' => array(
|
1582 |
'version' => '5.4.8.0',
|
1583 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CountryValidator.php'
|
1584 |
),
|
1585 |
+
'Symfony\\Component\\Validator\\Constraints\\CurrencyValidator' => array(
|
1586 |
'version' => '5.4.8.0',
|
1587 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CurrencyValidator.php'
|
1588 |
),
|
1589 |
+
'Symfony\\Component\\Validator\\Constraints\\RangeValidator' => array(
|
1590 |
'version' => '5.4.8.0',
|
1591 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/RangeValidator.php'
|
|
|
|
|
|
|
|
|
1592 |
),
|
1593 |
+
'Symfony\\Component\\Validator\\Constraints\\IsFalse' => array(
|
1594 |
'version' => '5.4.8.0',
|
1595 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsFalse.php'
|
1596 |
),
|
1597 |
+
'Symfony\\Component\\Validator\\Constraints\\IsbnValidator' => array(
|
1598 |
'version' => '5.4.8.0',
|
1599 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsbnValidator.php'
|
1600 |
),
|
1601 |
+
'Symfony\\Component\\Validator\\Constraints\\Valid' => array(
|
1602 |
'version' => '5.4.8.0',
|
1603 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Valid.php'
|
1604 |
),
|
1605 |
+
'Symfony\\Component\\Validator\\Constraints\\UrlValidator' => array(
|
1606 |
'version' => '5.4.8.0',
|
1607 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/UrlValidator.php'
|
1608 |
),
|
1609 |
+
'Symfony\\Component\\Validator\\Constraints\\All' => array(
|
1610 |
'version' => '5.4.8.0',
|
1611 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/All.php'
|
1612 |
),
|
1613 |
+
'Symfony\\Component\\Validator\\Constraints\\Ulid' => array(
|
1614 |
'version' => '5.4.8.0',
|
1615 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Ulid.php'
|
1616 |
),
|
1617 |
+
'Symfony\\Component\\Validator\\Constraints\\IbanValidator' => array(
|
1618 |
'version' => '5.4.8.0',
|
1619 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IbanValidator.php'
|
1620 |
),
|
1621 |
+
'Symfony\\Component\\Validator\\Constraints\\CompoundValidator' => array(
|
1622 |
'version' => '5.4.8.0',
|
1623 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CompoundValidator.php'
|
1624 |
),
|
1625 |
+
'Symfony\\Component\\Validator\\Constraints\\TimezoneValidator' => array(
|
1626 |
'version' => '5.4.8.0',
|
1627 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/TimezoneValidator.php'
|
1628 |
),
|
1629 |
+
'Symfony\\Component\\Validator\\Constraints\\Language' => array(
|
1630 |
'version' => '5.4.8.0',
|
1631 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Language.php'
|
1632 |
),
|
1633 |
+
'Symfony\\Component\\Validator\\Constraints\\DateValidator' => array(
|
1634 |
'version' => '5.4.8.0',
|
1635 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/DateValidator.php'
|
1636 |
),
|
1637 |
+
'Symfony\\Component\\Validator\\Constraints\\EqualTo' => array(
|
1638 |
'version' => '5.4.8.0',
|
1639 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/EqualTo.php'
|
1640 |
),
|
1641 |
+
'Symfony\\Component\\Validator\\Constraints\\LessThanValidator' => array(
|
1642 |
'version' => '5.4.8.0',
|
1643 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LessThanValidator.php'
|
1644 |
),
|
1645 |
+
'Symfony\\Component\\Validator\\Constraints\\Traverse' => array(
|
1646 |
'version' => '5.4.8.0',
|
1647 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Traverse.php'
|
1648 |
),
|
1649 |
+
'Symfony\\Component\\Validator\\Constraints\\CardSchemeValidator' => array(
|
1650 |
'version' => '5.4.8.0',
|
1651 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CardSchemeValidator.php'
|
1652 |
),
|
1653 |
+
'Symfony\\Component\\Validator\\Constraints\\Url' => array(
|
1654 |
'version' => '5.4.8.0',
|
1655 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Url.php'
|
1656 |
),
|
1657 |
+
'Symfony\\Component\\Validator\\Constraints\\TimeValidator' => array(
|
1658 |
'version' => '5.4.8.0',
|
1659 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/TimeValidator.php'
|
1660 |
),
|
1661 |
+
'Symfony\\Component\\Validator\\Constraints\\LocaleValidator' => array(
|
1662 |
'version' => '5.4.8.0',
|
1663 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LocaleValidator.php'
|
1664 |
),
|
1665 |
+
'Symfony\\Component\\Validator\\Constraints\\NotBlank' => array(
|
1666 |
'version' => '5.4.8.0',
|
1667 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotBlank.php'
|
1668 |
),
|
1669 |
+
'Symfony\\Component\\Validator\\Constraints\\NotEqualTo' => array(
|
1670 |
'version' => '5.4.8.0',
|
1671 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotEqualTo.php'
|
1672 |
),
|
1673 |
'Symfony\\Component\\Validator\\Constraints\\NotIdenticalTo' => array(
|
1674 |
'version' => '5.4.8.0',
|
1675 |
'path' => $vendorDir . '/symfony/validator/Constraints/NotIdenticalTo.php'
|
1676 |
),
|
1677 |
+
'Symfony\\Component\\Validator\\Constraints\\NotNull' => array(
|
1678 |
'version' => '5.4.8.0',
|
1679 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotNull.php'
|
1680 |
),
|
1681 |
+
'Symfony\\Component\\Validator\\Constraints\\Regex' => array(
|
1682 |
'version' => '5.4.8.0',
|
1683 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Regex.php'
|
1684 |
),
|
1685 |
+
'Symfony\\Component\\Validator\\Constraints\\DisableAutoMapping' => array(
|
1686 |
'version' => '5.4.8.0',
|
1687 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/DisableAutoMapping.php'
|
1688 |
),
|
1689 |
+
'Symfony\\Component\\Validator\\Constraints\\Email' => array(
|
1690 |
'version' => '5.4.8.0',
|
1691 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Email.php'
|
1692 |
),
|
1693 |
+
'Symfony\\Component\\Validator\\Constraints\\GreaterThan' => array(
|
1694 |
'version' => '5.4.8.0',
|
1695 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/GreaterThan.php'
|
1696 |
),
|
1697 |
+
'Symfony\\Component\\Validator\\Constraints\\Required' => array(
|
1698 |
'version' => '5.4.8.0',
|
1699 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Required.php'
|
1700 |
),
|
1701 |
+
'Symfony\\Component\\Validator\\Constraints\\Positive' => array(
|
1702 |
'version' => '5.4.8.0',
|
1703 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Positive.php'
|
1704 |
),
|
1705 |
+
'Symfony\\Component\\Validator\\Constraints\\CollectionValidator' => array(
|
1706 |
'version' => '5.4.8.0',
|
1707 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CollectionValidator.php'
|
1708 |
),
|
1709 |
+
'Symfony\\Component\\Validator\\Constraints\\AbstractComparisonValidator' => array(
|
1710 |
'version' => '5.4.8.0',
|
1711 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/AbstractComparisonValidator.php'
|
1712 |
),
|
1713 |
+
'Symfony\\Component\\Validator\\Constraints\\EnableAutoMapping' => array(
|
1714 |
'version' => '5.4.8.0',
|
1715 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/EnableAutoMapping.php'
|
1716 |
),
|
1717 |
+
'Symfony\\Component\\Validator\\Constraints\\EqualToValidator' => array(
|
1718 |
'version' => '5.4.8.0',
|
1719 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/EqualToValidator.php'
|
1720 |
),
|
1721 |
+
'Symfony\\Component\\Validator\\Constraints\\GroupSequence' => array(
|
1722 |
'version' => '5.4.8.0',
|
1723 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/GroupSequence.php'
|
1724 |
),
|
1725 |
+
'Symfony\\Component\\Validator\\Constraints\\CssColor' => array(
|
1726 |
'version' => '5.4.8.0',
|
1727 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CssColor.php'
|
1728 |
),
|
1729 |
+
'Symfony\\Component\\Validator\\Constraints\\Existence' => array(
|
1730 |
'version' => '5.4.8.0',
|
1731 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Existence.php'
|
1732 |
),
|
1733 |
+
'Symfony\\Component\\Validator\\Constraints\\HostnameValidator' => array(
|
1734 |
'version' => '5.4.8.0',
|
1735 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/HostnameValidator.php'
|
1736 |
),
|
1737 |
+
'Symfony\\Component\\Validator\\Constraints\\Iban' => array(
|
1738 |
'version' => '5.4.8.0',
|
1739 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Iban.php'
|
1740 |
),
|
1741 |
+
'Symfony\\Component\\Validator\\Constraints\\NotIdenticalToValidator' => array(
|
1742 |
'version' => '5.4.8.0',
|
1743 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotIdenticalToValidator.php'
|
1744 |
),
|
1745 |
+
'Symfony\\Component\\Validator\\Constraints\\UuidValidator' => array(
|
1746 |
'version' => '5.4.8.0',
|
1747 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/UuidValidator.php'
|
1748 |
),
|
1749 |
+
'Symfony\\Component\\Validator\\Constraints\\CallbackValidator' => array(
|
1750 |
'version' => '5.4.8.0',
|
1751 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CallbackValidator.php'
|
1752 |
),
|
1753 |
+
'Symfony\\Component\\Validator\\Constraints\\Negative' => array(
|
1754 |
'version' => '5.4.8.0',
|
1755 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Negative.php'
|
1756 |
),
|
1757 |
+
'Symfony\\Component\\Validator\\Constraints\\IpValidator' => array(
|
1758 |
'version' => '5.4.8.0',
|
1759 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IpValidator.php'
|
1760 |
),
|
1761 |
+
'Symfony\\Component\\Validator\\Constraints\\LessThanOrEqualValidator' => array(
|
1762 |
'version' => '5.4.8.0',
|
1763 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LessThanOrEqualValidator.php'
|
1764 |
),
|
1765 |
+
'Symfony\\Component\\Validator\\Constraints\\JsonValidator' => array(
|
1766 |
'version' => '5.4.8.0',
|
1767 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/JsonValidator.php'
|
1768 |
),
|
1769 |
+
'Symfony\\Component\\Validator\\Constraints\\Cascade' => array(
|
1770 |
'version' => '5.4.8.0',
|
1771 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Cascade.php'
|
1772 |
),
|
1773 |
+
'Symfony\\Component\\Validator\\Constraints\\Bic' => array(
|
1774 |
'version' => '5.4.8.0',
|
1775 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Bic.php'
|
1776 |
),
|
1777 |
+
'Symfony\\Component\\Validator\\Constraints\\DivisibleBy' => array(
|
1778 |
'version' => '5.4.8.0',
|
1779 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/DivisibleBy.php'
|
1780 |
),
|
1781 |
+
'Symfony\\Component\\Validator\\Constraints\\IdenticalToValidator' => array(
|
1782 |
'version' => '5.4.8.0',
|
1783 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IdenticalToValidator.php'
|
1784 |
),
|
1785 |
+
'Symfony\\Component\\Validator\\Constraints\\AllValidator' => array(
|
1786 |
'version' => '5.4.8.0',
|
1787 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/AllValidator.php'
|
1788 |
),
|
1789 |
+
'Symfony\\Component\\Validator\\Constraints\\Uuid' => array(
|
1790 |
'version' => '5.4.8.0',
|
1791 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Uuid.php'
|
1792 |
),
|
1793 |
+
'Symfony\\Component\\Validator\\Constraints\\CidrValidator' => array(
|
1794 |
'version' => '5.4.8.0',
|
1795 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CidrValidator.php'
|
1796 |
),
|
1797 |
+
'Symfony\\Component\\Validator\\Constraints\\IsNull' => array(
|
1798 |
'version' => '5.4.8.0',
|
1799 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsNull.php'
|
1800 |
),
|
1801 |
+
'Symfony\\Component\\Validator\\Constraints\\ValidValidator' => array(
|
1802 |
'version' => '5.4.8.0',
|
1803 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ValidValidator.php'
|
1804 |
),
|
1805 |
+
'Symfony\\Component\\Validator\\Constraints\\Country' => array(
|
1806 |
'version' => '5.4.8.0',
|
1807 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Country.php'
|
1808 |
),
|
1809 |
+
'Symfony\\Component\\Validator\\Constraints\\GreaterThanValidator' => array(
|
1810 |
'version' => '5.4.8.0',
|
1811 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/GreaterThanValidator.php'
|
1812 |
),
|
1813 |
+
'Symfony\\Component\\Validator\\Constraints\\FileValidator' => array(
|
1814 |
'version' => '5.4.8.0',
|
1815 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/FileValidator.php'
|
1816 |
),
|
1817 |
'Symfony\\Component\\Validator\\Constraints\\Optional' => array(
|
1818 |
'version' => '5.4.8.0',
|
1819 |
'path' => $vendorDir . '/symfony/validator/Constraints/Optional.php'
|
1820 |
),
|
1821 |
+
'Symfony\\Component\\Validator\\Constraints\\NotNullValidator' => array(
|
1822 |
'version' => '5.4.8.0',
|
1823 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotNullValidator.php'
|
1824 |
),
|
1825 |
+
'Symfony\\Component\\Validator\\Constraints\\Time' => array(
|
1826 |
'version' => '5.4.8.0',
|
1827 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Time.php'
|
1828 |
),
|
1829 |
+
'Symfony\\Component\\Validator\\Constraints\\Isin' => array(
|
1830 |
'version' => '5.4.8.0',
|
1831 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Isin.php'
|
1832 |
),
|
1833 |
+
'Symfony\\Component\\Validator\\Constraints\\CssColorValidator' => array(
|
1834 |
'version' => '5.4.8.0',
|
1835 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/CssColorValidator.php'
|
1836 |
),
|
1837 |
+
'Symfony\\Component\\Validator\\Constraints\\Unique' => array(
|
1838 |
'version' => '5.4.8.0',
|
1839 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Unique.php'
|
1840 |
),
|
1841 |
+
'Symfony\\Component\\Validator\\Constraints\\IsTrue' => array(
|
1842 |
'version' => '5.4.8.0',
|
1843 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/IsTrue.php'
|
1844 |
),
|
1845 |
+
'Symfony\\Component\\Validator\\Constraints\\LanguageValidator' => array(
|
1846 |
'version' => '5.4.8.0',
|
1847 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/LanguageValidator.php'
|
1848 |
),
|
1849 |
+
'Symfony\\Component\\Validator\\Constraints\\EmailValidator' => array(
|
1850 |
'version' => '5.4.8.0',
|
1851 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/EmailValidator.php'
|
1852 |
),
|
1853 |
+
'Symfony\\Component\\Validator\\Constraints\\ImageValidator' => array(
|
1854 |
'version' => '5.4.8.0',
|
1855 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/ImageValidator.php'
|
1856 |
),
|
1857 |
+
'Symfony\\Component\\Validator\\Constraints\\NotCompromisedPasswordValidator' => array(
|
1858 |
'version' => '5.4.8.0',
|
1859 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NotCompromisedPasswordValidator.php'
|
1860 |
),
|
1861 |
+
'Symfony\\Component\\Validator\\Constraints\\BlankValidator' => array(
|
1862 |
'version' => '5.4.8.0',
|
1863 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/BlankValidator.php'
|
1864 |
),
|
1865 |
+
'Symfony\\Component\\Validator\\Constraints\\AtLeastOneOf' => array(
|
1866 |
'version' => '5.4.8.0',
|
1867 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/AtLeastOneOf.php'
|
1868 |
),
|
1869 |
+
'Symfony\\Component\\Validator\\Constraints\\File' => array(
|
1870 |
'version' => '5.4.8.0',
|
1871 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/File.php'
|
1872 |
),
|
1873 |
+
'Symfony\\Component\\Validator\\Constraints\\Currency' => array(
|
1874 |
'version' => '5.4.8.0',
|
1875 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Currency.php'
|
1876 |
),
|
1877 |
+
'Symfony\\Component\\Validator\\Constraints\\Issn' => array(
|
1878 |
'version' => '5.4.8.0',
|
1879 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Issn.php'
|
1880 |
),
|
1881 |
+
'Symfony\\Component\\Validator\\Constraints\\UniqueValidator' => array(
|
1882 |
'version' => '5.4.8.0',
|
1883 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/UniqueValidator.php'
|
1884 |
),
|
1885 |
+
'Symfony\\Component\\Validator\\Constraints\\Blank' => array(
|
1886 |
'version' => '5.4.8.0',
|
1887 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Blank.php'
|
1888 |
),
|
1889 |
+
'Symfony\\Component\\Validator\\Constraints\\AtLeastOneOfValidator' => array(
|
1890 |
'version' => '5.4.8.0',
|
1891 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/AtLeastOneOfValidator.php'
|
1892 |
),
|
1893 |
+
'Symfony\\Component\\Validator\\Constraints\\Locale' => array(
|
1894 |
'version' => '5.4.8.0',
|
1895 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Locale.php'
|
1896 |
),
|
1897 |
+
'Symfony\\Component\\Validator\\Constraints\\PositiveOrZero' => array(
|
1898 |
'version' => '5.4.8.0',
|
1899 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/PositiveOrZero.php'
|
1900 |
),
|
1901 |
+
'Symfony\\Component\\Validator\\Constraints\\DateTimeValidator' => array(
|
1902 |
'version' => '5.4.8.0',
|
1903 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/DateTimeValidator.php'
|
1904 |
),
|
1905 |
+
'Symfony\\Component\\Validator\\Constraints\\Count' => array(
|
1906 |
'version' => '5.4.8.0',
|
1907 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/Count.php'
|
1908 |
),
|
1909 |
+
'Symfony\\Component\\Validator\\Constraints\\DivisibleByValidator' => array(
|
1910 |
'version' => '5.4.8.0',
|
1911 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/DivisibleByValidator.php'
|
1912 |
),
|
1913 |
+
'Symfony\\Component\\Validator\\Constraints\\NumberConstraintTrait' => array(
|
1914 |
'version' => '5.4.8.0',
|
1915 |
+
'path' => $vendorDir . '/symfony/validator/Constraints/NumberConstraintTrait.php'
|
1916 |
),
|
1917 |
+
'Symfony\\Component\\Validator\\ConstraintValidator' => array(
|
1918 |
'version' => '5.4.8.0',
|
1919 |
+
'path' => $vendorDir . '/symfony/validator/ConstraintValidator.php'
|
1920 |
),
|
1921 |
+
'Symfony\\Component\\Validator\\ConstraintViolationListInterface' => array(
|
1922 |
'version' => '5.4.8.0',
|
1923 |
+
'path' => $vendorDir . '/symfony/validator/ConstraintViolationListInterface.php'
|
1924 |
),
|
1925 |
+
'Symfony\\Component\\Validator\\Validation' => array(
|
1926 |
'version' => '5.4.8.0',
|
1927 |
+
'path' => $vendorDir . '/symfony/validator/Validation.php'
|
1928 |
),
|
1929 |
+
'Symfony\\Component\\Validator\\ContainerConstraintValidatorFactory' => array(
|
1930 |
'version' => '5.4.8.0',
|
1931 |
+
'path' => $vendorDir . '/symfony/validator/ContainerConstraintValidatorFactory.php'
|
1932 |
),
|
1933 |
+
'Symfony\\Component\\Validator\\Command\\DebugCommand' => array(
|
1934 |
'version' => '5.4.8.0',
|
1935 |
+
'path' => $vendorDir . '/symfony/validator/Command/DebugCommand.php'
|
1936 |
),
|
1937 |
+
'Symfony\\Component\\Validator\\ValidatorBuilder' => array(
|
1938 |
'version' => '5.4.8.0',
|
1939 |
+
'path' => $vendorDir . '/symfony/validator/ValidatorBuilder.php'
|
1940 |
),
|
1941 |
+
'Symfony\\Component\\Validator\\ConstraintValidatorFactoryInterface' => array(
|
1942 |
'version' => '5.4.8.0',
|
1943 |
+
'path' => $vendorDir . '/symfony/validator/ConstraintValidatorFactoryInterface.php'
|
1944 |
),
|
1945 |
+
'Symfony\\Component\\Validator\\Mapping\\GenericMetadata' => array(
|
1946 |
'version' => '5.4.8.0',
|
1947 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/GenericMetadata.php'
|
1948 |
),
|
1949 |
+
'Symfony\\Component\\Validator\\Mapping\\MetadataInterface' => array(
|
1950 |
'version' => '5.4.8.0',
|
1951 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/MetadataInterface.php'
|
1952 |
),
|
1953 |
+
'Symfony\\Component\\Validator\\Mapping\\PropertyMetadata' => array(
|
1954 |
'version' => '5.4.8.0',
|
1955 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/PropertyMetadata.php'
|
1956 |
),
|
1957 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\AnnotationLoader' => array(
|
1958 |
'version' => '5.4.8.0',
|
1959 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/AnnotationLoader.php'
|
1960 |
),
|
1961 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\XmlFileLoader' => array(
|
1962 |
'version' => '5.4.8.0',
|
1963 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/XmlFileLoader.php'
|
1964 |
),
|
1965 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\XmlFilesLoader' => array(
|
1966 |
'version' => '5.4.8.0',
|
1967 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/XmlFilesLoader.php'
|
1968 |
),
|
1969 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\YamlFilesLoader' => array(
|
1970 |
'version' => '5.4.8.0',
|
1971 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/YamlFilesLoader.php'
|
1972 |
),
|
1973 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\YamlFileLoader' => array(
|
1974 |
'version' => '5.4.8.0',
|
1975 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/YamlFileLoader.php'
|
1976 |
),
|
1977 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\FileLoader' => array(
|
1978 |
'version' => '5.4.8.0',
|
1979 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/FileLoader.php'
|
1980 |
),
|
1981 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\LoaderInterface' => array(
|
1982 |
'version' => '5.4.8.0',
|
1983 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/LoaderInterface.php'
|
1984 |
),
|
1985 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\AutoMappingTrait' => array(
|
1986 |
'version' => '5.4.8.0',
|
1987 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/AutoMappingTrait.php'
|
1988 |
),
|
1989 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\PropertyInfoLoader' => array(
|
1990 |
'version' => '5.4.8.0',
|
1991 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/PropertyInfoLoader.php'
|
1992 |
),
|
1993 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\AbstractLoader' => array(
|
1994 |
'version' => '5.4.8.0',
|
1995 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/AbstractLoader.php'
|
1996 |
),
|
1997 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\LoaderChain' => array(
|
1998 |
'version' => '5.4.8.0',
|
1999 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/LoaderChain.php'
|
2000 |
),
|
2001 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\StaticMethodLoader' => array(
|
2002 |
'version' => '5.4.8.0',
|
2003 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/StaticMethodLoader.php'
|
2004 |
),
|
2005 |
+
'Symfony\\Component\\Validator\\Mapping\\Loader\\FilesLoader' => array(
|
2006 |
'version' => '5.4.8.0',
|
2007 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Loader/FilesLoader.php'
|
2008 |
),
|
2009 |
+
'Symfony\\Component\\Validator\\Mapping\\CascadingStrategy' => array(
|
2010 |
'version' => '5.4.8.0',
|
2011 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/CascadingStrategy.php'
|
2012 |
),
|
2013 |
+
'Symfony\\Component\\Validator\\Mapping\\PropertyMetadataInterface' => array(
|
2014 |
'version' => '5.4.8.0',
|
2015 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/PropertyMetadataInterface.php'
|
2016 |
),
|
2017 |
+
'Symfony\\Component\\Validator\\Mapping\\Factory\\MetadataFactoryInterface' => array(
|
2018 |
'version' => '5.4.8.0',
|
2019 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Factory/MetadataFactoryInterface.php'
|
2020 |
),
|
2021 |
+
'Symfony\\Component\\Validator\\Mapping\\Factory\\LazyLoadingMetadataFactory' => array(
|
2022 |
'version' => '5.4.8.0',
|
2023 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Factory/LazyLoadingMetadataFactory.php'
|
2024 |
),
|
2025 |
+
'Symfony\\Component\\Validator\\Mapping\\Factory\\BlackHoleMetadataFactory' => array(
|
2026 |
'version' => '5.4.8.0',
|
2027 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/Factory/BlackHoleMetadataFactory.php'
|
2028 |
),
|
2029 |
+
'Symfony\\Component\\Validator\\Mapping\\TraversalStrategy' => array(
|
2030 |
'version' => '5.4.8.0',
|
2031 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/TraversalStrategy.php'
|
2032 |
),
|
2033 |
+
'Symfony\\Component\\Validator\\Mapping\\MemberMetadata' => array(
|
2034 |
'version' => '5.4.8.0',
|
2035 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/MemberMetadata.php'
|
2036 |
),
|
2037 |
+
'Symfony\\Component\\Validator\\Mapping\\ClassMetadata' => array(
|
2038 |
'version' => '5.4.8.0',
|
2039 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/ClassMetadata.php'
|
2040 |
),
|
2041 |
+
'Symfony\\Component\\Validator\\Mapping\\ClassMetadataInterface' => array(
|
2042 |
'version' => '5.4.8.0',
|
2043 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/ClassMetadataInterface.php'
|
2044 |
),
|
2045 |
+
'Symfony\\Component\\Validator\\Mapping\\AutoMappingStrategy' => array(
|
2046 |
'version' => '5.4.8.0',
|
2047 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/AutoMappingStrategy.php'
|
2048 |
),
|
2049 |
+
'Symfony\\Component\\Validator\\Mapping\\GetterMetadata' => array(
|
2050 |
'version' => '5.4.8.0',
|
2051 |
+
'path' => $vendorDir . '/symfony/validator/Mapping/GetterMetadata.php'
|
2052 |
),
|
2053 |
+
'Symfony\\Component\\Validator\\ConstraintViolationList' => array(
|
2054 |
'version' => '5.4.8.0',
|
2055 |
+
'path' => $vendorDir . '/symfony/validator/ConstraintViolationList.php'
|
2056 |
),
|
2057 |
+
'Symfony\\Component\\Validator\\Validator\\TraceableValidator' => array(
|
2058 |
'version' => '5.4.8.0',
|
2059 |
+
'path' => $vendorDir . '/symfony/validator/Validator/TraceableValidator.php'
|
2060 |
),
|
2061 |
+
'Symfony\\Component\\Validator\\Validator\\ContextualValidatorInterface' => array(
|
2062 |
'version' => '5.4.8.0',
|
2063 |
+
'path' => $vendorDir . '/symfony/validator/Validator/ContextualValidatorInterface.php'
|
2064 |
),
|
2065 |
+
'Symfony\\Component\\Validator\\Validator\\ValidatorInterface' => array(
|
2066 |
'version' => '5.4.8.0',
|
2067 |
+
'path' => $vendorDir . '/symfony/validator/Validator/ValidatorInterface.php'
|
2068 |
),
|
2069 |
+
'Symfony\\Component\\Validator\\Validator\\LazyProperty' => array(
|
2070 |
'version' => '5.4.8.0',
|
2071 |
+
'path' => $vendorDir . '/symfony/validator/Validator/LazyProperty.php'
|
2072 |
),
|
2073 |
+
'Symfony\\Component\\Validator\\Validator\\RecursiveContextualValidator' => array(
|
2074 |
'version' => '5.4.8.0',
|
2075 |
+
'path' => $vendorDir . '/symfony/validator/Validator/RecursiveContextualValidator.php'
|
2076 |
),
|
2077 |
+
'Symfony\\Component\\Validator\\Validator\\RecursiveValidator' => array(
|
2078 |
'version' => '5.4.8.0',
|
2079 |
+
'path' => $vendorDir . '/symfony/validator/Validator/RecursiveValidator.php'
|
2080 |
),
|
2081 |
'Symfony\\Component\\Validator\\Util\\PropertyPath' => array(
|
2082 |
'version' => '5.4.8.0',
|
2083 |
'path' => $vendorDir . '/symfony/validator/Util/PropertyPath.php'
|
2084 |
),
|
|
|
|
|
|
|
|
|
2085 |
'Symfony\\Component\\Validator\\ConstraintViolation' => array(
|
2086 |
'version' => '5.4.8.0',
|
2087 |
'path' => $vendorDir . '/symfony/validator/ConstraintViolation.php'
|
2088 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2089 |
'Symfony\\Component\\Validator\\ConstraintValidatorFactory' => array(
|
2090 |
'version' => '5.4.8.0',
|
2091 |
'path' => $vendorDir . '/symfony/validator/ConstraintValidatorFactory.php'
|
2092 |
),
|
2093 |
+
'Symfony\\Component\\Validator\\Violation\\ConstraintViolationBuilderInterface' => array(
|
2094 |
'version' => '5.4.8.0',
|
2095 |
+
'path' => $vendorDir . '/symfony/validator/Violation/ConstraintViolationBuilderInterface.php'
|
2096 |
),
|
2097 |
+
'Symfony\\Component\\Validator\\Violation\\ConstraintViolationBuilder' => array(
|
2098 |
'version' => '5.4.8.0',
|
2099 |
+
'path' => $vendorDir . '/symfony/validator/Violation/ConstraintViolationBuilder.php'
|
2100 |
),
|
2101 |
+
'Symfony\\Component\\Validator\\DependencyInjection\\AddValidatorInitializersPass' => array(
|
2102 |
'version' => '5.4.8.0',
|
2103 |
+
'path' => $vendorDir . '/symfony/validator/DependencyInjection/AddValidatorInitializersPass.php'
|
2104 |
),
|
2105 |
+
'Symfony\\Component\\Validator\\DependencyInjection\\AddConstraintValidatorsPass' => array(
|
2106 |
'version' => '5.4.8.0',
|
2107 |
+
'path' => $vendorDir . '/symfony/validator/DependencyInjection/AddConstraintValidatorsPass.php'
|
2108 |
),
|
2109 |
+
'Symfony\\Component\\Validator\\DependencyInjection\\AddAutoMappingConfigurationPass' => array(
|
2110 |
'version' => '5.4.8.0',
|
2111 |
+
'path' => $vendorDir . '/symfony/validator/DependencyInjection/AddAutoMappingConfigurationPass.php'
|
2112 |
),
|
2113 |
+
'Symfony\\Component\\Validator\\Exception\\RuntimeException' => array(
|
2114 |
'version' => '5.4.8.0',
|
2115 |
+
'path' => $vendorDir . '/symfony/validator/Exception/RuntimeException.php'
|
2116 |
),
|
2117 |
+
'Symfony\\Component\\Validator\\Exception\\UnexpectedTypeException' => array(
|
2118 |
'version' => '5.4.8.0',
|
2119 |
+
'path' => $vendorDir . '/symfony/validator/Exception/UnexpectedTypeException.php'
|
2120 |
),
|
2121 |
+
'Symfony\\Component\\Validator\\Exception\\MissingOptionsException' => array(
|
2122 |
'version' => '5.4.8.0',
|
2123 |
+
'path' => $vendorDir . '/symfony/validator/Exception/MissingOptionsException.php'
|
2124 |
),
|
2125 |
+
'Symfony\\Component\\Validator\\Exception\\InvalidOptionsException' => array(
|
2126 |
'version' => '5.4.8.0',
|
2127 |
+
'path' => $vendorDir . '/symfony/validator/Exception/InvalidOptionsException.php'
|
2128 |
),
|
2129 |
+
'Symfony\\Component\\Validator\\Exception\\BadMethodCallException' => array(
|
2130 |
'version' => '5.4.8.0',
|
2131 |
+
'path' => $vendorDir . '/symfony/validator/Exception/BadMethodCallException.php'
|
2132 |
),
|
2133 |
+
'Symfony\\Component\\Validator\\Exception\\GroupDefinitionException' => array(
|
2134 |
'version' => '5.4.8.0',
|
2135 |
+
'path' => $vendorDir . '/symfony/validator/Exception/GroupDefinitionException.php'
|
2136 |
),
|
2137 |
+
'Symfony\\Component\\Validator\\Exception\\NoSuchMetadataException' => array(
|
2138 |
'version' => '5.4.8.0',
|
2139 |
+
'path' => $vendorDir . '/symfony/validator/Exception/NoSuchMetadataException.php'
|
2140 |
+
),
|
2141 |
+
'Symfony\\Component\\Validator\\Exception\\ExceptionInterface' => array(
|
2142 |
+
'version' => '5.4.8.0',
|
2143 |
+
'path' => $vendorDir . '/symfony/validator/Exception/ExceptionInterface.php'
|
2144 |
+
),
|
2145 |
+
'Symfony\\Component\\Validator\\Exception\\ValidatorException' => array(
|
2146 |
+
'version' => '5.4.8.0',
|
2147 |
+
'path' => $vendorDir . '/symfony/validator/Exception/ValidatorException.php'
|
2148 |
+
),
|
2149 |
+
'Symfony\\Component\\Validator\\Exception\\InvalidArgumentException' => array(
|
2150 |
+
'version' => '5.4.8.0',
|
2151 |
+
'path' => $vendorDir . '/symfony/validator/Exception/InvalidArgumentException.php'
|
2152 |
),
|
2153 |
'Symfony\\Component\\Validator\\Exception\\ConstraintDefinitionException' => array(
|
2154 |
'version' => '5.4.8.0',
|
2155 |
'path' => $vendorDir . '/symfony/validator/Exception/ConstraintDefinitionException.php'
|
2156 |
),
|
2157 |
+
'Symfony\\Component\\Validator\\Exception\\MappingException' => array(
|
2158 |
'version' => '5.4.8.0',
|
2159 |
+
'path' => $vendorDir . '/symfony/validator/Exception/MappingException.php'
|
2160 |
),
|
2161 |
+
'Symfony\\Component\\Validator\\Exception\\OutOfBoundsException' => array(
|
2162 |
'version' => '5.4.8.0',
|
2163 |
+
'path' => $vendorDir . '/symfony/validator/Exception/OutOfBoundsException.php'
|
2164 |
),
|
2165 |
'Symfony\\Component\\Validator\\Exception\\LogicException' => array(
|
2166 |
'version' => '5.4.8.0',
|
2167 |
'path' => $vendorDir . '/symfony/validator/Exception/LogicException.php'
|
2168 |
),
|
2169 |
+
'Symfony\\Component\\Validator\\Exception\\UnexpectedValueException' => array(
|
2170 |
'version' => '5.4.8.0',
|
2171 |
+
'path' => $vendorDir . '/symfony/validator/Exception/UnexpectedValueException.php'
|
2172 |
),
|
2173 |
'Symfony\\Component\\Validator\\Exception\\UnsupportedMetadataException' => array(
|
2174 |
'version' => '5.4.8.0',
|
2175 |
'path' => $vendorDir . '/symfony/validator/Exception/UnsupportedMetadataException.php'
|
2176 |
),
|
|
|
|
|
|
|
|
|
2177 |
'Symfony\\Component\\Validator\\Exception\\ValidationFailedException' => array(
|
2178 |
'version' => '5.4.8.0',
|
2179 |
'path' => $vendorDir . '/symfony/validator/Exception/ValidationFailedException.php'
|
2180 |
),
|
2181 |
+
'Symfony\\Component\\Validator\\Constraint' => array(
|
2182 |
'version' => '5.4.8.0',
|
2183 |
+
'path' => $vendorDir . '/symfony/validator/Constraint.php'
|
2184 |
),
|
2185 |
+
'Symfony\\Component\\Validator\\Test\\ConstraintValidatorTestCase' => array(
|
2186 |
'version' => '5.4.8.0',
|
2187 |
+
'path' => $vendorDir . '/symfony/validator/Test/ConstraintValidatorTestCase.php'
|
2188 |
),
|
2189 |
+
'Symfony\\Component\\Validator\\Test\\ConstraintViolationAssertion' => array(
|
2190 |
'version' => '5.4.8.0',
|
2191 |
+
'path' => $vendorDir . '/symfony/validator/Test/ConstraintValidatorTestCase.php'
|
2192 |
),
|
2193 |
+
'Symfony\\Component\\Validator\\Test\\AssertingContextualValidator' => array(
|
2194 |
'version' => '5.4.8.0',
|
2195 |
+
'path' => $vendorDir . '/symfony/validator/Test/ConstraintValidatorTestCase.php'
|
2196 |
),
|
2197 |
+
'Symfony\\Component\\Validator\\GroupSequenceProviderInterface' => array(
|
2198 |
'version' => '5.4.8.0',
|
2199 |
+
'path' => $vendorDir . '/symfony/validator/GroupSequenceProviderInterface.php'
|
2200 |
),
|
2201 |
+
'Symfony\\Component\\Validator\\Context\\ExecutionContextFactory' => array(
|
2202 |
'version' => '5.4.8.0',
|
2203 |
+
'path' => $vendorDir . '/symfony/validator/Context/ExecutionContextFactory.php'
|
2204 |
),
|
2205 |
+
'Symfony\\Component\\Validator\\Context\\ExecutionContext' => array(
|
2206 |
'version' => '5.4.8.0',
|
2207 |
+
'path' => $vendorDir . '/symfony/validator/Context/ExecutionContext.php'
|
2208 |
),
|
2209 |
+
'Symfony\\Component\\Validator\\Context\\ExecutionContextInterface' => array(
|
2210 |
'version' => '5.4.8.0',
|
2211 |
+
'path' => $vendorDir . '/symfony/validator/Context/ExecutionContextInterface.php'
|
2212 |
),
|
2213 |
+
'Symfony\\Component\\Validator\\Context\\ExecutionContextFactoryInterface' => array(
|
2214 |
'version' => '5.4.8.0',
|
2215 |
+
'path' => $vendorDir . '/symfony/validator/Context/ExecutionContextFactoryInterface.php'
|
2216 |
),
|
2217 |
+
'Symfony\\Component\\Validator\\ConstraintViolationInterface' => array(
|
2218 |
+
'version' => '5.4.8.0',
|
2219 |
+
'path' => $vendorDir . '/symfony/validator/ConstraintViolationInterface.php'
|
2220 |
+
),
|
2221 |
+
'Psr\\Log\\LoggerTrait' => array(
|
2222 |
'version' => '1.1.4.0',
|
2223 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php'
|
2224 |
),
|
2225 |
+
'Psr\\Log\\LoggerAwareTrait' => array(
|
2226 |
'version' => '1.1.4.0',
|
2227 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php'
|
2228 |
),
|
2229 |
+
'Psr\\Log\\InvalidArgumentException' => array(
|
2230 |
'version' => '1.1.4.0',
|
2231 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php'
|
2232 |
),
|
2233 |
+
'Psr\\Log\\LoggerInterface' => array(
|
2234 |
'version' => '1.1.4.0',
|
2235 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php'
|
2236 |
),
|
2237 |
+
'Psr\\Log\\NullLogger' => array(
|
2238 |
'version' => '1.1.4.0',
|
2239 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php'
|
2240 |
),
|
2241 |
+
'Psr\\Log\\LogLevel' => array(
|
2242 |
'version' => '1.1.4.0',
|
2243 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php'
|
2244 |
),
|
2245 |
+
'Psr\\Log\\Test\\DummyTest' => array(
|
2246 |
'version' => '1.1.4.0',
|
2247 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/Test/DummyTest.php'
|
2248 |
),
|
2249 |
+
'Psr\\Log\\Test\\TestLogger' => array(
|
2250 |
'version' => '1.1.4.0',
|
2251 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php'
|
2252 |
),
|
2253 |
+
'Psr\\Log\\Test\\LoggerInterfaceTest' => array(
|
2254 |
'version' => '1.1.4.0',
|
2255 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'
|
2256 |
),
|
2257 |
+
'Psr\\Log\\LoggerAwareInterface' => array(
|
2258 |
'version' => '1.1.4.0',
|
2259 |
+
'path' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php'
|
2260 |
),
|
2261 |
'Psr\\Log\\AbstractLogger' => array(
|
2262 |
'version' => '1.1.4.0',
|
2263 |
'path' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php'
|
2264 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2265 |
'Psr\\Http\\Message\\UploadedFileFactoryInterface' => array(
|
2266 |
'version' => '1.0.1.0',
|
2267 |
'path' => $vendorDir . '/psr/http-factory/src/UploadedFileFactoryInterface.php'
|
2268 |
),
|
2269 |
+
'Psr\\Http\\Message\\ServerRequestFactoryInterface' => array(
|
2270 |
+
'version' => '1.0.1.0',
|
2271 |
+
'path' => $vendorDir . '/psr/http-factory/src/ServerRequestFactoryInterface.php'
|
2272 |
+
),
|
2273 |
'Psr\\Http\\Message\\UriFactoryInterface' => array(
|
2274 |
'version' => '1.0.1.0',
|
2275 |
'path' => $vendorDir . '/psr/http-factory/src/UriFactoryInterface.php'
|
2276 |
),
|
2277 |
+
'Psr\\Http\\Message\\StreamFactoryInterface' => array(
|
2278 |
'version' => '1.0.1.0',
|
2279 |
+
'path' => $vendorDir . '/psr/http-factory/src/StreamFactoryInterface.php'
|
2280 |
),
|
2281 |
+
'Psr\\Http\\Message\\ResponseFactoryInterface' => array(
|
2282 |
'version' => '1.0.1.0',
|
2283 |
+
'path' => $vendorDir . '/psr/http-factory/src/ResponseFactoryInterface.php'
|
2284 |
),
|
2285 |
+
'Psr\\Http\\Message\\RequestFactoryInterface' => array(
|
2286 |
'version' => '1.0.1.0',
|
2287 |
+
'path' => $vendorDir . '/psr/http-factory/src/RequestFactoryInterface.php'
|
2288 |
),
|
2289 |
+
'Psr\\Http\\Message\\ResponseInterface' => array(
|
2290 |
'version' => '1.0.1.0',
|
2291 |
+
'path' => $vendorDir . '/psr/http-message/src/ResponseInterface.php'
|
2292 |
),
|
2293 |
'Psr\\Http\\Message\\StreamInterface' => array(
|
2294 |
'version' => '1.0.1.0',
|
2295 |
'path' => $vendorDir . '/psr/http-message/src/StreamInterface.php'
|
2296 |
),
|
2297 |
+
'Psr\\Http\\Message\\ServerRequestInterface' => array(
|
2298 |
+
'version' => '1.0.1.0',
|
2299 |
+
'path' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php'
|
2300 |
+
),
|
2301 |
'Psr\\Http\\Message\\UploadedFileInterface' => array(
|
2302 |
'version' => '1.0.1.0',
|
2303 |
'path' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php'
|
2304 |
),
|
2305 |
+
'Psr\\Http\\Message\\MessageInterface' => array(
|
2306 |
'version' => '1.0.1.0',
|
2307 |
+
'path' => $vendorDir . '/psr/http-message/src/MessageInterface.php'
|
2308 |
),
|
2309 |
+
'Psr\\Http\\Message\\RequestInterface' => array(
|
2310 |
'version' => '1.0.1.0',
|
2311 |
+
'path' => $vendorDir . '/psr/http-message/src/RequestInterface.php'
|
2312 |
),
|
2313 |
+
'Psr\\Http\\Message\\UriInterface' => array(
|
2314 |
'version' => '1.0.1.0',
|
2315 |
+
'path' => $vendorDir . '/psr/http-message/src/UriInterface.php'
|
2316 |
),
|
2317 |
'Psr\\Http\\Client\\NetworkExceptionInterface' => array(
|
2318 |
'version' => '1.0.1.0',
|
2330 |
'version' => '1.0.1.0',
|
2331 |
'path' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php'
|
2332 |
),
|
2333 |
+
'Psr\\Container\\ContainerExceptionInterface' => array(
|
2334 |
+
'version' => '1.1.1.0',
|
2335 |
+
'path' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php'
|
2336 |
+
),
|
2337 |
'Psr\\Container\\NotFoundExceptionInterface' => array(
|
2338 |
'version' => '1.1.1.0',
|
2339 |
'path' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php'
|
2342 |
'version' => '1.1.1.0',
|
2343 |
'path' => $vendorDir . '/psr/container/src/ContainerInterface.php'
|
2344 |
),
|
2345 |
+
'Psr\\Cache\\CacheException' => array(
|
|
|
|
|
|
|
|
|
2346 |
'version' => '1.0.1.0',
|
2347 |
+
'path' => $vendorDir . '/psr/cache/src/CacheException.php'
|
2348 |
),
|
2349 |
'Psr\\Cache\\CacheItemInterface' => array(
|
2350 |
'version' => '1.0.1.0',
|
2354 |
'version' => '1.0.1.0',
|
2355 |
'path' => $vendorDir . '/psr/cache/src/InvalidArgumentException.php'
|
2356 |
),
|
2357 |
+
'Psr\\Cache\\CacheItemPoolInterface' => array(
|
2358 |
'version' => '1.0.1.0',
|
2359 |
+
'path' => $vendorDir . '/psr/cache/src/CacheItemPoolInterface.php'
|
2360 |
),
|
2361 |
+
'ParagonIE\\ConstantTime\\Base64' => array(
|
2362 |
'version' => '2.5.0.0',
|
2363 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Base64.php'
|
2364 |
),
|
2365 |
+
'ParagonIE\\ConstantTime\\EncoderInterface' => array(
|
2366 |
'version' => '2.5.0.0',
|
2367 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/EncoderInterface.php'
|
2368 |
),
|
2369 |
+
'ParagonIE\\ConstantTime\\Base64DotSlashOrdered' => array(
|
2370 |
'version' => '2.5.0.0',
|
2371 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Base64DotSlashOrdered.php'
|
2372 |
),
|
2373 |
+
'ParagonIE\\ConstantTime\\Base64UrlSafe' => array(
|
2374 |
'version' => '2.5.0.0',
|
2375 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Base64UrlSafe.php'
|
2376 |
),
|
2377 |
+
'ParagonIE\\ConstantTime\\Base64DotSlash' => array(
|
2378 |
'version' => '2.5.0.0',
|
2379 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Base64DotSlash.php'
|
2380 |
),
|
2381 |
+
'ParagonIE\\ConstantTime\\Base32Hex' => array(
|
2382 |
'version' => '2.5.0.0',
|
2383 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Base32Hex.php'
|
2384 |
),
|
2385 |
+
'ParagonIE\\ConstantTime\\Binary' => array(
|
2386 |
'version' => '2.5.0.0',
|
2387 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Binary.php'
|
2388 |
),
|
2389 |
+
'ParagonIE\\ConstantTime\\Hex' => array(
|
2390 |
'version' => '2.5.0.0',
|
2391 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Hex.php'
|
2392 |
),
|
2393 |
+
'ParagonIE\\ConstantTime\\Base32' => array(
|
2394 |
'version' => '2.5.0.0',
|
2395 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Base32.php'
|
2396 |
),
|
2397 |
'ParagonIE\\ConstantTime\\RFC4648' => array(
|
2398 |
'version' => '2.5.0.0',
|
2399 |
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/RFC4648.php'
|
2400 |
),
|
2401 |
+
'ParagonIE\\ConstantTime\\Encoding' => array(
|
2402 |
'version' => '2.5.0.0',
|
2403 |
+
'path' => $vendorDir . '/paragonie/constant_time_encoding/src/Encoding.php'
|
2404 |
),
|
2405 |
+
'Monolog\\Handler\\MandrillHandler' => array(
|
2406 |
'version' => '2.7.0.0',
|
2407 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MandrillHandler.php'
|
2408 |
),
|
2409 |
+
'Monolog\\Handler\\SlackWebhookHandler' => array(
|
2410 |
'version' => '2.7.0.0',
|
2411 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php'
|
2412 |
),
|
2413 |
+
'Monolog\\Handler\\SyslogHandler' => array(
|
2414 |
'version' => '2.7.0.0',
|
2415 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogHandler.php'
|
2416 |
),
|
2417 |
+
'Monolog\\Handler\\SyslogUdpHandler' => array(
|
2418 |
'version' => '2.7.0.0',
|
2419 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php'
|
|
|
|
|
|
|
|
|
2420 |
),
|
2421 |
+
'Monolog\\Handler\\ChromePHPHandler' => array(
|
2422 |
'version' => '2.7.0.0',
|
2423 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php'
|
2424 |
),
|
2425 |
+
'Monolog\\Handler\\PushoverHandler' => array(
|
2426 |
'version' => '2.7.0.0',
|
2427 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PushoverHandler.php'
|
2428 |
),
|
2429 |
+
'Monolog\\Handler\\PHPConsoleHandler' => array(
|
2430 |
'version' => '2.7.0.0',
|
2431 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php'
|
2432 |
),
|
2433 |
+
'Monolog\\Handler\\HandlerWrapper' => array(
|
2434 |
'version' => '2.7.0.0',
|
2435 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php'
|
2436 |
),
|
2437 |
+
'Monolog\\Handler\\FormattableHandlerTrait' => array(
|
2438 |
'version' => '2.7.0.0',
|
2439 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php'
|
2440 |
),
|
2441 |
+
'Monolog\\Handler\\FleepHookHandler' => array(
|
2442 |
'version' => '2.7.0.0',
|
2443 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php'
|
2444 |
),
|
2445 |
+
'Monolog\\Handler\\ProcessHandler' => array(
|
2446 |
'version' => '2.7.0.0',
|
2447 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ProcessHandler.php'
|
2448 |
),
|
2449 |
'Monolog\\Handler\\OverflowHandler' => array(
|
2450 |
'version' => '2.7.0.0',
|
2451 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/OverflowHandler.php'
|
2452 |
),
|
2453 |
+
'Monolog\\Handler\\AbstractHandler' => array(
|
2454 |
'version' => '2.7.0.0',
|
2455 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractHandler.php'
|
2456 |
),
|
2457 |
+
'Monolog\\Handler\\ElasticaHandler' => array(
|
2458 |
'version' => '2.7.0.0',
|
2459 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php'
|
2460 |
),
|
2461 |
+
'Monolog\\Handler\\MissingExtensionException' => array(
|
2462 |
'version' => '2.7.0.0',
|
2463 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php'
|
2464 |
),
|
2465 |
+
'Monolog\\Handler\\WhatFailureGroupHandler' => array(
|
2466 |
'version' => '2.7.0.0',
|
2467 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php'
|
2468 |
),
|
2469 |
+
'Monolog\\Handler\\FlowdockHandler' => array(
|
2470 |
'version' => '2.7.0.0',
|
2471 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php'
|
2472 |
),
|
2473 |
+
'Monolog\\Handler\\RotatingFileHandler' => array(
|
2474 |
'version' => '2.7.0.0',
|
2475 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php'
|
2476 |
),
|
2477 |
+
'Monolog\\Handler\\FingersCrossed\\ErrorLevelActivationStrategy' => array(
|
2478 |
'version' => '2.7.0.0',
|
2479 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php'
|
2480 |
),
|
2481 |
+
'Monolog\\Handler\\FingersCrossed\\ActivationStrategyInterface' => array(
|
2482 |
'version' => '2.7.0.0',
|
2483 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php'
|
2484 |
),
|
2485 |
+
'Monolog\\Handler\\FingersCrossed\\ChannelLevelActivationStrategy' => array(
|
2486 |
'version' => '2.7.0.0',
|
2487 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php'
|
2488 |
),
|
2489 |
+
'Monolog\\Handler\\MongoDBHandler' => array(
|
2490 |
'version' => '2.7.0.0',
|
2491 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php'
|
2492 |
),
|
2493 |
+
'Monolog\\Handler\\FormattableHandlerInterface' => array(
|
2494 |
'version' => '2.7.0.0',
|
2495 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php'
|
2496 |
),
|
2497 |
+
'Monolog\\Handler\\PsrHandler' => array(
|
2498 |
'version' => '2.7.0.0',
|
2499 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/PsrHandler.php'
|
2500 |
),
|
2501 |
+
'Monolog\\Handler\\InsightOpsHandler' => array(
|
2502 |
'version' => '2.7.0.0',
|
2503 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php'
|
2504 |
),
|
2505 |
+
'Monolog\\Handler\\LogEntriesHandler' => array(
|
2506 |
'version' => '2.7.0.0',
|
2507 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php'
|
2508 |
),
|
2509 |
+
'Monolog\\Handler\\ProcessableHandlerInterface' => array(
|
2510 |
'version' => '2.7.0.0',
|
2511 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php'
|
2512 |
),
|
2513 |
+
'Monolog\\Handler\\ErrorLogHandler' => array(
|
2514 |
'version' => '2.7.0.0',
|
2515 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php'
|
2516 |
),
|
2517 |
+
'Monolog\\Handler\\SwiftMailerHandler' => array(
|
2518 |
'version' => '2.7.0.0',
|
2519 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php'
|
2520 |
),
|
2521 |
+
'Monolog\\Handler\\BrowserConsoleHandler' => array(
|
2522 |
'version' => '2.7.0.0',
|
2523 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php'
|
2524 |
),
|
2525 |
'Monolog\\Handler\\SqsHandler' => array(
|
2526 |
'version' => '2.7.0.0',
|
2527 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SqsHandler.php'
|
2528 |
),
|
2529 |
+
'Monolog\\Handler\\TestHandler' => array(
|
|
|
|
|
|
|
|
|
2530 |
'version' => '2.7.0.0',
|
2531 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/TestHandler.php'
|
2532 |
),
|
2533 |
+
'Monolog\\Handler\\TelegramBotHandler' => array(
|
2534 |
'version' => '2.7.0.0',
|
2535 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php'
|
2536 |
),
|
2537 |
+
'Monolog\\Handler\\ZendMonitorHandler' => array(
|
2538 |
'version' => '2.7.0.0',
|
2539 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php'
|
2540 |
),
|
2541 |
+
'Monolog\\Handler\\AbstractSyslogHandler' => array(
|
2542 |
'version' => '2.7.0.0',
|
2543 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php'
|
2544 |
),
|
2545 |
+
'Monolog\\Handler\\LogglyHandler' => array(
|
2546 |
'version' => '2.7.0.0',
|
2547 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogglyHandler.php'
|
2548 |
),
|
2549 |
+
'Monolog\\Handler\\FingersCrossedHandler' => array(
|
2550 |
'version' => '2.7.0.0',
|
2551 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php'
|
2552 |
),
|
2553 |
+
'Monolog\\Handler\\IFTTTHandler' => array(
|
2554 |
'version' => '2.7.0.0',
|
2555 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php'
|
2556 |
),
|
2557 |
+
'Monolog\\Handler\\AmqpHandler' => array(
|
2558 |
'version' => '2.7.0.0',
|
2559 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AmqpHandler.php'
|
2560 |
),
|
2561 |
+
'Monolog\\Handler\\GelfHandler' => array(
|
2562 |
'version' => '2.7.0.0',
|
2563 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GelfHandler.php'
|
2564 |
),
|
2565 |
+
'Monolog\\Handler\\Slack\\SlackRecord' => array(
|
2566 |
'version' => '2.7.0.0',
|
2567 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php'
|
2568 |
),
|
2569 |
+
'Monolog\\Handler\\HandlerInterface' => array(
|
2570 |
'version' => '2.7.0.0',
|
2571 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/HandlerInterface.php'
|
2572 |
),
|
2573 |
+
'Monolog\\Handler\\NewRelicHandler' => array(
|
2574 |
'version' => '2.7.0.0',
|
2575 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php'
|
2576 |
),
|
2577 |
'Monolog\\Handler\\FirePHPHandler' => array(
|
2578 |
'version' => '2.7.0.0',
|
2579 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php'
|
2580 |
),
|
2581 |
+
'Monolog\\Handler\\ElasticsearchHandler' => array(
|
2582 |
'version' => '2.7.0.0',
|
2583 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php'
|
2584 |
),
|
2585 |
+
'Monolog\\Handler\\AbstractProcessingHandler' => array(
|
2586 |
'version' => '2.7.0.0',
|
2587 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php'
|
2588 |
),
|
2589 |
'Monolog\\Handler\\DynamoDbHandler' => array(
|
2590 |
'version' => '2.7.0.0',
|
2591 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php'
|
2592 |
),
|
|
|
|
|
|
|
|
|
2593 |
'Monolog\\Handler\\RedisPubSubHandler' => array(
|
2594 |
'version' => '2.7.0.0',
|
2595 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php'
|
2596 |
),
|
|
|
|
|
|
|
|
|
2597 |
'Monolog\\Handler\\StreamHandler' => array(
|
2598 |
'version' => '2.7.0.0',
|
2599 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/StreamHandler.php'
|
2600 |
),
|
2601 |
+
'Monolog\\Handler\\FallbackGroupHandler' => array(
|
2602 |
'version' => '2.7.0.0',
|
2603 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php'
|
2604 |
),
|
2605 |
+
'Monolog\\Handler\\SamplingHandler' => array(
|
2606 |
'version' => '2.7.0.0',
|
2607 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SamplingHandler.php'
|
2608 |
),
|
2609 |
+
'Monolog\\Handler\\ProcessableHandlerTrait' => array(
|
2610 |
'version' => '2.7.0.0',
|
2611 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php'
|
2612 |
),
|
2613 |
+
'Monolog\\Handler\\CouchDBHandler' => array(
|
2614 |
'version' => '2.7.0.0',
|
2615 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php'
|
2616 |
),
|
2617 |
+
'Monolog\\Handler\\DoctrineCouchDBHandler' => array(
|
2618 |
'version' => '2.7.0.0',
|
2619 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php'
|
2620 |
),
|
2621 |
+
'Monolog\\Handler\\SyslogUdp\\UdpSocket' => array(
|
2622 |
'version' => '2.7.0.0',
|
2623 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php'
|
2624 |
),
|
2625 |
+
'Monolog\\Handler\\SymfonyMailerHandler' => array(
|
2626 |
'version' => '2.7.0.0',
|
2627 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SymfonyMailerHandler.php'
|
2628 |
),
|
2629 |
+
'Monolog\\Handler\\RollbarHandler' => array(
|
2630 |
'version' => '2.7.0.0',
|
2631 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/RollbarHandler.php'
|
2632 |
),
|
2633 |
+
'Monolog\\Handler\\NativeMailerHandler' => array(
|
2634 |
'version' => '2.7.0.0',
|
2635 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php'
|
2636 |
),
|
2637 |
+
'Monolog\\Handler\\GroupHandler' => array(
|
2638 |
'version' => '2.7.0.0',
|
2639 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/GroupHandler.php'
|
2640 |
),
|
2641 |
+
'Monolog\\Handler\\Curl\\Util' => array(
|
2642 |
'version' => '2.7.0.0',
|
2643 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Curl/Util.php'
|
2644 |
),
|
2645 |
+
'Monolog\\Handler\\NoopHandler' => array(
|
2646 |
'version' => '2.7.0.0',
|
2647 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NoopHandler.php'
|
2648 |
),
|
2649 |
+
'Monolog\\Handler\\FilterHandler' => array(
|
2650 |
'version' => '2.7.0.0',
|
2651 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/FilterHandler.php'
|
2652 |
),
|
2653 |
+
'Monolog\\Handler\\BufferHandler' => array(
|
2654 |
'version' => '2.7.0.0',
|
2655 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/BufferHandler.php'
|
2656 |
),
|
2657 |
+
'Monolog\\Handler\\NullHandler' => array(
|
2658 |
'version' => '2.7.0.0',
|
2659 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/NullHandler.php'
|
2660 |
),
|
2661 |
+
'Monolog\\Handler\\SlackHandler' => array(
|
2662 |
'version' => '2.7.0.0',
|
2663 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SlackHandler.php'
|
2664 |
),
|
2665 |
+
'Monolog\\Handler\\MailHandler' => array(
|
2666 |
'version' => '2.7.0.0',
|
2667 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/MailHandler.php'
|
2668 |
),
|
2669 |
+
'Monolog\\Handler\\WebRequestRecognizerTrait' => array(
|
2670 |
'version' => '2.7.0.0',
|
2671 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php'
|
2672 |
),
|
2673 |
'Monolog\\Handler\\RedisHandler' => array(
|
2674 |
'version' => '2.7.0.0',
|
2678 |
'version' => '2.7.0.0',
|
2679 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/CubeHandler.php'
|
2680 |
),
|
2681 |
+
'Monolog\\Handler\\DeduplicationHandler' => array(
|
2682 |
'version' => '2.7.0.0',
|
2683 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php'
|
2684 |
),
|
2685 |
+
'Monolog\\Handler\\Handler' => array(
|
2686 |
'version' => '2.7.0.0',
|
2687 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/Handler.php'
|
2688 |
),
|
2689 |
+
'Monolog\\Handler\\LogmaticHandler' => array(
|
2690 |
'version' => '2.7.0.0',
|
2691 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2692 |
),
|
2693 |
+
'Monolog\\Handler\\SendGridHandler' => array(
|
2694 |
'version' => '2.7.0.0',
|
2695 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SendGridHandler.php'
|
2696 |
),
|
2697 |
+
'Monolog\\Handler\\SocketHandler' => array(
|
2698 |
'version' => '2.7.0.0',
|
2699 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Handler/SocketHandler.php'
|
2700 |
),
|
2701 |
+
'Monolog\\Logger' => array(
|
2702 |
'version' => '2.7.0.0',
|
2703 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Logger.php'
|
2704 |
),
|
2705 |
+
'Monolog\\Registry' => array(
|
2706 |
'version' => '2.7.0.0',
|
2707 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Registry.php'
|
2708 |
),
|
2709 |
+
'Monolog\\SignalHandler' => array(
|
2710 |
'version' => '2.7.0.0',
|
2711 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/SignalHandler.php'
|
2712 |
),
|
2713 |
+
'Monolog\\DateTimeImmutable' => array(
|
2714 |
'version' => '2.7.0.0',
|
2715 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/DateTimeImmutable.php'
|
2716 |
),
|
2717 |
+
'Monolog\\ResettableInterface' => array(
|
2718 |
'version' => '2.7.0.0',
|
2719 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/ResettableInterface.php'
|
2720 |
),
|
2721 |
+
'Monolog\\LogRecord' => array(
|
2722 |
'version' => '2.7.0.0',
|
2723 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/LogRecord.php'
|
2724 |
),
|
2725 |
'Monolog\\Processor\\GitProcessor' => array(
|
2726 |
'version' => '2.7.0.0',
|
2727 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/GitProcessor.php'
|
2728 |
),
|
2729 |
+
'Monolog\\Processor\\PsrLogMessageProcessor' => array(
|
2730 |
'version' => '2.7.0.0',
|
2731 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php'
|
2732 |
+
),
|
2733 |
+
'Monolog\\Processor\\MemoryUsageProcessor' => array(
|
2734 |
+
'version' => '2.7.0.0',
|
2735 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php'
|
2736 |
),
|
2737 |
'Monolog\\Processor\\IntrospectionProcessor' => array(
|
2738 |
'version' => '2.7.0.0',
|
2742 |
'version' => '2.7.0.0',
|
2743 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/UidProcessor.php'
|
2744 |
),
|
2745 |
+
'Monolog\\Processor\\TagProcessor' => array(
|
2746 |
'version' => '2.7.0.0',
|
2747 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/TagProcessor.php'
|
2748 |
),
|
2749 |
+
'Monolog\\Processor\\WebProcessor' => array(
|
2750 |
'version' => '2.7.0.0',
|
2751 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/WebProcessor.php'
|
2752 |
),
|
2753 |
+
'Monolog\\Processor\\MemoryProcessor' => array(
|
2754 |
'version' => '2.7.0.0',
|
2755 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php'
|
2756 |
),
|
2757 |
+
'Monolog\\Processor\\MemoryPeakUsageProcessor' => array(
|
2758 |
'version' => '2.7.0.0',
|
2759 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php'
|
2760 |
),
|
2761 |
+
'Monolog\\Processor\\ProcessorInterface' => array(
|
2762 |
'version' => '2.7.0.0',
|
2763 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php'
|
2764 |
),
|
2765 |
+
'Monolog\\Processor\\ProcessIdProcessor' => array(
|
2766 |
'version' => '2.7.0.0',
|
2767 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php'
|
2768 |
),
|
2769 |
+
'Monolog\\Processor\\HostnameProcessor' => array(
|
2770 |
'version' => '2.7.0.0',
|
2771 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php'
|
2772 |
),
|
2773 |
+
'Monolog\\Processor\\MercurialProcessor' => array(
|
2774 |
'version' => '2.7.0.0',
|
2775 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php'
|
2776 |
),
|
2777 |
+
'Monolog\\Formatter\\HtmlFormatter' => array(
|
2778 |
'version' => '2.7.0.0',
|
2779 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php'
|
2780 |
),
|
2781 |
+
'Monolog\\Formatter\\ElasticsearchFormatter' => array(
|
2782 |
'version' => '2.7.0.0',
|
2783 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php'
|
2784 |
),
|
2785 |
+
'Monolog\\Formatter\\NormalizerFormatter' => array(
|
2786 |
'version' => '2.7.0.0',
|
2787 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php'
|
2788 |
+
),
|
2789 |
+
'Monolog\\Formatter\\ElasticaFormatter' => array(
|
2790 |
+
'version' => '2.7.0.0',
|
2791 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php'
|
2792 |
+
),
|
2793 |
+
'Monolog\\Formatter\\GelfMessageFormatter' => array(
|
2794 |
+
'version' => '2.7.0.0',
|
2795 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php'
|
2796 |
),
|
2797 |
'Monolog\\Formatter\\LogglyFormatter' => array(
|
2798 |
'version' => '2.7.0.0',
|
2799 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php'
|
2800 |
),
|
2801 |
+
'Monolog\\Formatter\\JsonFormatter' => array(
|
2802 |
'version' => '2.7.0.0',
|
2803 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php'
|
2804 |
),
|
2805 |
'Monolog\\Formatter\\ScalarFormatter' => array(
|
2806 |
'version' => '2.7.0.0',
|
2807 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php'
|
2808 |
),
|
2809 |
+
'Monolog\\Formatter\\WildfireFormatter' => array(
|
|
|
|
|
|
|
|
|
2810 |
'version' => '2.7.0.0',
|
2811 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php'
|
2812 |
),
|
2813 |
'Monolog\\Formatter\\FluentdFormatter' => array(
|
2814 |
'version' => '2.7.0.0',
|
2815 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php'
|
2816 |
),
|
2817 |
+
'Monolog\\Formatter\\LogmaticFormatter' => array(
|
2818 |
'version' => '2.7.0.0',
|
2819 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php'
|
2820 |
),
|
2821 |
+
'Monolog\\Formatter\\ChromePHPFormatter' => array(
|
2822 |
'version' => '2.7.0.0',
|
2823 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php'
|
2824 |
),
|
2825 |
+
'Monolog\\Formatter\\LineFormatter' => array(
|
2826 |
'version' => '2.7.0.0',
|
2827 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LineFormatter.php'
|
2828 |
),
|
2829 |
+
'Monolog\\Formatter\\LogstashFormatter' => array(
|
2830 |
'version' => '2.7.0.0',
|
2831 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php'
|
2832 |
),
|
2833 |
+
'Monolog\\Formatter\\FormatterInterface' => array(
|
2834 |
'version' => '2.7.0.0',
|
2835 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php'
|
2836 |
),
|
2837 |
+
'Monolog\\Formatter\\MongoDBFormatter' => array(
|
2838 |
'version' => '2.7.0.0',
|
2839 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php'
|
2840 |
+
),
|
2841 |
+
'Monolog\\Formatter\\FlowdockFormatter' => array(
|
2842 |
+
'version' => '2.7.0.0',
|
2843 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php'
|
2844 |
),
|
2845 |
'Monolog\\Utils' => array(
|
2846 |
'version' => '2.7.0.0',
|
2847 |
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Utils.php'
|
2848 |
),
|
2849 |
+
'Monolog\\Attribute\\AsMonologProcessor' => array(
|
2850 |
+
'version' => '2.7.0.0',
|
2851 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Attribute/AsMonologProcessor.php'
|
2852 |
),
|
2853 |
+
'Monolog\\Test\\TestCase' => array(
|
2854 |
+
'version' => '2.7.0.0',
|
2855 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/Test/TestCase.php'
|
2856 |
+
),
|
2857 |
+
'Monolog\\ErrorHandler' => array(
|
2858 |
+
'version' => '2.7.0.0',
|
2859 |
+
'path' => $vendorDir . '/monolog/monolog/src/Monolog/ErrorHandler.php'
|
2860 |
+
),
|
2861 |
+
'Grpc\\Gcp\\CreatedByDeserializeCheck' => array(
|
2862 |
'version' => '0.2.0.0',
|
2863 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/CreatedByDeserializeCheck.php'
|
2864 |
),
|
2865 |
+
'Grpc\\Gcp\\GCPCallInvoker' => array(
|
2866 |
'version' => '0.2.0.0',
|
2867 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/GCPCallInvoker.php'
|
2868 |
),
|
2869 |
+
'Grpc\\Gcp\\ChannelRef' => array(
|
2870 |
'version' => '0.2.0.0',
|
2871 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/ChannelRef.php'
|
2872 |
),
|
2873 |
+
'Grpc\\Gcp\\GcpExtensionChannel' => array(
|
2874 |
'version' => '0.2.0.0',
|
2875 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/GcpExtensionChannel.php'
|
2876 |
),
|
2877 |
'Grpc\\Gcp\\GCPBidiStreamingCall' => array(
|
2878 |
'version' => '0.2.0.0',
|
2879 |
'path' => $vendorDir . '/google/grpc-gcp/src/GCPBidiStreamingCall.php'
|
2880 |
),
|
2881 |
+
'Grpc\\Gcp\\GCPUnaryCall' => array(
|
2882 |
'version' => '0.2.0.0',
|
2883 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/GCPUnaryCall.php'
|
2884 |
),
|
2885 |
'Grpc\\Gcp\\GCPClientStreamCall' => array(
|
2886 |
'version' => '0.2.0.0',
|
2894 |
'version' => '0.2.0.0',
|
2895 |
'path' => $vendorDir . '/google/grpc-gcp/src/Config.php'
|
2896 |
),
|
|
|
|
|
|
|
|
|
2897 |
'Grpc\\Gcp\\GCPServerStreamCall' => array(
|
2898 |
'version' => '0.2.0.0',
|
2899 |
'path' => $vendorDir . '/google/grpc-gcp/src/GCPServerStreamCall.php'
|
2900 |
),
|
2901 |
+
'Grpc\\Gcp\\ChannelPoolConfig' => array(
|
2902 |
'version' => '0.2.0.0',
|
2903 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/generated/Grpc/Gcp/ChannelPoolConfig.php'
|
2904 |
),
|
2905 |
+
'Grpc\\Gcp\\ApiConfig' => array(
|
2906 |
'version' => '0.2.0.0',
|
2907 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/generated/Grpc/Gcp/ApiConfig.php'
|
2908 |
),
|
2909 |
+
'Grpc\\Gcp\\AffinityConfig_Command' => array(
|
2910 |
'version' => '0.2.0.0',
|
2911 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/generated/Grpc/Gcp/AffinityConfig_Command.php'
|
2912 |
),
|
2913 |
+
'Grpc\\Gcp\\MethodConfig' => array(
|
2914 |
+
'version' => '0.2.0.0',
|
2915 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/generated/Grpc/Gcp/MethodConfig.php'
|
2916 |
+
),
|
2917 |
+
'Grpc\\Gcp\\AffinityConfig' => array(
|
2918 |
+
'version' => '0.2.0.0',
|
2919 |
+
'path' => $vendorDir . '/google/grpc-gcp/src/generated/Grpc/Gcp/AffinityConfig.php'
|
2920 |
),
|
2921 |
'Grpc\\ServerCallWriter' => array(
|
2922 |
'version' => '1.42.0.0',
|
2923 |
'path' => $vendorDir . '/grpc/grpc/src/lib/ServerCallWriter.php'
|
2924 |
),
|
2925 |
+
'Grpc\\CallInvoker' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2926 |
'version' => '1.42.0.0',
|
2927 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/CallInvoker.php'
|
2928 |
),
|
2929 |
+
'Grpc\\BidiStreamingCall' => array(
|
2930 |
'version' => '1.42.0.0',
|
2931 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/BidiStreamingCall.php'
|
2932 |
),
|
2933 |
+
'Grpc\\BaseStub' => array(
|
2934 |
'version' => '1.42.0.0',
|
2935 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/BaseStub.php'
|
2936 |
),
|
2937 |
'Grpc\\ServerCallReader' => array(
|
2938 |
'version' => '1.42.0.0',
|
2939 |
'path' => $vendorDir . '/grpc/grpc/src/lib/ServerCallReader.php'
|
2940 |
),
|
2941 |
+
'Grpc\\RpcServer' => array(
|
2942 |
'version' => '1.42.0.0',
|
2943 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/RpcServer.php'
|
2944 |
),
|
2945 |
+
'Grpc\\Status' => array(
|
2946 |
'version' => '1.42.0.0',
|
2947 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/Status.php'
|
2948 |
),
|
2949 |
+
'Grpc\\Interceptor' => array(
|
2950 |
'version' => '1.42.0.0',
|
2951 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/Interceptor.php'
|
2952 |
),
|
2953 |
+
'Grpc\\MethodDescriptor' => array(
|
2954 |
'version' => '1.42.0.0',
|
2955 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/MethodDescriptor.php'
|
2956 |
),
|
2957 |
+
'Grpc\\ServerStreamingCall' => array(
|
2958 |
'version' => '1.42.0.0',
|
2959 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/ServerStreamingCall.php'
|
2960 |
),
|
2961 |
'Grpc\\ClientStreamingCall' => array(
|
2962 |
'version' => '1.42.0.0',
|
2963 |
'path' => $vendorDir . '/grpc/grpc/src/lib/ClientStreamingCall.php'
|
2964 |
),
|
2965 |
+
'Grpc\\AbstractCall' => array(
|
2966 |
'version' => '1.42.0.0',
|
2967 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/AbstractCall.php'
|
2968 |
),
|
2969 |
+
'Grpc\\Internal\\InterceptorChannel' => array(
|
2970 |
'version' => '1.42.0.0',
|
2971 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/Internal/InterceptorChannel.php'
|
2972 |
),
|
2973 |
+
'Grpc\\UnaryCall' => array(
|
2974 |
+
'version' => '1.42.0.0',
|
2975 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/UnaryCall.php'
|
2976 |
),
|
2977 |
+
'Grpc\\DefaultCallInvoker' => array(
|
2978 |
+
'version' => '1.42.0.0',
|
2979 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/DefaultCallInvoker.php'
|
2980 |
+
),
|
2981 |
+
'Grpc\\ServerContext' => array(
|
2982 |
+
'version' => '1.42.0.0',
|
2983 |
+
'path' => $vendorDir . '/grpc/grpc/src/lib/ServerContext.php'
|
2984 |
+
),
|
2985 |
+
'Google\\Service\\SiteVerification' => array(
|
2986 |
'version' => '0.252.0.0',
|
2987 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification.php'
|
2988 |
),
|
2989 |
+
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceResource' => array(
|
2990 |
'version' => '0.252.0.0',
|
2991 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceResource.php'
|
2992 |
),
|
2993 |
+
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceListResponse' => array(
|
2994 |
'version' => '0.252.0.0',
|
2995 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceListResponse.php'
|
2996 |
),
|
2997 |
+
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceGettokenResponse' => array(
|
2998 |
'version' => '0.252.0.0',
|
2999 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceGettokenResponse.php'
|
3000 |
),
|
3001 |
+
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceResourceSite' => array(
|
3002 |
'version' => '0.252.0.0',
|
3003 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceResourceSite.php'
|
3004 |
),
|
3005 |
+
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceGettokenRequestSite' => array(
|
3006 |
'version' => '0.252.0.0',
|
3007 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceGettokenRequestSite.php'
|
3008 |
),
|
3009 |
+
'Google\\Service\\SiteVerification\\Resource\\WebResource' => array(
|
3010 |
'version' => '0.252.0.0',
|
3011 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/Resource/WebResource.php'
|
3012 |
),
|
3013 |
+
'Google\\Service\\SiteVerification\\SiteVerificationWebResourceGettokenRequest' => array(
|
3014 |
'version' => '0.252.0.0',
|
3015 |
+
'path' => $vendorDir . '/google/apiclient-services/src/SiteVerification/SiteVerificationWebResourceGettokenRequest.php'
|
3016 |
),
|
3017 |
+
'Google\\Service\\ShoppingContent' => array(
|
3018 |
'version' => '0.252.0.0',
|
3019 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent.php'
|
3020 |
),
|
3021 |
+
'Google\\Service\\ShoppingContent\\ECommercePlatformLinkInfo' => array(
|
3022 |
'version' => '0.252.0.0',
|
3023 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ECommercePlatformLinkInfo.php'
|
3024 |
),
|
3025 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemProductVariantAttribute' => array(
|
3026 |
'version' => '0.252.0.0',
|
3027 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemProductVariantAttribute.php'
|
3028 |
),
|
3029 |
+
'Google\\Service\\ShoppingContent\\Date' => array(
|
3030 |
'version' => '0.252.0.0',
|
3031 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Date.php'
|
3032 |
),
|
3033 |
+
'Google\\Service\\ShoppingContent\\OrdersShipLineItemsRequest' => array(
|
3034 |
'version' => '0.252.0.0',
|
3035 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersShipLineItemsRequest.php'
|
3036 |
),
|
3037 |
+
'Google\\Service\\ShoppingContent\\OrdersCancelResponse' => array(
|
3038 |
'version' => '0.252.0.0',
|
3039 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCancelResponse.php'
|
3040 |
),
|
3041 |
+
'Google\\Service\\ShoppingContent\\Product' => array(
|
3042 |
'version' => '0.252.0.0',
|
3043 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Product.php'
|
3044 |
),
|
3045 |
+
'Google\\Service\\ShoppingContent\\OrdersUpdateShipmentResponse' => array(
|
3046 |
'version' => '0.252.0.0',
|
3047 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersUpdateShipmentResponse.php'
|
3048 |
),
|
3049 |
+
'Google\\Service\\ShoppingContent\\DatafeedstatusesCustomBatchResponse' => array(
|
3050 |
'version' => '0.252.0.0',
|
3051 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedstatusesCustomBatchResponse.php'
|
3052 |
),
|
3053 |
+
'Google\\Service\\ShoppingContent\\OrderCancellation' => array(
|
3054 |
'version' => '0.252.0.0',
|
3055 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderCancellation.php'
|
3056 |
),
|
3057 |
+
'Google\\Service\\ShoppingContent\\OrderPickupDetailsCollector' => array(
|
3058 |
'version' => '0.252.0.0',
|
3059 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderPickupDetailsCollector.php'
|
3060 |
),
|
3061 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsRejectOperation' => array(
|
3062 |
'version' => '0.252.0.0',
|
3063 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsRejectOperation.php'
|
3064 |
),
|
3065 |
+
'Google\\Service\\ShoppingContent\\LocationIdSet' => array(
|
3066 |
'version' => '0.252.0.0',
|
3067 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LocationIdSet.php'
|
3068 |
),
|
3069 |
+
'Google\\Service\\ShoppingContent\\AccountTax' => array(
|
3070 |
'version' => '0.252.0.0',
|
3071 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountTax.php'
|
3072 |
),
|
3073 |
+
'Google\\Service\\ShoppingContent\\SettlementTransactionIdentifiers' => array(
|
3074 |
'version' => '0.252.0.0',
|
3075 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementTransactionIdentifiers.php'
|
3076 |
),
|
3077 |
+
'Google\\Service\\ShoppingContent\\AccountCustomerService' => array(
|
3078 |
'version' => '0.252.0.0',
|
3079 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountCustomerService.php'
|
3080 |
),
|
3081 |
+
'Google\\Service\\ShoppingContent\\OrdersListResponse' => array(
|
3082 |
'version' => '0.252.0.0',
|
3083 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersListResponse.php'
|
3084 |
),
|
3085 |
+
'Google\\Service\\ShoppingContent\\SettlementTransactionAmountCommission' => array(
|
3086 |
'version' => '0.252.0.0',
|
3087 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementTransactionAmountCommission.php'
|
3088 |
),
|
3089 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleRestrictionBoundary' => array(
|
3090 |
'version' => '0.252.0.0',
|
3091 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleRestrictionBoundary.php'
|
3092 |
),
|
3093 |
+
'Google\\Service\\ShoppingContent\\Service' => array(
|
3094 |
'version' => '0.252.0.0',
|
3095 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Service.php'
|
3096 |
),
|
3097 |
+
'Google\\Service\\ShoppingContent\\AccountsClaimWebsiteResponse' => array(
|
3098 |
'version' => '0.252.0.0',
|
3099 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsClaimWebsiteResponse.php'
|
3100 |
),
|
3101 |
+
'Google\\Service\\ShoppingContent\\PosStore' => array(
|
3102 |
'version' => '0.252.0.0',
|
3103 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosStore.php'
|
3104 |
),
|
3105 |
+
'Google\\Service\\ShoppingContent\\AccountCredentials' => array(
|
3106 |
'version' => '0.252.0.0',
|
3107 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountCredentials.php'
|
3108 |
),
|
3109 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsCustomBatchRequestEntry' => array(
|
3110 |
'version' => '0.252.0.0',
|
3111 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsCustomBatchRequestEntry.php'
|
3112 |
),
|
3113 |
+
'Google\\Service\\ShoppingContent\\SettlementreportsListResponse' => array(
|
3114 |
'version' => '0.252.0.0',
|
3115 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementreportsListResponse.php'
|
3116 |
),
|
3117 |
+
'Google\\Service\\ShoppingContent\\PosInventory' => array(
|
3118 |
'version' => '0.252.0.0',
|
3119 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosInventory.php'
|
3120 |
),
|
3121 |
+
'Google\\Service\\ShoppingContent\\LiasettingsListResponse' => array(
|
3122 |
'version' => '0.252.0.0',
|
3123 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsListResponse.php'
|
3124 |
),
|
3125 |
+
'Google\\Service\\ShoppingContent\\LocalinventoryCustomBatchRequest' => array(
|
3126 |
'version' => '0.252.0.0',
|
3127 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LocalinventoryCustomBatchRequest.php'
|
3128 |
),
|
3129 |
+
'Google\\Service\\ShoppingContent\\ShipmentInvoiceLineItemInvoice' => array(
|
3130 |
'version' => '0.252.0.0',
|
3131 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShipmentInvoiceLineItemInvoice.php'
|
3132 |
),
|
3133 |
+
'Google\\Service\\ShoppingContent\\AccountImageImprovements' => array(
|
3134 |
'version' => '0.252.0.0',
|
3135 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountImageImprovements.php'
|
3136 |
),
|
3137 |
+
'Google\\Service\\ShoppingContent\\AccountsAuthInfoResponse' => array(
|
3138 |
'version' => '0.252.0.0',
|
3139 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsAuthInfoResponse.php'
|
3140 |
),
|
3141 |
+
'Google\\Service\\ShoppingContent\\AccounttaxCustomBatchRequest' => array(
|
3142 |
'version' => '0.252.0.0',
|
3143 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccounttaxCustomBatchRequest.php'
|
3144 |
),
|
3145 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleReport' => array(
|
3146 |
'version' => '0.252.0.0',
|
3147 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleReport.php'
|
3148 |
),
|
3149 |
+
'Google\\Service\\ShoppingContent\\OrderTrackingSignalShippingInfo' => array(
|
3150 |
'version' => '0.252.0.0',
|
3151 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderTrackingSignalShippingInfo.php'
|
3152 |
),
|
3153 |
+
'Google\\Service\\ShoppingContent\\ProductsCustomBatchResponse' => array(
|
3154 |
'version' => '0.252.0.0',
|
3155 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductsCustomBatchResponse.php'
|
3156 |
),
|
3157 |
+
'Google\\Service\\ShoppingContent\\ProductstatusesCustomBatchResponseEntry' => array(
|
3158 |
'version' => '0.252.0.0',
|
3159 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductstatusesCustomBatchResponseEntry.php'
|
3160 |
),
|
3161 |
+
'Google\\Service\\ShoppingContent\\LiaCountrySettings' => array(
|
3162 |
'version' => '0.252.0.0',
|
3163 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiaCountrySettings.php'
|
3164 |
),
|
3165 |
+
'Google\\Service\\ShoppingContent\\ProductStatusDestinationStatus' => array(
|
3166 |
'version' => '0.252.0.0',
|
3167 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductStatusDestinationStatus.php'
|
3168 |
),
|
3169 |
+
'Google\\Service\\ShoppingContent\\AccounttaxCustomBatchRequestEntry' => array(
|
3170 |
'version' => '0.252.0.0',
|
3171 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccounttaxCustomBatchRequestEntry.php'
|
3172 |
),
|
3173 |
+
'Google\\Service\\ShoppingContent\\AccountStatusItemLevelIssue' => array(
|
3174 |
'version' => '0.252.0.0',
|
3175 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountStatusItemLevelIssue.php'
|
3176 |
),
|
3177 |
+
'Google\\Service\\ShoppingContent\\RegionPostalCodeAreaPostalCodeRange' => array(
|
3178 |
'version' => '0.252.0.0',
|
3179 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionPostalCodeAreaPostalCodeRange.php'
|
3180 |
+
),
|
3181 |
+
'Google\\Service\\ShoppingContent\\TransitTable' => array(
|
3182 |
+
'version' => '0.252.0.0',
|
3183 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TransitTable.php'
|
3184 |
+
),
|
3185 |
+
'Google\\Service\\ShoppingContent\\OrderShipmentLineItemShipment' => array(
|
3186 |
+
'version' => '0.252.0.0',
|
3187 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderShipmentLineItemShipment.php'
|
3188 |
),
|
3189 |
'Google\\Service\\ShoppingContent\\OrderShipment' => array(
|
3190 |
'version' => '0.252.0.0',
|
3191 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderShipment.php'
|
3192 |
),
|
3193 |
+
'Google\\Service\\ShoppingContent\\InvoiceSummary' => array(
|
3194 |
+
'version' => '0.252.0.0',
|
3195 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/InvoiceSummary.php'
|
3196 |
+
),
|
3197 |
'Google\\Service\\ShoppingContent\\AccountStatus' => array(
|
3198 |
'version' => '0.252.0.0',
|
3199 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountStatus.php'
|
3200 |
),
|
3201 |
+
'Google\\Service\\ShoppingContent\\PosCustomBatchRequest' => array(
|
3202 |
'version' => '0.252.0.0',
|
3203 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosCustomBatchRequest.php'
|
3204 |
),
|
3205 |
+
'Google\\Service\\ShoppingContent\\PaymentServiceProviderLinkInfo' => array(
|
3206 |
'version' => '0.252.0.0',
|
3207 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PaymentServiceProviderLinkInfo.php'
|
3208 |
),
|
3209 |
+
'Google\\Service\\ShoppingContent\\LiasettingsSetInventoryVerificationContactResponse' => array(
|
3210 |
'version' => '0.252.0.0',
|
3211 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsSetInventoryVerificationContactResponse.php'
|
3212 |
),
|
3213 |
+
'Google\\Service\\ShoppingContent\\LocalinventoryCustomBatchResponse' => array(
|
3214 |
'version' => '0.252.0.0',
|
3215 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LocalinventoryCustomBatchResponse.php'
|
3216 |
),
|
3217 |
+
'Google\\Service\\ShoppingContent\\DatafeedsCustomBatchRequest' => array(
|
3218 |
'version' => '0.252.0.0',
|
3219 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedsCustomBatchRequest.php'
|
3220 |
),
|
3221 |
+
'Google\\Service\\ShoppingContent\\OrdersInStoreRefundLineItemResponse' => array(
|
3222 |
'version' => '0.252.0.0',
|
3223 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersInStoreRefundLineItemResponse.php'
|
3224 |
),
|
3225 |
+
'Google\\Service\\ShoppingContent\\Error' => array(
|
3226 |
'version' => '0.252.0.0',
|
3227 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Error.php'
|
3228 |
),
|
3229 |
+
'Google\\Service\\ShoppingContent\\ProductSubscriptionCost' => array(
|
3230 |
'version' => '0.252.0.0',
|
3231 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductSubscriptionCost.php'
|
3232 |
),
|
3233 |
+
'Google\\Service\\ShoppingContent\\CustomAttribute' => array(
|
3234 |
'version' => '0.252.0.0',
|
3235 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CustomAttribute.php'
|
3236 |
),
|
3237 |
+
'Google\\Service\\ShoppingContent\\ProductsCustomBatchRequestEntry' => array(
|
3238 |
'version' => '0.252.0.0',
|
3239 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductsCustomBatchRequestEntry.php'
|
3240 |
),
|
3241 |
+
'Google\\Service\\ShoppingContent\\AccountsCustomBatchResponse' => array(
|
3242 |
'version' => '0.252.0.0',
|
3243 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsCustomBatchResponse.php'
|
3244 |
),
|
3245 |
+
'Google\\Service\\ShoppingContent\\ShipmentTrackingInfo' => array(
|
3246 |
'version' => '0.252.0.0',
|
3247 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShipmentTrackingInfo.php'
|
3248 |
),
|
3249 |
+
'Google\\Service\\ShoppingContent\\DatafeedFormat' => array(
|
3250 |
'version' => '0.252.0.0',
|
3251 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedFormat.php'
|
3252 |
),
|
3253 |
+
'Google\\Service\\ShoppingContent\\InvoiceSummaryAdditionalChargeSummary' => array(
|
3254 |
'version' => '0.252.0.0',
|
3255 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/InvoiceSummaryAdditionalChargeSummary.php'
|
3256 |
),
|
3257 |
+
'Google\\Service\\ShoppingContent\\ListAccountReturnCarrierResponse' => array(
|
3258 |
'version' => '0.252.0.0',
|
3259 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListAccountReturnCarrierResponse.php'
|
3260 |
),
|
3261 |
+
'Google\\Service\\ShoppingContent\\ProductDeliveryTime' => array(
|
3262 |
'version' => '0.252.0.0',
|
3263 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductDeliveryTime.php'
|
3264 |
),
|
3265 |
+
'Google\\Service\\ShoppingContent\\OrdersRefundOrderResponse' => array(
|
3266 |
'version' => '0.252.0.0',
|
3267 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersRefundOrderResponse.php'
|
3268 |
),
|
3269 |
+
'Google\\Service\\ShoppingContent\\LiasettingsRequestInventoryVerificationResponse' => array(
|
3270 |
'version' => '0.252.0.0',
|
3271 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsRequestInventoryVerificationResponse.php'
|
3272 |
),
|
3273 |
+
'Google\\Service\\ShoppingContent\\InapplicabilityDetails' => array(
|
3274 |
'version' => '0.252.0.0',
|
3275 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/InapplicabilityDetails.php'
|
3276 |
),
|
3277 |
+
'Google\\Service\\ShoppingContent\\ProductDimension' => array(
|
3278 |
'version' => '0.252.0.0',
|
3279 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductDimension.php'
|
3280 |
),
|
3281 |
+
'Google\\Service\\ShoppingContent\\AccountstatusesCustomBatchResponseEntry' => array(
|
3282 |
'version' => '0.252.0.0',
|
3283 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountstatusesCustomBatchResponseEntry.php'
|
3284 |
),
|
3285 |
+
'Google\\Service\\ShoppingContent\\RepricingRule' => array(
|
3286 |
'version' => '0.252.0.0',
|
3287 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRule.php'
|
3288 |
),
|
3289 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsProcessRequest' => array(
|
3290 |
'version' => '0.252.0.0',
|
3291 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsProcessRequest.php'
|
3292 |
),
|
3293 |
+
'Google\\Service\\ShoppingContent\\RegionGeoTargetArea' => array(
|
3294 |
'version' => '0.252.0.0',
|
3295 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionGeoTargetArea.php'
|
3296 |
),
|
3297 |
+
'Google\\Service\\ShoppingContent\\ReturnpolicyCustomBatchRequestEntry' => array(
|
3298 |
'version' => '0.252.0.0',
|
3299 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnpolicyCustomBatchRequestEntry.php'
|
3300 |
),
|
3301 |
+
'Google\\Service\\ShoppingContent\\Region' => array(
|
3302 |
'version' => '0.252.0.0',
|
3303 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Region.php'
|
3304 |
),
|
3305 |
+
'Google\\Service\\ShoppingContent\\OrdersRefundItemRequest' => array(
|
3306 |
'version' => '0.252.0.0',
|
3307 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersRefundItemRequest.php'
|
3308 |
),
|
3309 |
+
'Google\\Service\\ShoppingContent\\ProductsCustomBatchResponseEntry' => array(
|
3310 |
'version' => '0.252.0.0',
|
3311 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductsCustomBatchResponseEntry.php'
|
3312 |
),
|
3313 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemReturnInfo' => array(
|
3314 |
'version' => '0.252.0.0',
|
3315 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemReturnInfo.php'
|
3316 |
),
|
3317 |
+
'Google\\Service\\ShoppingContent\\PosDataProvidersPosDataProvider' => array(
|
3318 |
'version' => '0.252.0.0',
|
3319 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosDataProvidersPosDataProvider.php'
|
3320 |
),
|
3321 |
+
'Google\\Service\\ShoppingContent\\TimeZone' => array(
|
3322 |
'version' => '0.252.0.0',
|
3323 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TimeZone.php'
|
3324 |
),
|
3325 |
+
'Google\\Service\\ShoppingContent\\OrdersCancelRequest' => array(
|
3326 |
'version' => '0.252.0.0',
|
3327 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCancelRequest.php'
|
3328 |
),
|
3329 |
+
'Google\\Service\\ShoppingContent\\ProductDeliveryTimeAreaDeliveryTime' => array(
|
3330 |
'version' => '0.252.0.0',
|
3331 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductDeliveryTimeAreaDeliveryTime.php'
|
3332 |
),
|
3333 |
+
'Google\\Service\\ShoppingContent\\AccountsListLinksResponse' => array(
|
3334 |
'version' => '0.252.0.0',
|
3335 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsListLinksResponse.php'
|
3336 |
),
|
3337 |
+
'Google\\Service\\ShoppingContent\\TransitTableTransitTimeRowTransitTimeValue' => array(
|
3338 |
'version' => '0.252.0.0',
|
3339 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TransitTableTransitTimeRowTransitTimeValue.php'
|
3340 |
),
|
3341 |
+
'Google\\Service\\ShoppingContent\\DatafeedstatusesCustomBatchRequest' => array(
|
3342 |
'version' => '0.252.0.0',
|
3343 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedstatusesCustomBatchRequest.php'
|
3344 |
),
|
3345 |
+
'Google\\Service\\ShoppingContent\\PosCustomBatchRequestEntry' => array(
|
3346 |
'version' => '0.252.0.0',
|
3347 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosCustomBatchRequestEntry.php'
|
3348 |
),
|
3349 |
+
'Google\\Service\\ShoppingContent\\Row' => array(
|
3350 |
'version' => '0.252.0.0',
|
3351 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Row.php'
|
3352 |
),
|
3353 |
+
'Google\\Service\\ShoppingContent\\DatafeedTarget' => array(
|
3354 |
'version' => '0.252.0.0',
|
3355 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedTarget.php'
|
3356 |
+
),
|
3357 |
+
'Google\\Service\\ShoppingContent\\Amount' => array(
|
3358 |
+
'version' => '0.252.0.0',
|
3359 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Amount.php'
|
3360 |
+
),
|
3361 |
+
'Google\\Service\\ShoppingContent\\OrderTrackingSignal' => array(
|
3362 |
+
'version' => '0.252.0.0',
|
3363 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderTrackingSignal.php'
|
3364 |
),
|
3365 |
'Google\\Service\\ShoppingContent\\ReturnaddressCustomBatchRequestEntry' => array(
|
3366 |
'version' => '0.252.0.0',
|
3367 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnaddressCustomBatchRequestEntry.php'
|
3368 |
),
|
3369 |
+
'Google\\Service\\ShoppingContent\\PauseBuyOnGoogleProgramRequest' => array(
|
3370 |
'version' => '0.252.0.0',
|
3371 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PauseBuyOnGoogleProgramRequest.php'
|
3372 |
),
|
3373 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsLineItem' => array(
|
3374 |
'version' => '0.252.0.0',
|
3375 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsLineItem.php'
|
3376 |
),
|
3377 |
+
'Google\\Service\\ShoppingContent\\SettlementtransactionsListResponse' => array(
|
3378 |
'version' => '0.252.0.0',
|
3379 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementtransactionsListResponse.php'
|
3380 |
),
|
3381 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemProductFee' => array(
|
3382 |
'version' => '0.252.0.0',
|
3383 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemProductFee.php'
|
3384 |
),
|
3385 |
+
'Google\\Service\\ShoppingContent\\ProductDeliveryTimeAreaDeliveryTimeDeliveryTime' => array(
|
3386 |
'version' => '0.252.0.0',
|
3387 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductDeliveryTimeAreaDeliveryTimeDeliveryTime.php'
|
3388 |
),
|
3389 |
+
'Google\\Service\\ShoppingContent\\OrdersCancelLineItemResponse' => array(
|
3390 |
'version' => '0.252.0.0',
|
3391 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCancelLineItemResponse.php'
|
3392 |
),
|
3393 |
+
'Google\\Service\\ShoppingContent\\ShipmentInvoice' => array(
|
3394 |
'version' => '0.252.0.0',
|
3395 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShipmentInvoice.php'
|
3396 |
),
|
3397 |
+
'Google\\Service\\ShoppingContent\\OrdersUpdateLineItemShippingDetailsResponse' => array(
|
3398 |
'version' => '0.252.0.0',
|
3399 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersUpdateLineItemShippingDetailsResponse.php'
|
3400 |
),
|
3401 |
+
'Google\\Service\\ShoppingContent\\AccountLabel' => array(
|
3402 |
'version' => '0.252.0.0',
|
3403 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountLabel.php'
|
3404 |
),
|
3405 |
+
'Google\\Service\\ShoppingContent\\OrdersCustomBatchRequestEntryCreateTestReturnReturnItem' => array(
|
3406 |
'version' => '0.252.0.0',
|
3407 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCustomBatchRequestEntryCreateTestReturnReturnItem.php'
|
3408 |
),
|
3409 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleReportBuyboxWinningRuleStats' => array(
|
3410 |
'version' => '0.252.0.0',
|
3411 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleReportBuyboxWinningRuleStats.php'
|
3412 |
),
|
3413 |
+
'Google\\Service\\ShoppingContent\\OrderreportsListTransactionsResponse' => array(
|
3414 |
'version' => '0.252.0.0',
|
3415 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreportsListTransactionsResponse.php'
|
3416 |
),
|
3417 |
+
'Google\\Service\\ShoppingContent\\OrderTrackingSignalShipmentLineItemMapping' => array(
|
3418 |
'version' => '0.252.0.0',
|
3419 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderTrackingSignalShipmentLineItemMapping.php'
|
3420 |
),
|
3421 |
+
'Google\\Service\\ShoppingContent\\RefundReason' => array(
|
3422 |
'version' => '0.252.0.0',
|
3423 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RefundReason.php'
|
3424 |
),
|
3425 |
+
'Google\\Service\\ShoppingContent\\ShoppingAdsProgramStatus' => array(
|
3426 |
'version' => '0.252.0.0',
|
3427 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShoppingAdsProgramStatus.php'
|
3428 |
),
|
3429 |
+
'Google\\Service\\ShoppingContent\\LiaAboutPageSettings' => array(
|
3430 |
'version' => '0.252.0.0',
|
3431 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiaAboutPageSettings.php'
|
3432 |
),
|
3433 |
+
'Google\\Service\\ShoppingContent\\ShoppingAdsProgramStatusReviewIneligibilityReasonDetails' => array(
|
3434 |
'version' => '0.252.0.0',
|
3435 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShoppingAdsProgramStatusReviewIneligibilityReasonDetails.php'
|
3436 |
),
|
3437 |
+
'Google\\Service\\ShoppingContent\\PickupServicesPickupService' => array(
|
3438 |
'version' => '0.252.0.0',
|
3439 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PickupServicesPickupService.php'
|
3440 |
),
|
3441 |
'Google\\Service\\ShoppingContent\\Address' => array(
|
3442 |
'version' => '0.252.0.0',
|
3443 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Address.php'
|
3444 |
),
|
3445 |
+
'Google\\Service\\ShoppingContent\\DatafeedsListResponse' => array(
|
3446 |
'version' => '0.252.0.0',
|
3447 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedsListResponse.php'
|
3448 |
),
|
3449 |
+
'Google\\Service\\ShoppingContent\\PosSaleRequest' => array(
|
3450 |
'version' => '0.252.0.0',
|
3451 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosSaleRequest.php'
|
3452 |
),
|
3453 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsCustomBatchResponseEntry' => array(
|
3454 |
'version' => '0.252.0.0',
|
3455 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsCustomBatchResponseEntry.php'
|
3456 |
),
|
3457 |
+
'Google\\Service\\ShoppingContent\\DateTime' => array(
|
3458 |
'version' => '0.252.0.0',
|
3459 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DateTime.php'
|
3460 |
),
|
3461 |
+
'Google\\Service\\ShoppingContent\\OrderDeliveryDetails' => array(
|
3462 |
'version' => '0.252.0.0',
|
3463 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderDeliveryDetails.php'
|
3464 |
),
|
3465 |
+
'Google\\Service\\ShoppingContent\\OrdersSetLineItemMetadataResponse' => array(
|
3466 |
'version' => '0.252.0.0',
|
3467 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersSetLineItemMetadataResponse.php'
|
3468 |
),
|
3469 |
+
'Google\\Service\\ShoppingContent\\ReturnaddressListResponse' => array(
|
3470 |
'version' => '0.252.0.0',
|
3471 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnaddressListResponse.php'
|
3472 |
),
|
3473 |
+
'Google\\Service\\ShoppingContent\\AccountShippingImprovements' => array(
|
3474 |
'version' => '0.252.0.0',
|
3475 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountShippingImprovements.php'
|
3476 |
),
|
3477 |
+
'Google\\Service\\ShoppingContent\\HolidaysHoliday' => array(
|
3478 |
'version' => '0.252.0.0',
|
3479 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/HolidaysHoliday.php'
|
3480 |
),
|
3481 |
+
'Google\\Service\\ShoppingContent\\AccountYouTubeChannelLink' => array(
|
3482 |
'version' => '0.252.0.0',
|
3483 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountYouTubeChannelLink.php'
|
3484 |
),
|
3485 |
+
'Google\\Service\\ShoppingContent\\ReturnpolicyListResponse' => array(
|
3486 |
'version' => '0.252.0.0',
|
3487 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnpolicyListResponse.php'
|
3488 |
),
|
3489 |
+
'Google\\Service\\ShoppingContent\\OrdersUpdateMerchantOrderIdRequest' => array(
|
3490 |
'version' => '0.252.0.0',
|
3491 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersUpdateMerchantOrderIdRequest.php'
|
3492 |
),
|
3493 |
+
'Google\\Service\\ShoppingContent\\AccountStatusStatistics' => array(
|
3494 |
'version' => '0.252.0.0',
|
3495 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountStatusStatistics.php'
|
3496 |
),
|
3497 |
+
'Google\\Service\\ShoppingContent\\UnitInvoiceAdditionalCharge' => array(
|
3498 |
'version' => '0.252.0.0',
|
3499 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/UnitInvoiceAdditionalCharge.php'
|
3500 |
),
|
3501 |
+
'Google\\Service\\ShoppingContent\\LinkedAccount' => array(
|
3502 |
'version' => '0.252.0.0',
|
3503 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LinkedAccount.php'
|
3504 |
),
|
3505 |
+
'Google\\Service\\ShoppingContent\\Errors' => array(
|
3506 |
'version' => '0.252.0.0',
|
3507 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Errors.php'
|
3508 |
),
|
3509 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemProduct' => array(
|
3510 |
'version' => '0.252.0.0',
|
3511 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemProduct.php'
|
3512 |
),
|
3513 |
+
'Google\\Service\\ShoppingContent\\RepricingProductReport' => array(
|
3514 |
'version' => '0.252.0.0',
|
3515 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingProductReport.php'
|
3516 |
),
|
3517 |
+
'Google\\Service\\ShoppingContent\\MerchantRejectionReason' => array(
|
3518 |
'version' => '0.252.0.0',
|
3519 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/MerchantRejectionReason.php'
|
3520 |
),
|
3521 |
+
'Google\\Service\\ShoppingContent\\LocalinventoryCustomBatchResponseEntry' => array(
|
3522 |
'version' => '0.252.0.0',
|
3523 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LocalinventoryCustomBatchResponseEntry.php'
|
3524 |
),
|
3525 |
+
'Google\\Service\\ShoppingContent\\Segments' => array(
|
3526 |
'version' => '0.252.0.0',
|
3527 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Segments.php'
|
3528 |
),
|
3529 |
+
'Google\\Service\\ShoppingContent\\Collection' => array(
|
3530 |
'version' => '0.252.0.0',
|
3531 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Collection.php'
|
3532 |
),
|
3533 |
+
'Google\\Service\\ShoppingContent\\ProductUnitPricingBaseMeasure' => array(
|
3534 |
'version' => '0.252.0.0',
|
3535 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductUnitPricingBaseMeasure.php'
|
3536 |
),
|
3537 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsGetSupportedCarriersResponse' => array(
|
3538 |
'version' => '0.252.0.0',
|
3539 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsGetSupportedCarriersResponse.php'
|
3540 |
),
|
3541 |
+
'Google\\Service\\ShoppingContent\\ProductShippingDimension' => array(
|
3542 |
'version' => '0.252.0.0',
|
3543 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductShippingDimension.php'
|
3544 |
),
|
3545 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicyOnlineReturnShippingFee' => array(
|
3546 |
'version' => '0.252.0.0',
|
3547 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicyOnlineReturnShippingFee.php'
|
3548 |
),
|
3549 |
+
'Google\\Service\\ShoppingContent\\AccountstatusesListResponse' => array(
|
3550 |
'version' => '0.252.0.0',
|
3551 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountstatusesListResponse.php'
|
3552 |
),
|
3553 |
+
'Google\\Service\\ShoppingContent\\ReturnAddress' => array(
|
3554 |
'version' => '0.252.0.0',
|
3555 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnAddress.php'
|
3556 |
),
|
3557 |
+
'Google\\Service\\ShoppingContent\\CaptureOrderRequest' => array(
|
3558 |
'version' => '0.252.0.0',
|
3559 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CaptureOrderRequest.php'
|
3560 |
),
|
3561 |
+
'Google\\Service\\ShoppingContent\\ProductId' => array(
|
3562 |
'version' => '0.252.0.0',
|
3563 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductId.php'
|
3564 |
),
|
3565 |
+
'Google\\Service\\ShoppingContent\\OrdersCustomBatchRequestEntryRefundItemShipping' => array(
|
3566 |
'version' => '0.252.0.0',
|
3567 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCustomBatchRequestEntryRefundItemShipping.php'
|
3568 |
),
|
3569 |
+
'Google\\Service\\ShoppingContent\\AccounttaxListResponse' => array(
|
3570 |
'version' => '0.252.0.0',
|
3571 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccounttaxListResponse.php'
|
3572 |
),
|
3573 |
+
'Google\\Service\\ShoppingContent\\AccountIdentifier' => array(
|
3574 |
'version' => '0.252.0.0',
|
3575 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountIdentifier.php'
|
3576 |
),
|
3577 |
+
'Google\\Service\\ShoppingContent\\OrderinvoicesCreateRefundInvoiceResponse' => array(
|
3578 |
'version' => '0.252.0.0',
|
3579 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCreateRefundInvoiceResponse.php'
|
3580 |
),
|
3581 |
+
'Google\\Service\\ShoppingContent\\CollectionStatusItemLevelIssue' => array(
|
3582 |
'version' => '0.252.0.0',
|
3583 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CollectionStatusItemLevelIssue.php'
|
3584 |
),
|
3585 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsListResponse' => array(
|
3586 |
'version' => '0.252.0.0',
|
3587 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsListResponse.php'
|
3588 |
),
|
3589 |
+
'Google\\Service\\ShoppingContent\\AccountsCustomBatchRequest' => array(
|
3590 |
'version' => '0.252.0.0',
|
3591 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsCustomBatchRequest.php'
|
3592 |
),
|
3593 |
+
'Google\\Service\\ShoppingContent\\RateGroup' => array(
|
3594 |
'version' => '0.252.0.0',
|
3595 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RateGroup.php'
|
3596 |
),
|
3597 |
+
'Google\\Service\\ShoppingContent\\LiasettingsCustomBatchRequest' => array(
|
3598 |
'version' => '0.252.0.0',
|
3599 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsCustomBatchRequest.php'
|
3600 |
),
|
3601 |
+
'Google\\Service\\ShoppingContent\\RequestReviewBuyOnGoogleProgramRequest' => array(
|
3602 |
'version' => '0.252.0.0',
|
3603 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RequestReviewBuyOnGoogleProgramRequest.php'
|
3604 |
),
|
3605 |
+
'Google\\Service\\ShoppingContent\\OrdersGetTestOrderTemplateResponse' => array(
|
3606 |
'version' => '0.252.0.0',
|
3607 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersGetTestOrderTemplateResponse.php'
|
3608 |
),
|
3609 |
+
'Google\\Service\\ShoppingContent\\PosListResponse' => array(
|
3610 |
'version' => '0.252.0.0',
|
3611 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosListResponse.php'
|
3612 |
),
|
3613 |
+
'Google\\Service\\ShoppingContent\\OrderPromotionItem' => array(
|
3614 |
'version' => '0.252.0.0',
|
3615 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderPromotionItem.php'
|
3616 |
),
|
3617 |
+
'Google\\Service\\ShoppingContent\\Warehouse' => array(
|
3618 |
'version' => '0.252.0.0',
|
3619 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Warehouse.php'
|
3620 |
),
|
3621 |
+
'Google\\Service\\ShoppingContent\\AccountStatusAccountLevelIssue' => array(
|
3622 |
'version' => '0.252.0.0',
|
3623 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountStatusAccountLevelIssue.php'
|
3624 |
),
|
3625 |
+
'Google\\Service\\ShoppingContent\\ListRepricingRulesResponse' => array(
|
3626 |
'version' => '0.252.0.0',
|
3627 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListRepricingRulesResponse.php'
|
3628 |
),
|
3629 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleEligibleOfferMatcherStringMatcher' => array(
|
3630 |
'version' => '0.252.0.0',
|
3631 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleEligibleOfferMatcherStringMatcher.php'
|
3632 |
),
|
3633 |
+
'Google\\Service\\ShoppingContent\\DeliveryAreaPostalCodeRange' => array(
|
3634 |
'version' => '0.252.0.0',
|
3635 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DeliveryAreaPostalCodeRange.php'
|
3636 |
),
|
3637 |
+
'Google\\Service\\ShoppingContent\\ListCollectionStatusesResponse' => array(
|
3638 |
'version' => '0.252.0.0',
|
3639 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListCollectionStatusesResponse.php'
|
3640 |
),
|
3641 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleEffectiveTime' => array(
|
3642 |
'version' => '0.252.0.0',
|
3643 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleEffectiveTime.php'
|
3644 |
),
|
3645 |
+
'Google\\Service\\ShoppingContent\\LiasettingsGetAccessibleGmbAccountsResponse' => array(
|
3646 |
'version' => '0.252.0.0',
|
3647 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsGetAccessibleGmbAccountsResponse.php'
|
3648 |
),
|
3649 |
+
'Google\\Service\\ShoppingContent\\ProductStatusItemLevelIssue' => array(
|
3650 |
'version' => '0.252.0.0',
|
3651 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductStatusItemLevelIssue.php'
|
3652 |
),
|
3653 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsReturnItem' => array(
|
3654 |
'version' => '0.252.0.0',
|
3655 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsReturnItem.php'
|
3656 |
),
|
3657 |
+
'Google\\Service\\ShoppingContent\\RegionalinventoryCustomBatchResponseEntry' => array(
|
3658 |
'version' => '0.252.0.0',
|
3659 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionalinventoryCustomBatchResponseEntry.php'
|
3660 |
),
|
3661 |
+
'Google\\Service\\ShoppingContent\\OrderCustomerLoyaltyInfo' => array(
|
3662 |
'version' => '0.252.0.0',
|
3663 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderCustomerLoyaltyInfo.php'
|
3664 |
),
|
3665 |
+
'Google\\Service\\ShoppingContent\\MinimumOrderValueTable' => array(
|
3666 |
'version' => '0.252.0.0',
|
3667 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/MinimumOrderValueTable.php'
|
3668 |
),
|
3669 |
+
'Google\\Service\\ShoppingContent\\RequestReviewShoppingAdsRequest' => array(
|
3670 |
'version' => '0.252.0.0',
|
3671 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RequestReviewShoppingAdsRequest.php'
|
3672 |
),
|
3673 |
+
'Google\\Service\\ShoppingContent\\ReturnaddressCustomBatchRequest' => array(
|
3674 |
'version' => '0.252.0.0',
|
3675 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnaddressCustomBatchRequest.php'
|
3676 |
),
|
3677 |
+
'Google\\Service\\ShoppingContent\\RegionalinventoryCustomBatchRequest' => array(
|
3678 |
'version' => '0.252.0.0',
|
3679 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionalinventoryCustomBatchRequest.php'
|
3680 |
),
|
3681 |
+
'Google\\Service\\ShoppingContent\\RegionPostalCodeArea' => array(
|
3682 |
'version' => '0.252.0.0',
|
3683 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionPostalCodeArea.php'
|
3684 |
),
|
3685 |
+
'Google\\Service\\ShoppingContent\\OrdersCreateTestOrderRequest' => array(
|
3686 |
'version' => '0.252.0.0',
|
3687 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCreateTestOrderRequest.php'
|
3688 |
),
|
3689 |
+
'Google\\Service\\ShoppingContent\\ProductstatusesCustomBatchRequestEntry' => array(
|
3690 |
'version' => '0.252.0.0',
|
3691 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductstatusesCustomBatchRequestEntry.php'
|
3692 |
),
|
3693 |
+
'Google\\Service\\ShoppingContent\\LiaSettings' => array(
|
3694 |
'version' => '0.252.0.0',
|
3695 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiaSettings.php'
|
3696 |
),
|
3697 |
+
'Google\\Service\\ShoppingContent\\UnitInvoiceTaxLine' => array(
|
3698 |
'version' => '0.252.0.0',
|
3699 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/UnitInvoiceTaxLine.php'
|
3700 |
),
|
3701 |
+
'Google\\Service\\ShoppingContent\\RegionalinventoryCustomBatchRequestEntry' => array(
|
3702 |
'version' => '0.252.0.0',
|
3703 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionalinventoryCustomBatchRequestEntry.php'
|
3704 |
),
|
3705 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsCreateOrderReturnResponse' => array(
|
3706 |
'version' => '0.252.0.0',
|
3707 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsCreateOrderReturnResponse.php'
|
3708 |
),
|
3709 |
+
'Google\\Service\\ShoppingContent\\TestOrderAddress' => array(
|
3710 |
'version' => '0.252.0.0',
|
3711 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrderAddress.php'
|
3712 |
),
|
3713 |
+
'Google\\Service\\ShoppingContent\\PostalCodeRange' => array(
|
3714 |
'version' => '0.252.0.0',
|
3715 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PostalCodeRange.php'
|
3716 |
),
|
3717 |
+
'Google\\Service\\ShoppingContent\\GmbAccountsGmbAccount' => array(
|
3718 |
'version' => '0.252.0.0',
|
3719 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/GmbAccountsGmbAccount.php'
|
3720 |
),
|
3721 |
+
'Google\\Service\\ShoppingContent\\AccountItemUpdates' => array(
|
3722 |
'version' => '0.252.0.0',
|
3723 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountItemUpdates.php'
|
3724 |
),
|
3725 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsCustomBatchRequest' => array(
|
3726 |
'version' => '0.252.0.0',
|
3727 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsCustomBatchRequest.php'
|
3728 |
),
|
3729 |
+
'Google\\Service\\ShoppingContent\\OrderLineItem' => array(
|
3730 |
'version' => '0.252.0.0',
|
3731 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItem.php'
|
3732 |
),
|
3733 |
+
'Google\\Service\\ShoppingContent\\RequestPhoneVerificationRequest' => array(
|
3734 |
'version' => '0.252.0.0',
|
3735 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RequestPhoneVerificationRequest.php'
|
3736 |
),
|
3737 |
+
'Google\\Service\\ShoppingContent\\ProductProductDetail' => array(
|
3738 |
'version' => '0.252.0.0',
|
3739 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductProductDetail.php'
|
3740 |
),
|
3741 |
+
'Google\\Service\\ShoppingContent\\SettlementTransactionTransaction' => array(
|
3742 |
'version' => '0.252.0.0',
|
3743 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementTransactionTransaction.php'
|
3744 |
),
|
3745 |
+
'Google\\Service\\ShoppingContent\\AccountUser' => array(
|
3746 |
'version' => '0.252.0.0',
|
3747 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountUser.php'
|
3748 |
),
|
3749 |
+
'Google\\Service\\ShoppingContent\\FreeListingsProgramStatusRegionStatus' => array(
|
3750 |
'version' => '0.252.0.0',
|
3751 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/FreeListingsProgramStatusRegionStatus.php'
|
3752 |
),
|
3753 |
+
'Google\\Service\\ShoppingContent\\AccountstatusesCustomBatchRequestEntry' => array(
|
3754 |
'version' => '0.252.0.0',
|
3755 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountstatusesCustomBatchRequestEntry.php'
|
3756 |
),
|
3757 |
+
'Google\\Service\\ShoppingContent\\LabelIds' => array(
|
3758 |
'version' => '0.252.0.0',
|
3759 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LabelIds.php'
|
3760 |
),
|
3761 |
+
'Google\\Service\\ShoppingContent\\ProductAmount' => array(
|
3762 |
'version' => '0.252.0.0',
|
3763 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductAmount.php'
|
3764 |
),
|
3765 |
+
'Google\\Service\\ShoppingContent\\ShoppingAdsProgramStatusRegionStatus' => array(
|
3766 |
'version' => '0.252.0.0',
|
3767 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShoppingAdsProgramStatusRegionStatus.php'
|
3768 |
),
|
3769 |
+
'Google\\Service\\ShoppingContent\\CollectionFeaturedProduct' => array(
|
3770 |
'version' => '0.252.0.0',
|
3771 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CollectionFeaturedProduct.php'
|
3772 |
),
|
3773 |
+
'Google\\Service\\ShoppingContent\\CustomerReturnReason' => array(
|
3774 |
'version' => '0.252.0.0',
|
3775 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CustomerReturnReason.php'
|
3776 |
),
|
3777 |
+
'Google\\Service\\ShoppingContent\\FreeListingsProgramStatusReviewIneligibilityReasonDetails' => array(
|
3778 |
'version' => '0.252.0.0',
|
3779 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/FreeListingsProgramStatusReviewIneligibilityReasonDetails.php'
|
3780 |
),
|
3781 |
+
'Google\\Service\\ShoppingContent\\AccountTaxTaxRule' => array(
|
3782 |
'version' => '0.252.0.0',
|
3783 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountTaxTaxRule.php'
|
3784 |
),
|
3785 |
+
'Google\\Service\\ShoppingContent\\ProductsListResponse' => array(
|
3786 |
'version' => '0.252.0.0',
|
3787 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductsListResponse.php'
|
3788 |
),
|
3789 |
+
'Google\\Service\\ShoppingContent\\Metrics' => array(
|
3790 |
'version' => '0.252.0.0',
|
3791 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Metrics.php'
|
3792 |
),
|
3793 |
+
'Google\\Service\\ShoppingContent\\DatafeedsCustomBatchResponse' => array(
|
3794 |
'version' => '0.252.0.0',
|
3795 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedsCustomBatchResponse.php'
|
3796 |
),
|
3797 |
+
'Google\\Service\\ShoppingContent\\Table' => array(
|
3798 |
'version' => '0.252.0.0',
|
3799 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Table.php'
|
3800 |
),
|
3801 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicyPolicy' => array(
|
3802 |
'version' => '0.252.0.0',
|
3803 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicyPolicy.php'
|
3804 |
),
|
3805 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsAcknowledgeRequest' => array(
|
3806 |
'version' => '0.252.0.0',
|
3807 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsAcknowledgeRequest.php'
|
3808 |
),
|
3809 |
+
'Google\\Service\\ShoppingContent\\ProductstatusesCustomBatchRequest' => array(
|
3810 |
'version' => '0.252.0.0',
|
3811 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductstatusesCustomBatchRequest.php'
|
3812 |
),
|
3813 |
+
'Google\\Service\\ShoppingContent\\Resource\\Returnpolicy' => array(
|
3814 |
'version' => '0.252.0.0',
|
3815 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Returnpolicy.php'
|
3816 |
),
|
3817 |
+
'Google\\Service\\ShoppingContent\\Resource\\Datafeeds' => array(
|
3818 |
'version' => '0.252.0.0',
|
3819 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Datafeeds.php'
|
3820 |
),
|
3821 |
+
'Google\\Service\\ShoppingContent\\Resource\\Collections' => array(
|
3822 |
'version' => '0.252.0.0',
|
3823 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Collections.php'
|
3824 |
),
|
3825 |
+
'Google\\Service\\ShoppingContent\\Resource\\Accountstatusesbyexternalsellerid' => array(
|
3826 |
'version' => '0.252.0.0',
|
3827 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Accountstatusesbyexternalsellerid.php'
|
3828 |
),
|
3829 |
+
'Google\\Service\\ShoppingContent\\Resource\\Returnpolicyonline' => array(
|
3830 |
'version' => '0.252.0.0',
|
3831 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Returnpolicyonline.php'
|
3832 |
),
|
3833 |
+
'Google\\Service\\ShoppingContent\\Resource\\Accounts' => array(
|
3834 |
'version' => '0.252.0.0',
|
3835 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Accounts.php'
|
3836 |
),
|
3837 |
+
'Google\\Service\\ShoppingContent\\Resource\\ProductstatusesRepricingreports' => array(
|
3838 |
'version' => '0.252.0.0',
|
3839 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/ProductstatusesRepricingreports.php'
|
3840 |
),
|
3841 |
+
'Google\\Service\\ShoppingContent\\Resource\\Csses' => array(
|
3842 |
'version' => '0.252.0.0',
|
3843 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Csses.php'
|
3844 |
),
|
3845 |
+
'Google\\Service\\ShoppingContent\\Resource\\AccountsReturncarrier' => array(
|
3846 |
'version' => '0.252.0.0',
|
3847 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/AccountsReturncarrier.php'
|
3848 |
),
|
3849 |
+
'Google\\Service\\ShoppingContent\\Resource\\Ordertrackingsignals' => array(
|
3850 |
'version' => '0.252.0.0',
|
3851 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Ordertrackingsignals.php'
|
3852 |
),
|
3853 |
+
'Google\\Service\\ShoppingContent\\Resource\\OrderreturnsLabels' => array(
|
3854 |
'version' => '0.252.0.0',
|
3855 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/OrderreturnsLabels.php'
|
3856 |
),
|
3857 |
+
'Google\\Service\\ShoppingContent\\Resource\\Regionalinventory' => array(
|
3858 |
'version' => '0.252.0.0',
|
3859 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Regionalinventory.php'
|
3860 |
),
|
3861 |
+
'Google\\Service\\ShoppingContent\\Resource\\Collectionstatuses' => array(
|
3862 |
'version' => '0.252.0.0',
|
3863 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Collectionstatuses.php'
|
3864 |
),
|
3865 |
+
'Google\\Service\\ShoppingContent\\Resource\\Buyongoogleprograms' => array(
|
3866 |
'version' => '0.252.0.0',
|
3867 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Buyongoogleprograms.php'
|
3868 |
),
|
3869 |
+
'Google\\Service\\ShoppingContent\\Resource\\Settlementreports' => array(
|
3870 |
'version' => '0.252.0.0',
|
3871 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Settlementreports.php'
|
3872 |
),
|
3873 |
+
'Google\\Service\\ShoppingContent\\Resource\\Orderreturns' => array(
|
3874 |
'version' => '0.252.0.0',
|
3875 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Orderreturns.php'
|
3876 |
),
|
3877 |
+
'Google\\Service\\ShoppingContent\\Resource\\Promotions' => array(
|
3878 |
'version' => '0.252.0.0',
|
3879 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Promotions.php'
|
3880 |
),
|
3881 |
+
'Google\\Service\\ShoppingContent\\Resource\\AccountsCredentials' => array(
|
3882 |
'version' => '0.252.0.0',
|
3883 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/AccountsCredentials.php'
|
3884 |
),
|
3885 |
+
'Google\\Service\\ShoppingContent\\Resource\\Returnaddress' => array(
|
3886 |
'version' => '0.252.0.0',
|
3887 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Returnaddress.php'
|
3888 |
),
|
3889 |
+
'Google\\Service\\ShoppingContent\\Resource\\Accounttax' => array(
|
3890 |
'version' => '0.252.0.0',
|
3891 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Accounttax.php'
|
3892 |
),
|
3893 |
+
'Google\\Service\\ShoppingContent\\Resource\\Productstatuses' => array(
|
3894 |
'version' => '0.252.0.0',
|
3895 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Productstatuses.php'
|
3896 |
),
|
3897 |
+
'Google\\Service\\ShoppingContent\\Resource\\Freelistingsprogram' => array(
|
3898 |
'version' => '0.252.0.0',
|
3899 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Freelistingsprogram.php'
|
3900 |
),
|
3901 |
+
'Google\\Service\\ShoppingContent\\Resource\\Orderreports' => array(
|
3902 |
'version' => '0.252.0.0',
|
3903 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Orderreports.php'
|
3904 |
),
|
3905 |
+
'Google\\Service\\ShoppingContent\\Resource\\Accountstatuses' => array(
|
3906 |
'version' => '0.252.0.0',
|
3907 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Accountstatuses.php'
|
3908 |
),
|
3909 |
+
'Google\\Service\\ShoppingContent\\Resource\\Shippingsettings' => array(
|
3910 |
'version' => '0.252.0.0',
|
3911 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Shippingsettings.php'
|
3912 |
),
|
3913 |
+
'Google\\Service\\ShoppingContent\\Resource\\Pubsubnotificationsettings' => array(
|
3914 |
'version' => '0.252.0.0',
|
3915 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Pubsubnotificationsettings.php'
|
3916 |
),
|
3917 |
+
'Google\\Service\\ShoppingContent\\Resource\\Localinventory' => array(
|
3918 |
'version' => '0.252.0.0',
|
3919 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Localinventory.php'
|
3920 |
),
|
3921 |
+
'Google\\Service\\ShoppingContent\\Resource\\Settlementtransactions' => array(
|
3922 |
'version' => '0.252.0.0',
|
3923 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Settlementtransactions.php'
|
3924 |
),
|
3925 |
+
'Google\\Service\\ShoppingContent\\Resource\\Orders' => array(
|
3926 |
'version' => '0.252.0.0',
|
3927 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Orders.php'
|
3928 |
),
|
3929 |
+
'Google\\Service\\ShoppingContent\\Resource\\Accountsbyexternalsellerid' => array(
|
3930 |
'version' => '0.252.0.0',
|
3931 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Accountsbyexternalsellerid.php'
|
3932 |
),
|
3933 |
+
'Google\\Service\\ShoppingContent\\Resource\\Orderinvoices' => array(
|
3934 |
'version' => '0.252.0.0',
|
3935 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Orderinvoices.php'
|
3936 |
),
|
3937 |
+
'Google\\Service\\ShoppingContent\\Resource\\RepricingrulesRepricingreports' => array(
|
3938 |
'version' => '0.252.0.0',
|
3939 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/RepricingrulesRepricingreports.php'
|
3940 |
),
|
3941 |
+
'Google\\Service\\ShoppingContent\\Resource\\Shoppingadsprogram' => array(
|
3942 |
'version' => '0.252.0.0',
|
3943 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Shoppingadsprogram.php'
|
3944 |
),
|
3945 |
+
'Google\\Service\\ShoppingContent\\Resource\\Regions' => array(
|
3946 |
'version' => '0.252.0.0',
|
3947 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Regions.php'
|
3948 |
),
|
3949 |
+
'Google\\Service\\ShoppingContent\\Resource\\Reports' => array(
|
3950 |
'version' => '0.252.0.0',
|
3951 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Reports.php'
|
3952 |
),
|
3953 |
+
'Google\\Service\\ShoppingContent\\Resource\\Products' => array(
|
3954 |
'version' => '0.252.0.0',
|
3955 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Products.php'
|
3956 |
),
|
3957 |
+
'Google\\Service\\ShoppingContent\\Resource\\Productdeliverytime' => array(
|
3958 |
'version' => '0.252.0.0',
|
3959 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Productdeliverytime.php'
|
3960 |
),
|
3961 |
+
'Google\\Service\\ShoppingContent\\Resource\\Liasettings' => array(
|
3962 |
'version' => '0.252.0.0',
|
3963 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Liasettings.php'
|
3964 |
),
|
3965 |
+
'Google\\Service\\ShoppingContent\\Resource\\Repricingrules' => array(
|
3966 |
'version' => '0.252.0.0',
|
3967 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Repricingrules.php'
|
3968 |
),
|
3969 |
+
'Google\\Service\\ShoppingContent\\Resource\\AccountsLabels' => array(
|
3970 |
'version' => '0.252.0.0',
|
3971 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/AccountsLabels.php'
|
3972 |
),
|
3973 |
+
'Google\\Service\\ShoppingContent\\Resource\\Datafeedstatuses' => array(
|
3974 |
'version' => '0.252.0.0',
|
3975 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Datafeedstatuses.php'
|
3976 |
),
|
3977 |
+
'Google\\Service\\ShoppingContent\\Resource\\Pos' => array(
|
3978 |
'version' => '0.252.0.0',
|
3979 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Resource/Pos.php'
|
3980 |
),
|
3981 |
+
'Google\\Service\\ShoppingContent\\AccountsCustomBatchRequestEntry' => array(
|
3982 |
'version' => '0.252.0.0',
|
3983 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsCustomBatchRequestEntry.php'
|
3984 |
),
|
3985 |
+
'Google\\Service\\ShoppingContent\\ReturnpolicyCustomBatchResponse' => array(
|
3986 |
'version' => '0.252.0.0',
|
3987 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnpolicyCustomBatchResponse.php'
|
3988 |
),
|
3989 |
+
'Google\\Service\\ShoppingContent\\ListCssesResponse' => array(
|
3990 |
'version' => '0.252.0.0',
|
3991 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListCssesResponse.php'
|
3992 |
),
|
3993 |
+
'Google\\Service\\ShoppingContent\\OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption' => array(
|
3994 |
'version' => '0.252.0.0',
|
3995 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceReturnOption.php'
|
3996 |
),
|
3997 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemShippingDetails' => array(
|
3998 |
'version' => '0.252.0.0',
|
3999 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemShippingDetails.php'
|
4000 |
),
|
4001 |
+
'Google\\Service\\ShoppingContent\\OrderMerchantProvidedAnnotation' => array(
|
4002 |
'version' => '0.252.0.0',
|
4003 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderMerchantProvidedAnnotation.php'
|
4004 |
),
|
4005 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsAcknowledgeResponse' => array(
|
4006 |
'version' => '0.252.0.0',
|
4007 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsAcknowledgeResponse.php'
|
4008 |
),
|
4009 |
+
'Google\\Service\\ShoppingContent\\BusinessDayConfig' => array(
|
4010 |
'version' => '0.252.0.0',
|
4011 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/BusinessDayConfig.php'
|
4012 |
),
|
4013 |
+
'Google\\Service\\ShoppingContent\\RequestReviewFreeListingsRequest' => array(
|
4014 |
'version' => '0.252.0.0',
|
4015 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RequestReviewFreeListingsRequest.php'
|
4016 |
),
|
4017 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicySeasonalOverride' => array(
|
4018 |
'version' => '0.252.0.0',
|
4019 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicySeasonalOverride.php'
|
4020 |
),
|
4021 |
+
'Google\\Service\\ShoppingContent\\OrdersShipLineItemsResponse' => array(
|
4022 |
'version' => '0.252.0.0',
|
4023 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersShipLineItemsResponse.php'
|
4024 |
),
|
4025 |
+
'Google\\Service\\ShoppingContent\\ProductShipping' => array(
|
4026 |
'version' => '0.252.0.0',
|
4027 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductShipping.php'
|
4028 |
),
|
4029 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleEligibleOfferMatcher' => array(
|
4030 |
'version' => '0.252.0.0',
|
4031 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleEligibleOfferMatcher.php'
|
4032 |
),
|
4033 |
+
'Google\\Service\\ShoppingContent\\CarrierRate' => array(
|
4034 |
'version' => '0.252.0.0',
|
4035 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CarrierRate.php'
|
4036 |
),
|
4037 |
+
'Google\\Service\\ShoppingContent\\OrderTrackingSignalLineItemDetails' => array(
|
4038 |
'version' => '0.252.0.0',
|
4039 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderTrackingSignalLineItemDetails.php'
|
4040 |
),
|
4041 |
+
'Google\\Service\\ShoppingContent\\OrdersRejectReturnLineItemRequest' => array(
|
4042 |
'version' => '0.252.0.0',
|
4043 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersRejectReturnLineItemRequest.php'
|
4044 |
),
|
4045 |
+
'Google\\Service\\ShoppingContent\\SearchResponse' => array(
|
4046 |
'version' => '0.252.0.0',
|
4047 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SearchResponse.php'
|
4048 |
),
|
4049 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleCostOfGoodsSaleRule' => array(
|
4050 |
'version' => '0.252.0.0',
|
4051 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleCostOfGoodsSaleRule.php'
|
4052 |
),
|
4053 |
+
'Google\\Service\\ShoppingContent\\OrderAddress' => array(
|
4054 |
'version' => '0.252.0.0',
|
4055 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderAddress.php'
|
4056 |
),
|
4057 |
+
'Google\\Service\\ShoppingContent\\Headers' => array(
|
4058 |
'version' => '0.252.0.0',
|
4059 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Headers.php'
|
4060 |
),
|
4061 |
+
'Google\\Service\\ShoppingContent\\OrderReturn' => array(
|
4062 |
'version' => '0.252.0.0',
|
4063 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderReturn.php'
|
4064 |
),
|
4065 |
+
'Google\\Service\\ShoppingContent\\DatafeedStatusError' => array(
|
4066 |
'version' => '0.252.0.0',
|
4067 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedStatusError.php'
|
4068 |
),
|
4069 |
+
'Google\\Service\\ShoppingContent\\ReturnShipment' => array(
|
4070 |
'version' => '0.252.0.0',
|
4071 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnShipment.php'
|
4072 |
),
|
4073 |
+
'Google\\Service\\ShoppingContent\\PriceAmount' => array(
|
4074 |
'version' => '0.252.0.0',
|
4075 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PriceAmount.php'
|
4076 |
),
|
4077 |
+
'Google\\Service\\ShoppingContent\\OrderinvoicesCreateChargeInvoiceResponse' => array(
|
4078 |
'version' => '0.252.0.0',
|
4079 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCreateChargeInvoiceResponse.php'
|
4080 |
),
|
4081 |
+
'Google\\Service\\ShoppingContent\\ProductsCustomBatchRequest' => array(
|
4082 |
'version' => '0.252.0.0',
|
4083 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductsCustomBatchRequest.php'
|
4084 |
),
|
4085 |
+
'Google\\Service\\ShoppingContent\\OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption' => array(
|
4086 |
'version' => '0.252.0.0',
|
4087 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCustomBatchRequestEntryCreateRefundInvoiceRefundOption.php'
|
4088 |
),
|
4089 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsGetSupportedHolidaysResponse' => array(
|
4090 |
'version' => '0.252.0.0',
|
4091 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsGetSupportedHolidaysResponse.php'
|
4092 |
),
|
4093 |
+
'Google\\Service\\ShoppingContent\\TestOrder' => array(
|
4094 |
'version' => '0.252.0.0',
|
4095 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrder.php'
|
4096 |
),
|
4097 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsProcessResponse' => array(
|
4098 |
'version' => '0.252.0.0',
|
4099 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsProcessResponse.php'
|
4100 |
),
|
4101 |
+
'Google\\Service\\ShoppingContent\\OnboardBuyOnGoogleProgramRequest' => array(
|
4102 |
'version' => '0.252.0.0',
|
4103 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OnboardBuyOnGoogleProgramRequest.php'
|
4104 |
),
|
4105 |
+
'Google\\Service\\ShoppingContent\\ListRegionsResponse' => array(
|
4106 |
'version' => '0.252.0.0',
|
4107 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListRegionsResponse.php'
|
4108 |
),
|
4109 |
+
'Google\\Service\\ShoppingContent\\WarehouseBasedDeliveryTime' => array(
|
4110 |
'version' => '0.252.0.0',
|
4111 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/WarehouseBasedDeliveryTime.php'
|
4112 |
),
|
4113 |
+
'Google\\Service\\ShoppingContent\\LiasettingsCustomBatchRequestEntry' => array(
|
4114 |
'version' => '0.252.0.0',
|
4115 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsCustomBatchRequestEntry.php'
|
4116 |
),
|
4117 |
+
'Google\\Service\\ShoppingContent\\ListRepricingProductReportsResponse' => array(
|
4118 |
'version' => '0.252.0.0',
|
4119 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListRepricingProductReportsResponse.php'
|
4120 |
),
|
4121 |
+
'Google\\Service\\ShoppingContent\\ProductTax' => array(
|
4122 |
'version' => '0.252.0.0',
|
4123 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductTax.php'
|
4124 |
),
|
4125 |
+
'Google\\Service\\ShoppingContent\\ReturnPricingInfo' => array(
|
4126 |
'version' => '0.252.0.0',
|
4127 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPricingInfo.php'
|
4128 |
),
|
4129 |
+
'Google\\Service\\ShoppingContent\\ProductStatus' => array(
|
4130 |
'version' => '0.252.0.0',
|
4131 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductStatus.php'
|
4132 |
),
|
4133 |
+
'Google\\Service\\ShoppingContent\\OrderShipmentScheduledDeliveryDetails' => array(
|
4134 |
'version' => '0.252.0.0',
|
4135 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderShipmentScheduledDeliveryDetails.php'
|
4136 |
),
|
4137 |
+
'Google\\Service\\ShoppingContent\\PosInventoryResponse' => array(
|
4138 |
'version' => '0.252.0.0',
|
4139 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosInventoryResponse.php'
|
4140 |
),
|
4141 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicy' => array(
|
4142 |
'version' => '0.252.0.0',
|
4143 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicy.php'
|
4144 |
),
|
4145 |
+
'Google\\Service\\ShoppingContent\\DatafeedstatusesCustomBatchResponseEntry' => array(
|
4146 |
'version' => '0.252.0.0',
|
4147 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedstatusesCustomBatchResponseEntry.php'
|
4148 |
),
|
4149 |
+
'Google\\Service\\ShoppingContent\\OrdersUpdateLineItemShippingDetailsRequest' => array(
|
4150 |
'version' => '0.252.0.0',
|
4151 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersUpdateLineItemShippingDetailsRequest.php'
|
4152 |
),
|
4153 |
+
'Google\\Service\\ShoppingContent\\ProductWeight' => array(
|
4154 |
'version' => '0.252.0.0',
|
4155 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductWeight.php'
|
4156 |
),
|
4157 |
+
'Google\\Service\\ShoppingContent\\OrdersCustomBatchRequestEntryRefundItemItem' => array(
|
4158 |
'version' => '0.252.0.0',
|
4159 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCustomBatchRequestEntryRefundItemItem.php'
|
4160 |
),
|
4161 |
+
'Google\\Service\\ShoppingContent\\Promotion' => array(
|
4162 |
'version' => '0.252.0.0',
|
4163 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Promotion.php'
|
4164 |
),
|
4165 |
+
'Google\\Service\\ShoppingContent\\LiaOnDisplayToOrderSettings' => array(
|
4166 |
'version' => '0.252.0.0',
|
4167 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiaOnDisplayToOrderSettings.php'
|
4168 |
),
|
4169 |
+
'Google\\Service\\ShoppingContent\\LocalinventoryCustomBatchRequestEntry' => array(
|
4170 |
'version' => '0.252.0.0',
|
4171 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LocalinventoryCustomBatchRequestEntry.php'
|
4172 |
),
|
4173 |
+
'Google\\Service\\ShoppingContent\\CutoffTime' => array(
|
4174 |
'version' => '0.252.0.0',
|
4175 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CutoffTime.php'
|
4176 |
),
|
4177 |
+
'Google\\Service\\ShoppingContent\\Order' => array(
|
4178 |
'version' => '0.252.0.0',
|
4179 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Order.php'
|
4180 |
),
|
4181 |
+
'Google\\Service\\ShoppingContent\\DatafeedStatusExample' => array(
|
4182 |
'version' => '0.252.0.0',
|
4183 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedStatusExample.php'
|
4184 |
),
|
4185 |
+
'Google\\Service\\ShoppingContent\\OrderreportsListDisbursementsResponse' => array(
|
4186 |
'version' => '0.252.0.0',
|
4187 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreportsListDisbursementsResponse.php'
|
4188 |
),
|
4189 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsCreateOrderReturnRequest' => array(
|
4190 |
'version' => '0.252.0.0',
|
4191 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsCreateOrderReturnRequest.php'
|
4192 |
),
|
4193 |
+
'Google\\Service\\ShoppingContent\\OrdersSetLineItemMetadataRequest' => array(
|
4194 |
'version' => '0.252.0.0',
|
4195 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersSetLineItemMetadataRequest.php'
|
4196 |
),
|
4197 |
+
'Google\\Service\\ShoppingContent\\MerchantOrderReturnItem' => array(
|
4198 |
'version' => '0.252.0.0',
|
4199 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/MerchantOrderReturnItem.php'
|
4200 |
),
|
4201 |
+
'Google\\Service\\ShoppingContent\\ProductstatusesCustomBatchResponse' => array(
|
4202 |
'version' => '0.252.0.0',
|
4203 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductstatusesCustomBatchResponse.php'
|
4204 |
),
|
4205 |
+
'Google\\Service\\ShoppingContent\\OrdersCustomBatchRequestEntryUpdateShipmentScheduledDeliveryDetails' => array(
|
4206 |
'version' => '0.252.0.0',
|
4207 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCustomBatchRequestEntryUpdateShipmentScheduledDeliveryDetails.php'
|
4208 |
),
|
4209 |
+
'Google\\Service\\ShoppingContent\\ListRepricingRuleReportsResponse' => array(
|
4210 |
'version' => '0.252.0.0',
|
4211 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListRepricingRuleReportsResponse.php'
|
4212 |
),
|
4213 |
+
'Google\\Service\\ShoppingContent\\OrderCustomerMarketingRightsInfo' => array(
|
4214 |
'version' => '0.252.0.0',
|
4215 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderCustomerMarketingRightsInfo.php'
|
4216 |
),
|
4217 |
+
'Google\\Service\\ShoppingContent\\AccountAutomaticImprovements' => array(
|
4218 |
'version' => '0.252.0.0',
|
4219 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountAutomaticImprovements.php'
|
4220 |
),
|
4221 |
+
'Google\\Service\\ShoppingContent\\DatafeedstatusesCustomBatchRequestEntry' => array(
|
4222 |
'version' => '0.252.0.0',
|
4223 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedstatusesCustomBatchRequestEntry.php'
|
4224 |
),
|
4225 |
+
'Google\\Service\\ShoppingContent\\TestOrderDeliveryDetails' => array(
|
4226 |
'version' => '0.252.0.0',
|
4227 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrderDeliveryDetails.php'
|
4228 |
),
|
4229 |
+
'Google\\Service\\ShoppingContent\\AccountstatusesCustomBatchResponse' => array(
|
4230 |
'version' => '0.252.0.0',
|
4231 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountstatusesCustomBatchResponse.php'
|
4232 |
),
|
4233 |
+
'Google\\Service\\ShoppingContent\\OrdersCancelLineItemRequest' => array(
|
4234 |
'version' => '0.252.0.0',
|
4235 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCancelLineItemRequest.php'
|
4236 |
),
|
4237 |
+
'Google\\Service\\ShoppingContent\\DatafeedstatusesListResponse' => array(
|
4238 |
'version' => '0.252.0.0',
|
4239 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedstatusesListResponse.php'
|
4240 |
),
|
4241 |
+
'Google\\Service\\ShoppingContent\\Price' => array(
|
4242 |
'version' => '0.252.0.0',
|
4243 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Price.php'
|
4244 |
),
|
4245 |
+
'Google\\Service\\ShoppingContent\\ListReturnPolicyOnlineResponse' => array(
|
4246 |
'version' => '0.252.0.0',
|
4247 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListReturnPolicyOnlineResponse.php'
|
4248 |
),
|
4249 |
+
'Google\\Service\\ShoppingContent\\ReportRow' => array(
|
4250 |
'version' => '0.252.0.0',
|
4251 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReportRow.php'
|
4252 |
),
|
4253 |
+
'Google\\Service\\ShoppingContent\\RegionalInventory' => array(
|
4254 |
'version' => '0.252.0.0',
|
4255 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionalInventory.php'
|
4256 |
),
|
4257 |
+
'Google\\Service\\ShoppingContent\\AccountAddress' => array(
|
4258 |
'version' => '0.252.0.0',
|
4259 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountAddress.php'
|
4260 |
),
|
4261 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemAdjustment' => array(
|
4262 |
'version' => '0.252.0.0',
|
4263 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemAdjustment.php'
|
4264 |
),
|
4265 |
+
'Google\\Service\\ShoppingContent\\OrdersRefundItemResponse' => array(
|
4266 |
'version' => '0.252.0.0',
|
4267 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersRefundItemResponse.php'
|
4268 |
),
|
4269 |
+
'Google\\Service\\ShoppingContent\\ProductUnitPricingMeasure' => array(
|
4270 |
'version' => '0.252.0.0',
|
4271 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductUnitPricingMeasure.php'
|
4272 |
),
|
4273 |
+
'Google\\Service\\ShoppingContent\\OrdersInStoreRefundLineItemRequest' => array(
|
4274 |
'version' => '0.252.0.0',
|
4275 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersInStoreRefundLineItemRequest.php'
|
4276 |
),
|
4277 |
+
'Google\\Service\\ShoppingContent\\ReturnpolicyCustomBatchResponseEntry' => array(
|
4278 |
'version' => '0.252.0.0',
|
4279 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnpolicyCustomBatchResponseEntry.php'
|
4280 |
),
|
4281 |
+
'Google\\Service\\ShoppingContent\\OrdersReturnRefundLineItemRequest' => array(
|
4282 |
'version' => '0.252.0.0',
|
4283 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersReturnRefundLineItemRequest.php'
|
4284 |
),
|
4285 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsPartialRefund' => array(
|
4286 |
'version' => '0.252.0.0',
|
4287 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsPartialRefund.php'
|
4288 |
),
|
4289 |
+
'Google\\Service\\ShoppingContent\\Css' => array(
|
4290 |
'version' => '0.252.0.0',
|
4291 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Css.php'
|
4292 |
),
|
4293 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsCustomBatchResponse' => array(
|
4294 |
'version' => '0.252.0.0',
|
4295 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsCustomBatchResponse.php'
|
4296 |
),
|
4297 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicyOnlineReturnReasonCategoryInfo' => array(
|
4298 |
'version' => '0.252.0.0',
|
4299 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicyOnlineReturnReasonCategoryInfo.php'
|
4300 |
),
|
4301 |
+
'Google\\Service\\ShoppingContent\\OrdersAcknowledgeResponse' => array(
|
4302 |
'version' => '0.252.0.0',
|
4303 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersAcknowledgeResponse.php'
|
4304 |
),
|
4305 |
+
'Google\\Service\\ShoppingContent\\AccountItemUpdatesSettings' => array(
|
4306 |
'version' => '0.252.0.0',
|
4307 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountItemUpdatesSettings.php'
|
4308 |
),
|
4309 |
+
'Google\\Service\\ShoppingContent\\FreeListingsProgramStatus' => array(
|
4310 |
'version' => '0.252.0.0',
|
4311 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/FreeListingsProgramStatus.php'
|
4312 |
),
|
4313 |
+
'Google\\Service\\ShoppingContent\\OrderPromotion' => array(
|
4314 |
'version' => '0.252.0.0',
|
4315 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderPromotion.php'
|
4316 |
),
|
4317 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsRefundOperation' => array(
|
4318 |
'version' => '0.252.0.0',
|
4319 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsRefundOperation.php'
|
4320 |
),
|
4321 |
+
'Google\\Service\\ShoppingContent\\PostalCodeGroup' => array(
|
4322 |
'version' => '0.252.0.0',
|
4323 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PostalCodeGroup.php'
|
4324 |
),
|
4325 |
+
'Google\\Service\\ShoppingContent\\AccountsLinkResponse' => array(
|
4326 |
'version' => '0.252.0.0',
|
4327 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsLinkResponse.php'
|
4328 |
),
|
4329 |
'Google\\Service\\ShoppingContent\\OrderinvoicesCreateChargeInvoiceRequest' => array(
|
4330 |
'version' => '0.252.0.0',
|
4331 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCreateChargeInvoiceRequest.php'
|
4332 |
),
|
4333 |
+
'Google\\Service\\ShoppingContent\\RequestPhoneVerificationResponse' => array(
|
4334 |
'version' => '0.252.0.0',
|
4335 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RequestPhoneVerificationResponse.php'
|
4336 |
),
|
4337 |
+
'Google\\Service\\ShoppingContent\\AccountsLinkRequest' => array(
|
4338 |
'version' => '0.252.0.0',
|
4339 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsLinkRequest.php'
|
4340 |
),
|
4341 |
+
'Google\\Service\\ShoppingContent\\AccountReturnCarrier' => array(
|
4342 |
'version' => '0.252.0.0',
|
4343 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountReturnCarrier.php'
|
4344 |
),
|
4345 |
+
'Google\\Service\\ShoppingContent\\ProductShippingWeight' => array(
|
4346 |
'version' => '0.252.0.0',
|
4347 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductShippingWeight.php'
|
4348 |
),
|
4349 |
+
'Google\\Service\\ShoppingContent\\RegionalinventoryCustomBatchResponse' => array(
|
4350 |
'version' => '0.252.0.0',
|
4351 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RegionalinventoryCustomBatchResponse.php'
|
4352 |
),
|
4353 |
+
'Google\\Service\\ShoppingContent\\OrdersCreateTestOrderResponse' => array(
|
4354 |
'version' => '0.252.0.0',
|
4355 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCreateTestOrderResponse.php'
|
4356 |
),
|
4357 |
+
'Google\\Service\\ShoppingContent\\LiasettingsRequestGmbAccessResponse' => array(
|
4358 |
'version' => '0.252.0.0',
|
4359 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsRequestGmbAccessResponse.php'
|
4360 |
),
|
4361 |
+
'Google\\Service\\ShoppingContent\\AccountImageImprovementsSettings' => array(
|
4362 |
'version' => '0.252.0.0',
|
4363 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountImageImprovementsSettings.php'
|
4364 |
),
|
4365 |
+
'Google\\Service\\ShoppingContent\\TestOrderPickupDetails' => array(
|
4366 |
'version' => '0.252.0.0',
|
4367 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrderPickupDetails.php'
|
4368 |
),
|
4369 |
+
'Google\\Service\\ShoppingContent\\GmbAccounts' => array(
|
4370 |
'version' => '0.252.0.0',
|
4371 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/GmbAccounts.php'
|
4372 |
),
|
4373 |
+
'Google\\Service\\ShoppingContent\\DatafeedsFetchNowResponse' => array(
|
4374 |
'version' => '0.252.0.0',
|
4375 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedsFetchNowResponse.php'
|
4376 |
),
|
4377 |
+
'Google\\Service\\ShoppingContent\\OrderLineItemShippingDetailsMethod' => array(
|
4378 |
'version' => '0.252.0.0',
|
4379 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderLineItemShippingDetailsMethod.php'
|
4380 |
),
|
4381 |
+
'Google\\Service\\ShoppingContent\\AccountsCustomBatchResponseEntry' => array(
|
4382 |
'version' => '0.252.0.0',
|
4383 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsCustomBatchResponseEntry.php'
|
4384 |
),
|
4385 |
+
'Google\\Service\\ShoppingContent\\ReturnaddressCustomBatchResponseEntry' => array(
|
4386 |
'version' => '0.252.0.0',
|
4387 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnaddressCustomBatchResponseEntry.php'
|
4388 |
),
|
4389 |
+
'Google\\Service\\ShoppingContent\\ShippingSettings' => array(
|
4390 |
'version' => '0.252.0.0',
|
4391 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingSettings.php'
|
4392 |
),
|
4393 |
+
'Google\\Service\\ShoppingContent\\DeliveryTime' => array(
|
4394 |
'version' => '0.252.0.0',
|
4395 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DeliveryTime.php'
|
4396 |
),
|
4397 |
+
'Google\\Service\\ShoppingContent\\DatafeedFetchSchedule' => array(
|
4398 |
'version' => '0.252.0.0',
|
4399 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedFetchSchedule.php'
|
4400 |
),
|
4401 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicyOnline' => array(
|
4402 |
'version' => '0.252.0.0',
|
4403 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicyOnline.php'
|
4404 |
),
|
4405 |
+
'Google\\Service\\ShoppingContent\\DatafeedStatus' => array(
|
4406 |
'version' => '0.252.0.0',
|
4407 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedStatus.php'
|
4408 |
),
|
4409 |
+
'Google\\Service\\ShoppingContent\\OrdersCreateTestReturnResponse' => array(
|
4410 |
'version' => '0.252.0.0',
|
4411 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCreateTestReturnResponse.php'
|
4412 |
),
|
4413 |
+
'Google\\Service\\ShoppingContent\\ReturnAddressAddress' => array(
|
4414 |
'version' => '0.252.0.0',
|
4415 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnAddressAddress.php'
|
4416 |
),
|
4417 |
+
'Google\\Service\\ShoppingContent\\PubsubNotificationSettings' => array(
|
4418 |
'version' => '0.252.0.0',
|
4419 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PubsubNotificationSettings.php'
|
4420 |
),
|
4421 |
+
'Google\\Service\\ShoppingContent\\Installment' => array(
|
4422 |
'version' => '0.252.0.0',
|
4423 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Installment.php'
|
4424 |
),
|
4425 |
+
'Google\\Service\\ShoppingContent\\ReturnaddressCustomBatchResponse' => array(
|
4426 |
'version' => '0.252.0.0',
|
4427 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnaddressCustomBatchResponse.php'
|
4428 |
),
|
4429 |
+
'Google\\Service\\ShoppingContent\\ListAccountLabelsResponse' => array(
|
4430 |
'version' => '0.252.0.0',
|
4431 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListAccountLabelsResponse.php'
|
4432 |
),
|
4433 |
+
'Google\\Service\\ShoppingContent\\LiasettingsCustomBatchResponseEntry' => array(
|
4434 |
'version' => '0.252.0.0',
|
4435 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsCustomBatchResponseEntry.php'
|
4436 |
),
|
4437 |
+
'Google\\Service\\ShoppingContent\\ActivateBuyOnGoogleProgramRequest' => array(
|
4438 |
'version' => '0.252.0.0',
|
4439 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ActivateBuyOnGoogleProgramRequest.php'
|
4440 |
),
|
4441 |
+
'Google\\Service\\ShoppingContent\\Weight' => array(
|
4442 |
'version' => '0.252.0.0',
|
4443 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Weight.php'
|
4444 |
),
|
4445 |
+
'Google\\Service\\ShoppingContent\\AccounttaxCustomBatchResponseEntry' => array(
|
4446 |
'version' => '0.252.0.0',
|
4447 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccounttaxCustomBatchResponseEntry.php'
|
4448 |
),
|
4449 |
+
'Google\\Service\\ShoppingContent\\OrdersCreateTestReturnRequest' => array(
|
4450 |
'version' => '0.252.0.0',
|
4451 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCreateTestReturnRequest.php'
|
4452 |
),
|
4453 |
+
'Google\\Service\\ShoppingContent\\OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo' => array(
|
4454 |
'version' => '0.252.0.0',
|
4455 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCustomBatchRequestEntryShipLineItemsShipmentInfo.php'
|
4456 |
),
|
4457 |
+
'Google\\Service\\ShoppingContent\\DatafeedsCustomBatchResponseEntry' => array(
|
4458 |
'version' => '0.252.0.0',
|
4459 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedsCustomBatchResponseEntry.php'
|
4460 |
),
|
4461 |
+
'Google\\Service\\ShoppingContent\\AccountStatusProducts' => array(
|
4462 |
'version' => '0.252.0.0',
|
4463 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountStatusProducts.php'
|
4464 |
),
|
4465 |
+
'Google\\Service\\ShoppingContent\\OrderOrderAnnotation' => array(
|
4466 |
'version' => '0.252.0.0',
|
4467 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderOrderAnnotation.php'
|
4468 |
),
|
4469 |
+
'Google\\Service\\ShoppingContent\\OrderReportTransaction' => array(
|
4470 |
'version' => '0.252.0.0',
|
4471 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderReportTransaction.php'
|
4472 |
),
|
4473 |
+
'Google\\Service\\ShoppingContent\\Value' => array(
|
4474 |
'version' => '0.252.0.0',
|
4475 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Value.php'
|
4476 |
),
|
4477 |
+
'Google\\Service\\ShoppingContent\\OrderReportDisbursement' => array(
|
4478 |
'version' => '0.252.0.0',
|
4479 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderReportDisbursement.php'
|
4480 |
),
|
4481 |
+
'Google\\Service\\ShoppingContent\\LiasettingsCustomBatchResponse' => array(
|
4482 |
'version' => '0.252.0.0',
|
4483 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsCustomBatchResponse.php'
|
4484 |
),
|
4485 |
+
'Google\\Service\\ShoppingContent\\Datafeed' => array(
|
4486 |
'version' => '0.252.0.0',
|
4487 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Datafeed.php'
|
4488 |
),
|
4489 |
+
'Google\\Service\\ShoppingContent\\OrdersUpdateShipmentRequest' => array(
|
4490 |
'version' => '0.252.0.0',
|
4491 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersUpdateShipmentRequest.php'
|
4492 |
),
|
4493 |
+
'Google\\Service\\ShoppingContent\\LocalInventory' => array(
|
4494 |
'version' => '0.252.0.0',
|
4495 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LocalInventory.php'
|
4496 |
),
|
4497 |
+
'Google\\Service\\ShoppingContent\\AccountAdsLink' => array(
|
4498 |
'version' => '0.252.0.0',
|
4499 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountAdsLink.php'
|
4500 |
),
|
4501 |
+
'Google\\Service\\ShoppingContent\\OrdersAdvanceTestOrderResponse' => array(
|
4502 |
'version' => '0.252.0.0',
|
4503 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersAdvanceTestOrderResponse.php'
|
4504 |
),
|
4505 |
+
'Google\\Service\\ShoppingContent\\SearchRequest' => array(
|
4506 |
'version' => '0.252.0.0',
|
4507 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SearchRequest.php'
|
4508 |
),
|
4509 |
+
'Google\\Service\\ShoppingContent\\PickupCarrierService' => array(
|
4510 |
'version' => '0.252.0.0',
|
4511 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PickupCarrierService.php'
|
4512 |
),
|
4513 |
+
'Google\\Service\\ShoppingContent\\TransitTableTransitTimeRow' => array(
|
4514 |
'version' => '0.252.0.0',
|
4515 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TransitTableTransitTimeRow.php'
|
4516 |
),
|
4517 |
+
'Google\\Service\\ShoppingContent\\CollectionStatusDestinationStatus' => array(
|
4518 |
'version' => '0.252.0.0',
|
4519 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CollectionStatusDestinationStatus.php'
|
4520 |
),
|
4521 |
+
'Google\\Service\\ShoppingContent\\PosInventoryRequest' => array(
|
4522 |
'version' => '0.252.0.0',
|
4523 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosInventoryRequest.php'
|
4524 |
),
|
4525 |
+
'Google\\Service\\ShoppingContent\\LinkService' => array(
|
4526 |
'version' => '0.252.0.0',
|
4527 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LinkService.php'
|
4528 |
),
|
4529 |
+
'Google\\Service\\ShoppingContent\\OrderCustomer' => array(
|
4530 |
'version' => '0.252.0.0',
|
4531 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderCustomer.php'
|
4532 |
),
|
4533 |
+
'Google\\Service\\ShoppingContent\\TestOrderPickupDetailsPickupPerson' => array(
|
4534 |
'version' => '0.252.0.0',
|
4535 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrderPickupDetailsPickupPerson.php'
|
4536 |
),
|
4537 |
+
'Google\\Service\\ShoppingContent\\RepricingProductReportBuyboxWinningProductStats' => array(
|
4538 |
'version' => '0.252.0.0',
|
4539 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingProductReportBuyboxWinningProductStats.php'
|
4540 |
),
|
4541 |
+
'Google\\Service\\ShoppingContent\\LiasettingsListPosDataProvidersResponse' => array(
|
4542 |
'version' => '0.252.0.0',
|
4543 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsListPosDataProvidersResponse.php'
|
4544 |
),
|
4545 |
+
'Google\\Service\\ShoppingContent\\SettlementTransactionAmount' => array(
|
4546 |
'version' => '0.252.0.0',
|
4547 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementTransactionAmount.php'
|
4548 |
),
|
4549 |
+
'Google\\Service\\ShoppingContent\\TestOrderLineItemProduct' => array(
|
4550 |
'version' => '0.252.0.0',
|
4551 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrderLineItemProduct.php'
|
4552 |
),
|
4553 |
+
'Google\\Service\\ShoppingContent\\ProductstatusesListResponse' => array(
|
4554 |
'version' => '0.252.0.0',
|
4555 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ProductstatusesListResponse.php'
|
4556 |
),
|
4557 |
+
'Google\\Service\\ShoppingContent\\OrdersRejectReturnLineItemResponse' => array(
|
4558 |
'version' => '0.252.0.0',
|
4559 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersRejectReturnLineItemResponse.php'
|
4560 |
),
|
4561 |
+
'Google\\Service\\ShoppingContent\\OrderreturnsListResponse' => array(
|
4562 |
'version' => '0.252.0.0',
|
4563 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderreturnsListResponse.php'
|
4564 |
),
|
4565 |
+
'Google\\Service\\ShoppingContent\\LiasettingsSetPosDataProviderResponse' => array(
|
4566 |
'version' => '0.252.0.0',
|
4567 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiasettingsSetPosDataProviderResponse.php'
|
4568 |
),
|
4569 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleStatsBasedRule' => array(
|
4570 |
'version' => '0.252.0.0',
|
4571 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleStatsBasedRule.php'
|
4572 |
),
|
4573 |
+
'Google\\Service\\ShoppingContent\\OrdersUpdateMerchantOrderIdResponse' => array(
|
4574 |
'version' => '0.252.0.0',
|
4575 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersUpdateMerchantOrderIdResponse.php'
|
4576 |
),
|
4577 |
+
'Google\\Service\\ShoppingContent\\AccountsUpdateLabelsResponse' => array(
|
4578 |
'version' => '0.252.0.0',
|
4579 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsUpdateLabelsResponse.php'
|
4580 |
),
|
4581 |
+
'Google\\Service\\ShoppingContent\\ReturnShippingLabel' => array(
|
4582 |
'version' => '0.252.0.0',
|
4583 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnShippingLabel.php'
|
4584 |
),
|
4585 |
+
'Google\\Service\\ShoppingContent\\AccountsListResponse' => array(
|
4586 |
'version' => '0.252.0.0',
|
4587 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsListResponse.php'
|
4588 |
),
|
4589 |
+
'Google\\Service\\ShoppingContent\\OrdersReturnRefundLineItemResponse' => array(
|
4590 |
'version' => '0.252.0.0',
|
4591 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersReturnRefundLineItemResponse.php'
|
4592 |
),
|
4593 |
+
'Google\\Service\\ShoppingContent\\WarehouseCutoffTime' => array(
|
4594 |
'version' => '0.252.0.0',
|
4595 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/WarehouseCutoffTime.php'
|
4596 |
),
|
4597 |
+
'Google\\Service\\ShoppingContent\\SettlementTransaction' => array(
|
4598 |
'version' => '0.252.0.0',
|
4599 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementTransaction.php'
|
4600 |
),
|
4601 |
+
'Google\\Service\\ShoppingContent\\OrderPickupDetails' => array(
|
4602 |
'version' => '0.252.0.0',
|
4603 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderPickupDetails.php'
|
4604 |
),
|
4605 |
+
'Google\\Service\\ShoppingContent\\AccountsCustomBatchRequestEntryLinkRequest' => array(
|
4606 |
'version' => '0.252.0.0',
|
4607 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsCustomBatchRequestEntryLinkRequest.php'
|
4608 |
),
|
4609 |
+
'Google\\Service\\ShoppingContent\\OrdersAcknowledgeRequest' => array(
|
4610 |
'version' => '0.252.0.0',
|
4611 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersAcknowledgeRequest.php'
|
4612 |
),
|
4613 |
+
'Google\\Service\\ShoppingContent\\LoyaltyPoints' => array(
|
4614 |
'version' => '0.252.0.0',
|
4615 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LoyaltyPoints.php'
|
4616 |
),
|
4617 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleEffectiveTimeFixedTimePeriod' => array(
|
4618 |
'version' => '0.252.0.0',
|
4619 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleEffectiveTimeFixedTimePeriod.php'
|
4620 |
),
|
4621 |
+
'Google\\Service\\ShoppingContent\\LiaInventorySettings' => array(
|
4622 |
'version' => '0.252.0.0',
|
4623 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiaInventorySettings.php'
|
4624 |
),
|
4625 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicyOnlinePolicy' => array(
|
4626 |
'version' => '0.252.0.0',
|
4627 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicyOnlinePolicy.php'
|
4628 |
),
|
4629 |
+
'Google\\Service\\ShoppingContent\\CarriersCarrier' => array(
|
4630 |
'version' => '0.252.0.0',
|
4631 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CarriersCarrier.php'
|
4632 |
),
|
4633 |
+
'Google\\Service\\ShoppingContent\\LiaPosDataProvider' => array(
|
4634 |
'version' => '0.252.0.0',
|
4635 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/LiaPosDataProvider.php'
|
4636 |
),
|
4637 |
+
'Google\\Service\\ShoppingContent\\DeliveryArea' => array(
|
4638 |
'version' => '0.252.0.0',
|
4639 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DeliveryArea.php'
|
4640 |
),
|
4641 |
+
'Google\\Service\\ShoppingContent\\PosSale' => array(
|
4642 |
'version' => '0.252.0.0',
|
4643 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosSale.php'
|
4644 |
),
|
4645 |
+
'Google\\Service\\ShoppingContent\\HolidayCutoff' => array(
|
4646 |
'version' => '0.252.0.0',
|
4647 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/HolidayCutoff.php'
|
4648 |
),
|
4649 |
+
'Google\\Service\\ShoppingContent\\VerifyPhoneNumberResponse' => array(
|
4650 |
'version' => '0.252.0.0',
|
4651 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/VerifyPhoneNumberResponse.php'
|
4652 |
),
|
4653 |
+
'Google\\Service\\ShoppingContent\\AccountstatusesCustomBatchRequest' => array(
|
4654 |
'version' => '0.252.0.0',
|
4655 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountstatusesCustomBatchRequest.php'
|
4656 |
+
),
|
4657 |
+
'Google\\Service\\ShoppingContent\\AccountGoogleMyBusinessLink' => array(
|
4658 |
+
'version' => '0.252.0.0',
|
4659 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountGoogleMyBusinessLink.php'
|
4660 |
),
|
4661 |
'Google\\Service\\ShoppingContent\\AccounttaxCustomBatchResponse' => array(
|
4662 |
'version' => '0.252.0.0',
|
4663 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccounttaxCustomBatchResponse.php'
|
4664 |
),
|
4665 |
+
'Google\\Service\\ShoppingContent\\OrderRefund' => array(
|
4666 |
'version' => '0.252.0.0',
|
4667 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderRefund.php'
|
4668 |
),
|
4669 |
+
'Google\\Service\\ShoppingContent\\AccountBusinessInformation' => array(
|
4670 |
'version' => '0.252.0.0',
|
4671 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountBusinessInformation.php'
|
4672 |
),
|
4673 |
+
'Google\\Service\\ShoppingContent\\TimePeriod' => array(
|
4674 |
'version' => '0.252.0.0',
|
4675 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TimePeriod.php'
|
4676 |
),
|
4677 |
+
'Google\\Service\\ShoppingContent\\OrdersCancelTestOrderByCustomerResponse' => array(
|
4678 |
'version' => '0.252.0.0',
|
4679 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCancelTestOrderByCustomerResponse.php'
|
4680 |
),
|
4681 |
+
'Google\\Service\\ShoppingContent\\UnitInvoice' => array(
|
4682 |
'version' => '0.252.0.0',
|
4683 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/UnitInvoice.php'
|
4684 |
),
|
4685 |
+
'Google\\Service\\ShoppingContent\\OrderinvoicesCreateRefundInvoiceRequest' => array(
|
4686 |
'version' => '0.252.0.0',
|
4687 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrderinvoicesCreateRefundInvoiceRequest.php'
|
4688 |
),
|
4689 |
+
'Google\\Service\\ShoppingContent\\ReturnPolicyOnlineRestockingFee' => array(
|
4690 |
'version' => '0.252.0.0',
|
4691 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnPolicyOnlineRestockingFee.php'
|
4692 |
),
|
4693 |
+
'Google\\Service\\ShoppingContent\\MonetaryAmount' => array(
|
4694 |
'version' => '0.252.0.0',
|
4695 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/MonetaryAmount.php'
|
4696 |
),
|
4697 |
+
'Google\\Service\\ShoppingContent\\RepricingRuleRestriction' => array(
|
4698 |
'version' => '0.252.0.0',
|
4699 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/RepricingRuleRestriction.php'
|
4700 |
),
|
4701 |
+
'Google\\Service\\ShoppingContent\\ReturnpolicyCustomBatchRequest' => array(
|
4702 |
'version' => '0.252.0.0',
|
4703 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ReturnpolicyCustomBatchRequest.php'
|
4704 |
),
|
4705 |
+
'Google\\Service\\ShoppingContent\\OrdersGetByMerchantOrderIdResponse' => array(
|
4706 |
'version' => '0.252.0.0',
|
4707 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersGetByMerchantOrderIdResponse.php'
|
4708 |
),
|
4709 |
+
'Google\\Service\\ShoppingContent\\PosSaleResponse' => array(
|
4710 |
'version' => '0.252.0.0',
|
4711 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosSaleResponse.php'
|
4712 |
),
|
4713 |
+
'Google\\Service\\ShoppingContent\\AccountsUpdateLabelsRequest' => array(
|
4714 |
'version' => '0.252.0.0',
|
4715 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/AccountsUpdateLabelsRequest.php'
|
4716 |
),
|
4717 |
+
'Google\\Service\\ShoppingContent\\VerifyPhoneNumberRequest' => array(
|
4718 |
'version' => '0.252.0.0',
|
4719 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/VerifyPhoneNumberRequest.php'
|
4720 |
),
|
4721 |
'Google\\Service\\ShoppingContent\\BuyOnGoogleProgramStatus' => array(
|
4722 |
'version' => '0.252.0.0',
|
4723 |
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/BuyOnGoogleProgramStatus.php'
|
4724 |
),
|
4725 |
+
'Google\\Service\\ShoppingContent\\MerchantOrderReturn' => array(
|
4726 |
'version' => '0.252.0.0',
|
4727 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/MerchantOrderReturn.php'
|
4728 |
),
|
4729 |
+
'Google\\Service\\ShoppingContent\\CaptureOrderResponse' => array(
|
4730 |
'version' => '0.252.0.0',
|
4731 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CaptureOrderResponse.php'
|
4732 |
),
|
4733 |
+
'Google\\Service\\ShoppingContent\\ShippingsettingsGetSupportedPickupServicesResponse' => array(
|
4734 |
'version' => '0.252.0.0',
|
4735 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ShippingsettingsGetSupportedPickupServicesResponse.php'
|
4736 |
),
|
4737 |
+
'Google\\Service\\ShoppingContent\\TestOrderLineItem' => array(
|
4738 |
'version' => '0.252.0.0',
|
4739 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/TestOrderLineItem.php'
|
4740 |
),
|
4741 |
+
'Google\\Service\\ShoppingContent\\OrdersCancelTestOrderByCustomerRequest' => array(
|
4742 |
'version' => '0.252.0.0',
|
4743 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersCancelTestOrderByCustomerRequest.php'
|
4744 |
),
|
4745 |
+
'Google\\Service\\ShoppingContent\\PosDataProviders' => array(
|
4746 |
'version' => '0.252.0.0',
|
4747 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosDataProviders.php'
|
4748 |
),
|
4749 |
+
'Google\\Service\\ShoppingContent\\ListCollectionsResponse' => array(
|
4750 |
'version' => '0.252.0.0',
|
4751 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/ListCollectionsResponse.php'
|
4752 |
),
|
4753 |
+
'Google\\Service\\ShoppingContent\\OrdersRefundOrderRequest' => array(
|
4754 |
'version' => '0.252.0.0',
|
4755 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/OrdersRefundOrderRequest.php'
|
4756 |
),
|
4757 |
+
'Google\\Service\\ShoppingContent\\Account' => array(
|
4758 |
'version' => '0.252.0.0',
|
4759 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/Account.php'
|
4760 |
),
|
4761 |
+
'Google\\Service\\ShoppingContent\\PosCustomBatchResponseEntry' => array(
|
4762 |
'version' => '0.252.0.0',
|
4763 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosCustomBatchResponseEntry.php'
|
4764 |
),
|
4765 |
+
'Google\\Service\\ShoppingContent\\MinimumOrderValueTableStoreCodeSetWithMov' => array(
|
4766 |
'version' => '0.252.0.0',
|
4767 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/MinimumOrderValueTableStoreCodeSetWithMov.php'
|
4768 |
),
|
4769 |
+
'Google\\Service\\ShoppingContent\\PosCustomBatchResponse' => array(
|
4770 |
'version' => '0.252.0.0',
|
4771 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/PosCustomBatchResponse.php'
|
4772 |
),
|
4773 |
+
'Google\\Service\\ShoppingContent\\SettlementReport' => array(
|
4774 |
'version' => '0.252.0.0',
|
4775 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/SettlementReport.php'
|
4776 |
),
|
4777 |
+
'Google\\Service\\ShoppingContent\\CollectionStatus' => array(
|
4778 |
'version' => '0.252.0.0',
|
4779 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/CollectionStatus.php'
|
4780 |
),
|
4781 |
+
'Google\\Service\\ShoppingContent\\DatafeedsCustomBatchRequestEntry' => array(
|
4782 |
'version' => '0.252.0.0',
|
4783 |
+
'path' => $vendorDir . '/google/apiclient-services/src/ShoppingContent/DatafeedsCustomBatchRequestEntry.php'
|
4784 |
),
|
4785 |
+
'Google\\Protobuf\\SourceContext' => array(
|
4786 |
+
'version' => '3.21.1.0',
|
4787 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/SourceContext.php'
|
4788 |
),
|
4789 |
+
'Google\\Protobuf\\Int64Value' => array(
|
4790 |
+
'version' => '3.21.1.0',
|
4791 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Int64Value.php'
|
4792 |
),
|
4793 |
+
'Google\\Protobuf\\EnumValueDescriptor' => array(
|
4794 |
+
'version' => '3.21.1.0',
|
4795 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/EnumValueDescriptor.php'
|
|
|
|
|
|
|
|
|
4796 |
),
|
4797 |
+
'Google\\Protobuf\\Descriptor' => array(
|
4798 |
+
'version' => '3.21.1.0',
|
4799 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Descriptor.php'
|
4800 |
),
|
4801 |
+
'Google\\Protobuf\\ListValue' => array(
|
4802 |
'version' => '3.21.1.0',
|
4803 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/ListValue.php'
|
4804 |
),
|
4805 |
+
'Google\\Protobuf\\GPBEmpty' => array(
|
4806 |
'version' => '3.21.1.0',
|
4807 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/GPBEmpty.php'
|
4808 |
),
|
4809 |
+
'Google\\Protobuf\\Field' => array(
|
4810 |
'version' => '3.21.1.0',
|
4811 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field.php'
|
4812 |
),
|
4813 |
+
'Google\\Protobuf\\Type' => array(
|
4814 |
'version' => '3.21.1.0',
|
4815 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Type.php'
|
4816 |
),
|
4817 |
+
'Google\\Protobuf\\Field\\Kind' => array(
|
4818 |
'version' => '3.21.1.0',
|
4819 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field/Kind.php'
|
4820 |
),
|
4821 |
+
'Google\\Protobuf\\Field\\Cardinality' => array(
|
4822 |
'version' => '3.21.1.0',
|
4823 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field/Cardinality.php'
|
4824 |
),
|
4825 |
+
'Google\\Protobuf\\DescriptorPool' => array(
|
4826 |
'version' => '3.21.1.0',
|
4827 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/DescriptorPool.php'
|
4828 |
),
|
4829 |
+
'Google\\Protobuf\\EnumValue' => array(
|
4830 |
'version' => '3.21.1.0',
|
4831 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/EnumValue.php'
|
4832 |
),
|
4833 |
+
'Google\\Protobuf\\UInt64Value' => array(
|
4834 |
'version' => '3.21.1.0',
|
4835 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/UInt64Value.php'
|
4836 |
),
|
4837 |
+
'Google\\Protobuf\\UInt32Value' => array(
|
4838 |
'version' => '3.21.1.0',
|
4839 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/UInt32Value.php'
|
4840 |
),
|
4841 |
+
'Google\\Protobuf\\FieldDescriptor' => array(
|
4842 |
'version' => '3.21.1.0',
|
4843 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/FieldDescriptor.php'
|
4844 |
),
|
4845 |
+
'Google\\Protobuf\\EnumDescriptor' => array(
|
4846 |
'version' => '3.21.1.0',
|
4847 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/EnumDescriptor.php'
|
4848 |
),
|
4849 |
'Google\\Protobuf\\Field_Cardinality' => array(
|
4850 |
'version' => '3.21.1.0',
|
4851 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field_Cardinality.php'
|
4852 |
),
|
4853 |
+
'Google\\Protobuf\\Struct' => array(
|
4854 |
'version' => '3.21.1.0',
|
4855 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Struct.php'
|
4856 |
),
|
4857 |
+
'Google\\Protobuf\\Field_Kind' => array(
|
4858 |
'version' => '3.21.1.0',
|
4859 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Field_Kind.php'
|
4860 |
),
|
4861 |
+
'Google\\Protobuf\\Api' => array(
|
4862 |
'version' => '3.21.1.0',
|
4863 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Api.php'
|
4864 |
),
|
4865 |
+
'Google\\Protobuf\\StringValue' => array(
|
4866 |
'version' => '3.21.1.0',
|
4867 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/StringValue.php'
|
4868 |
),
|
4869 |
+
'Google\\Protobuf\\NullValue' => array(
|
4870 |
'version' => '3.21.1.0',
|
4871 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/NullValue.php'
|
4872 |
),
|
4873 |
+
'Google\\Protobuf\\Mixin' => array(
|
4874 |
'version' => '3.21.1.0',
|
4875 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Mixin.php'
|
4876 |
),
|
4877 |
+
'Google\\Protobuf\\Duration' => array(
|
4878 |
'version' => '3.21.1.0',
|
4879 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Duration.php'
|
4880 |
),
|
4881 |
+
'Google\\Protobuf\\Internal\\SourceCodeInfo\\Location' => array(
|
4882 |
'version' => '3.21.1.0',
|
4883 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php'
|
4884 |
),
|
4885 |
+
'Google\\Protobuf\\Internal\\GPBJsonWire' => array(
|
4886 |
'version' => '3.21.1.0',
|
4887 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBJsonWire.php'
|
4888 |
),
|
4889 |
+
'Google\\Protobuf\\Internal\\MessageBuilderContext' => array(
|
4890 |
'version' => '3.21.1.0',
|
4891 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MessageBuilderContext.php'
|
4892 |
+
),
|
4893 |
+
'Google\\Protobuf\\Internal\\FieldOptions_CType' => array(
|
4894 |
+
'version' => '3.21.1.0',
|
4895 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_CType.php'
|
4896 |
),
|
4897 |
'Google\\Protobuf\\Internal\\RawInputStream' => array(
|
4898 |
'version' => '3.21.1.0',
|
4899 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RawInputStream.php'
|
4900 |
),
|
4901 |
+
'Google\\Protobuf\\Internal\\UninterpretedOption_NamePart' => array(
|
4902 |
'version' => '3.21.1.0',
|
4903 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php'
|
4904 |
),
|
4905 |
+
'Google\\Protobuf\\Internal\\Descriptor' => array(
|
4906 |
'version' => '3.21.1.0',
|
4907 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/Descriptor.php'
|
4908 |
),
|
4909 |
+
'Google\\Protobuf\\Internal\\GPBWire' => array(
|
4910 |
'version' => '3.21.1.0',
|
4911 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBWire.php'
|
4912 |
),
|
4913 |
+
'Google\\Protobuf\\Internal\\FieldDescriptorProto' => array(
|
4914 |
'version' => '3.21.1.0',
|
4915 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto.php'
|
4916 |
),
|
4917 |
+
'Google\\Protobuf\\Internal\\GeneratedCodeInfo' => array(
|
4918 |
'version' => '3.21.1.0',
|
4919 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo.php'
|
4920 |
),
|
4921 |
+
'Google\\Protobuf\\Internal\\OneofField' => array(
|
4922 |
'version' => '3.21.1.0',
|
4923 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/OneofField.php'
|
4924 |
),
|
4925 |
+
'Google\\Protobuf\\Internal\\CodedOutputStream' => array(
|
4926 |
'version' => '3.21.1.0',
|
4927 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/CodedOutputStream.php'
|
4928 |
),
|
4929 |
+
'Google\\Protobuf\\Internal\\OneofOptions' => array(
|
4930 |
'version' => '3.21.1.0',
|
4931 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/OneofOptions.php'
|
4932 |
),
|
4933 |
+
'Google\\Protobuf\\Internal\\EnumOptions' => array(
|
4934 |
'version' => '3.21.1.0',
|
4935 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumOptions.php'
|
4936 |
),
|
4937 |
+
'Google\\Protobuf\\Internal\\FileOptions\\OptimizeMode' => array(
|
4938 |
'version' => '3.21.1.0',
|
4939 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php'
|
4940 |
),
|
4941 |
+
'Google\\Protobuf\\Internal\\OneofDescriptorProto' => array(
|
4942 |
'version' => '3.21.1.0',
|
4943 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptorProto.php'
|
4944 |
),
|
4945 |
+
'Google\\Protobuf\\Internal\\EnumValueDescriptorProto' => array(
|
4946 |
'version' => '3.21.1.0',
|
4947 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php'
|
4948 |
),
|
4949 |
+
'Google\\Protobuf\\Internal\\EnumValueOptions' => array(
|
4950 |
'version' => '3.21.1.0',
|
4951 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumValueOptions.php'
|
4952 |
),
|
4953 |
+
'Google\\Protobuf\\Internal\\SourceCodeInfo_Location' => array(
|
4954 |
'version' => '3.21.1.0',
|
4955 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php'
|
4956 |
),
|
4957 |
+
'Google\\Protobuf\\Internal\\MethodDescriptorProto' => array(
|
4958 |
'version' => '3.21.1.0',
|
4959 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MethodDescriptorProto.php'
|
4960 |
),
|
4961 |
+
'Google\\Protobuf\\Internal\\FileOptions_OptimizeMode' => array(
|
4962 |
'version' => '3.21.1.0',
|
4963 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php'
|
4964 |
+
),
|
4965 |
+
'Google\\Protobuf\\Internal\\FieldDescriptorProto_Label' => array(
|
4966 |
+
'version' => '3.21.1.0',
|
4967 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php'
|
4968 |
),
|
4969 |
'Google\\Protobuf\\Internal\\DescriptorProto_ExtensionRange' => array(
|
4970 |
'version' => '3.21.1.0',
|
4971 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php'
|
4972 |
),
|
4973 |
+
'Google\\Protobuf\\Internal\\DescriptorPool' => array(
|
4974 |
'version' => '3.21.1.0',
|
4975 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorPool.php'
|
4976 |
),
|
4977 |
+
'Google\\Protobuf\\Internal\\MethodOptions' => array(
|
4978 |
'version' => '3.21.1.0',
|
4979 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MethodOptions.php'
|
4980 |
),
|
4981 |
+
'Google\\Protobuf\\Internal\\DescriptorProto_ReservedRange' => array(
|
4982 |
'version' => '3.21.1.0',
|
4983 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php'
|
4984 |
),
|
4985 |
+
'Google\\Protobuf\\Internal\\MethodOptions_IdempotencyLevel' => array(
|
4986 |
'version' => '3.21.1.0',
|
4987 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php'
|
4988 |
),
|
4989 |
+
'Google\\Protobuf\\Internal\\EnumBuilderContext' => array(
|
4990 |
'version' => '3.21.1.0',
|
4991 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumBuilderContext.php'
|
4992 |
),
|
4993 |
+
'Google\\Protobuf\\Internal\\DescriptorProto' => array(
|
4994 |
'version' => '3.21.1.0',
|
4995 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto.php'
|
4996 |
),
|
4997 |
+
'Google\\Protobuf\\Internal\\UninterpretedOption' => array(
|
4998 |
'version' => '3.21.1.0',
|
4999 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption.php'
|
5000 |
),
|
5001 |
+
'Google\\Protobuf\\Internal\\FileDescriptorProto' => array(
|
5002 |
'version' => '3.21.1.0',
|
5003 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorProto.php'
|
5004 |
),
|
5005 |
+
'Google\\Protobuf\\Internal\\FieldDescriptor' => array(
|
5006 |
'version' => '3.21.1.0',
|
5007 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptor.php'
|
5008 |
),
|
5009 |
+
'Google\\Protobuf\\Internal\\MessageOptions' => array(
|
5010 |
'version' => '3.21.1.0',
|
5011 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MessageOptions.php'
|
5012 |
),
|
5013 |
+
'Google\\Protobuf\\Internal\\GPBDecodeException' => array(
|
5014 |
'version' => '3.21.1.0',
|
5015 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBDecodeException.php'
|
5016 |
),
|
5017 |
+
'Google\\Protobuf\\Internal\\CodedInputStream' => array(
|
5018 |
'version' => '3.21.1.0',
|
5019 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/CodedInputStream.php'
|
5020 |
),
|
5021 |
+
'Google\\Protobuf\\Internal\\RepeatedField' => array(
|
5022 |
'version' => '3.21.1.0',
|
5023 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RepeatedField.php'
|
5024 |
),
|
5025 |
+
'Google\\Protobuf\\Internal\\UninterpretedOption\\NamePart' => array(
|
5026 |
'version' => '3.21.1.0',
|
5027 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php'
|
5028 |
),
|
5029 |
+
'Google\\Protobuf\\Internal\\EnumDescriptorProto' => array(
|
5030 |
'version' => '3.21.1.0',
|
5031 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto.php'
|
5032 |
),
|
5033 |
+
'Google\\Protobuf\\Internal\\EnumDescriptor' => array(
|
5034 |
'version' => '3.21.1.0',
|
5035 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptor.php'
|
5036 |
),
|
5037 |
+
'Google\\Protobuf\\Internal\\EnumDescriptorProto\\EnumReservedRange' => array(
|
5038 |
'version' => '3.21.1.0',
|
5039 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php'
|
5040 |
),
|
5041 |
+
'Google\\Protobuf\\Internal\\FileDescriptor' => array(
|
5042 |
'version' => '3.21.1.0',
|
5043 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileDescriptor.php'
|
5044 |
),
|
5045 |
+
'Google\\Protobuf\\Internal\\SourceCodeInfo' => array(
|
5046 |
'version' => '3.21.1.0',
|
5047 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo.php'
|
5048 |
),
|
5049 |
+
'Google\\Protobuf\\Internal\\FieldOptions_JSType' => array(
|
5050 |
'version' => '3.21.1.0',
|
5051 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_JSType.php'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5052 |
),
|
5053 |
'Google\\Protobuf\\Internal\\FieldOptions' => array(
|
5054 |
'version' => '3.21.1.0',
|
5055 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions.php'
|
5056 |
),
|
5057 |
+
'Google\\Protobuf\\Internal\\GetPublicDescriptorTrait' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5058 |
'version' => '3.21.1.0',
|
5059 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php'
|
5060 |
),
|
5061 |
+
'Google\\Protobuf\\Internal\\AnyBase' => array(
|
5062 |
'version' => '3.21.1.0',
|
5063 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/AnyBase.php'
|
5064 |
),
|
5065 |
+
'Google\\Protobuf\\Internal\\FieldOptions\\CType' => array(
|
5066 |
'version' => '3.21.1.0',
|
5067 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/CType.php'
|
5068 |
),
|
5069 |
+
'Google\\Protobuf\\Internal\\FieldOptions\\JSType' => array(
|
5070 |
'version' => '3.21.1.0',
|
5071 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/JSType.php'
|
5072 |
),
|
5073 |
+
'Google\\Protobuf\\Internal\\MapFieldIter' => array(
|
5074 |
'version' => '3.21.1.0',
|
5075 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MapFieldIter.php'
|
5076 |
),
|
5077 |
+
'Google\\Protobuf\\Internal\\GPBType' => array(
|
5078 |
'version' => '3.21.1.0',
|
5079 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBType.php'
|
5080 |
),
|
5081 |
+
'Google\\Protobuf\\Internal\\MethodOptions\\IdempotencyLevel' => array(
|
5082 |
'version' => '3.21.1.0',
|
5083 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php'
|
5084 |
),
|
5085 |
+
'Google\\Protobuf\\Internal\\FileOptions' => array(
|
5086 |
'version' => '3.21.1.0',
|
5087 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileOptions.php'
|
5088 |
),
|
5089 |
+
'Google\\Protobuf\\Internal\\MapField' => array(
|
5090 |
'version' => '3.21.1.0',
|
5091 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MapField.php'
|
5092 |
),
|
5093 |
+
'Google\\Protobuf\\Internal\\DescriptorProto\\ExtensionRange' => array(
|
5094 |
'version' => '3.21.1.0',
|
5095 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php'
|
5096 |
),
|
5097 |
+
'Google\\Protobuf\\Internal\\DescriptorProto\\ReservedRange' => array(
|
5098 |
'version' => '3.21.1.0',
|
5099 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php'
|
5100 |
),
|
5101 |
+
'Google\\Protobuf\\Internal\\HasPublicDescriptorTrait' => array(
|
5102 |
'version' => '3.21.1.0',
|
5103 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php'
|
5104 |
),
|
5105 |
+
'Google\\Protobuf\\Internal\\EnumDescriptorProto_EnumReservedRange' => array(
|
5106 |
'version' => '3.21.1.0',
|
5107 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php'
|
5108 |
),
|
5109 |
+
'Google\\Protobuf\\Internal\\ServiceOptions' => array(
|
5110 |
'version' => '3.21.1.0',
|
5111 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/ServiceOptions.php'
|
5112 |
),
|
5113 |
+
'Google\\Protobuf\\Internal\\FileDescriptorSet' => array(
|
5114 |
'version' => '3.21.1.0',
|
5115 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorSet.php'
|
5116 |
),
|
5117 |
+
'Google\\Protobuf\\Internal\\OneofDescriptor' => array(
|
5118 |
'version' => '3.21.1.0',
|
5119 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptor.php'
|
5120 |
),
|
5121 |
+
'Google\\Protobuf\\Internal\\GPBUtil' => array(
|
5122 |
'version' => '3.21.1.0',
|
5123 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBUtil.php'
|
5124 |
),
|
5125 |
+
'Google\\Protobuf\\Internal\\FieldDescriptorProto_Type' => array(
|
5126 |
'version' => '3.21.1.0',
|
5127 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php'
|
5128 |
),
|
5129 |
+
'Google\\Protobuf\\Internal\\GeneratedCodeInfo_Annotation' => array(
|
5130 |
'version' => '3.21.1.0',
|
5131 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php'
|
5132 |
),
|
5133 |
+
'Google\\Protobuf\\Internal\\Message' => array(
|
5134 |
'version' => '3.21.1.0',
|
5135 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/Message.php'
|
5136 |
),
|
5137 |
+
'Google\\Protobuf\\Internal\\GPBWireType' => array(
|
5138 |
'version' => '3.21.1.0',
|
5139 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBWireType.php'
|
5140 |
),
|
5141 |
+
'Google\\Protobuf\\Internal\\RepeatedFieldIter' => array(
|
5142 |
'version' => '3.21.1.0',
|
5143 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/RepeatedFieldIter.php'
|
5144 |
),
|
5145 |
+
'Google\\Protobuf\\Internal\\GeneratedCodeInfo\\Annotation' => array(
|
5146 |
'version' => '3.21.1.0',
|
5147 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php'
|
5148 |
),
|
5149 |
+
'Google\\Protobuf\\Internal\\ExtensionRangeOptions' => array(
|
5150 |
'version' => '3.21.1.0',
|
5151 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/ExtensionRangeOptions.php'
|
5152 |
),
|
5153 |
+
'Google\\Protobuf\\Internal\\FieldDescriptorProto\\Type' => array(
|
5154 |
'version' => '3.21.1.0',
|
5155 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php'
|
5156 |
),
|
5157 |
+
'Google\\Protobuf\\Internal\\FieldDescriptorProto\\Label' => array(
|
5158 |
'version' => '3.21.1.0',
|
5159 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php'
|
5160 |
),
|
5161 |
+
'Google\\Protobuf\\Internal\\TimestampBase' => array(
|
5162 |
'version' => '3.21.1.0',
|
5163 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/TimestampBase.php'
|
5164 |
),
|
5165 |
+
'Google\\Protobuf\\Internal\\ServiceDescriptorProto' => array(
|
5166 |
'version' => '3.21.1.0',
|
5167 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/ServiceDescriptorProto.php'
|
5168 |
),
|
5169 |
+
'Google\\Protobuf\\Internal\\MapEntry' => array(
|
5170 |
'version' => '3.21.1.0',
|
5171 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/MapEntry.php'
|
5172 |
),
|
5173 |
+
'Google\\Protobuf\\Internal\\GPBLabel' => array(
|
5174 |
'version' => '3.21.1.0',
|
5175 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Internal/GPBLabel.php'
|
5176 |
),
|
5177 |
'Google\\Protobuf\\OneofDescriptor' => array(
|
5178 |
'version' => '3.21.1.0',
|
5179 |
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/OneofDescriptor.php'
|
5180 |
),
|
5181 |
+
'Google\\Protobuf\\Int32Value' => array(
|
5182 |
'version' => '3.21.1.0',
|
5183 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Int32Value.php'
|
5184 |
),
|
5185 |
+
'Google\\Protobuf\\DoubleValue' => array(
|
5186 |
'version' => '3.21.1.0',
|
5187 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/DoubleValue.php'
|
5188 |
),
|
5189 |
+
'Google\\Protobuf\\Value' => array(
|
5190 |
'version' => '3.21.1.0',
|
5191 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Value.php'
|
5192 |
),
|
5193 |
+
'Google\\Protobuf\\Timestamp' => array(
|
5194 |
'version' => '3.21.1.0',
|
5195 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Timestamp.php'
|
5196 |
),
|
5197 |
+
'Google\\Protobuf\\Any' => array(
|
5198 |
'version' => '3.21.1.0',
|
5199 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Any.php'
|
5200 |
),
|
5201 |
+
'Google\\Protobuf\\Enum' => array(
|
5202 |
'version' => '3.21.1.0',
|
5203 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Enum.php'
|
5204 |
),
|
5205 |
+
'Google\\Protobuf\\BytesValue' => array(
|
5206 |
'version' => '3.21.1.0',
|
5207 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/BytesValue.php'
|
5208 |
),
|
5209 |
+
'Google\\Protobuf\\Option' => array(
|
5210 |
'version' => '3.21.1.0',
|
5211 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Option.php'
|
5212 |
),
|
5213 |
+
'Google\\Protobuf\\FloatValue' => array(
|
5214 |
'version' => '3.21.1.0',
|
5215 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/FloatValue.php'
|
5216 |
),
|
5217 |
+
'Google\\Protobuf\\Method' => array(
|
5218 |
'version' => '3.21.1.0',
|
5219 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Method.php'
|
5220 |
),
|
5221 |
+
'Google\\Protobuf\\FieldMask' => array(
|
5222 |
'version' => '3.21.1.0',
|
5223 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/FieldMask.php'
|
5224 |
),
|
5225 |
+
'Google\\Protobuf\\Syntax' => array(
|
5226 |
'version' => '3.21.1.0',
|
5227 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/Syntax.php'
|
5228 |
),
|
5229 |
+
'Google\\Protobuf\\BoolValue' => array(
|
5230 |
'version' => '3.21.1.0',
|
5231 |
+
'path' => $vendorDir . '/google/protobuf/src/Google/Protobuf/BoolValue.php'
|
5232 |
),
|
5233 |
+
'Google\\ApiCore\\FixedSizeCollection' => array(
|
5234 |
'version' => '1.12.2.0',
|
5235 |
+
'path' => $vendorDir . '/google/gax/src/FixedSizeCollection.php'
|
5236 |
),
|
5237 |
+
'Google\\ApiCore\\AgentHeader' => array(
|
5238 |
'version' => '1.12.2.0',
|
5239 |
+
'path' => $vendorDir . '/google/gax/src/AgentHeader.php'
|
5240 |
),
|
5241 |
+
'Google\\ApiCore\\PollingTrait' => array(
|
5242 |
'version' => '1.12.2.0',
|
5243 |
+
'path' => $vendorDir . '/google/gax/src/PollingTrait.php'
|
5244 |
),
|
5245 |
+
'Google\\ApiCore\\Testing\\ProtobufGPBEmptyComparator' => array(
|
5246 |
'version' => '1.12.2.0',
|
5247 |
+
'path' => $vendorDir . '/google/gax/src/Testing/ProtobufGPBEmptyComparator.php'
|
5248 |
),
|
5249 |
+
'Google\\ApiCore\\Testing\\SerializationTrait' => array(
|
5250 |
'version' => '1.12.2.0',
|
5251 |
+
'path' => $vendorDir . '/google/gax/src/Testing/SerializationTrait.php'
|
5252 |
),
|
5253 |
+
'Google\\ApiCore\\Testing\\MockServerStreamingCall' => array(
|
5254 |
'version' => '1.12.2.0',
|
5255 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockServerStreamingCall.php'
|
5256 |
),
|
5257 |
+
'Google\\ApiCore\\Testing\\GeneratedTest' => array(
|
5258 |
'version' => '1.12.2.0',
|
5259 |
+
'path' => $vendorDir . '/google/gax/src/Testing/GeneratedTest.php'
|
5260 |
),
|
5261 |
+
'Google\\ApiCore\\Testing\\MockStatus' => array(
|
5262 |
'version' => '1.12.2.0',
|
5263 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockStatus.php'
|
5264 |
),
|
5265 |
+
'Google\\ApiCore\\Testing\\MockBidiStreamingCall' => array(
|
5266 |
'version' => '1.12.2.0',
|
5267 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockBidiStreamingCall.php'
|
5268 |
),
|
5269 |
+
'Google\\ApiCore\\Testing\\MockUnaryCall' => array(
|
5270 |
'version' => '1.12.2.0',
|
5271 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockUnaryCall.php'
|
5272 |
),
|
5273 |
+
'Google\\ApiCore\\Testing\\MockTransport' => array(
|
5274 |
'version' => '1.12.2.0',
|
5275 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockTransport.php'
|
5276 |
),
|
5277 |
+
'Google\\ApiCore\\Testing\\MockRequest' => array(
|
5278 |
'version' => '1.12.2.0',
|
5279 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockRequest.php'
|
5280 |
),
|
5281 |
+
'Google\\ApiCore\\Testing\\MockGrpcTransport' => array(
|
5282 |
'version' => '1.12.2.0',
|
5283 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockGrpcTransport.php'
|
5284 |
),
|
5285 |
+
'Google\\ApiCore\\Testing\\MockRequestBody' => array(
|
5286 |
'version' => '1.12.2.0',
|
5287 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockRequestBody.php'
|
5288 |
),
|
5289 |
+
'Google\\ApiCore\\Testing\\MessageAwareExporter' => array(
|
5290 |
'version' => '1.12.2.0',
|
5291 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MessageAwareExporter.php'
|
5292 |
),
|
5293 |
+
'Google\\ApiCore\\Testing\\MessageAwareArrayComparator' => array(
|
|
|
|
|
|
|
|
|
5294 |
'version' => '1.12.2.0',
|
5295 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MessageAwareArrayComparator.php'
|
5296 |
),
|
5297 |
+
'Google\\ApiCore\\Testing\\MockResponse' => array(
|
5298 |
'version' => '1.12.2.0',
|
5299 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockResponse.php'
|
5300 |
),
|
5301 |
+
'Google\\ApiCore\\Testing\\ReceivedRequest' => array(
|
5302 |
'version' => '1.12.2.0',
|
5303 |
+
'path' => $vendorDir . '/google/gax/src/Testing/ReceivedRequest.php'
|
5304 |
),
|
5305 |
+
'Google\\ApiCore\\Testing\\MockStubTrait' => array(
|
5306 |
'version' => '1.12.2.0',
|
5307 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockStubTrait.php'
|
5308 |
),
|
5309 |
+
'Google\\ApiCore\\Testing\\MockClientStreamingCall' => array(
|
5310 |
'version' => '1.12.2.0',
|
5311 |
+
'path' => $vendorDir . '/google/gax/src/Testing/MockClientStreamingCall.php'
|
5312 |
),
|
5313 |
+
'Google\\ApiCore\\Testing\\ProtobufMessageComparator' => array(
|
5314 |
'version' => '1.12.2.0',
|
5315 |
+
'path' => $vendorDir . '/google/gax/src/Testing/ProtobufMessageComparator.php'
|
5316 |
),
|
5317 |
+
'Google\\ApiCore\\ServerStream' => array(
|
5318 |
'version' => '1.12.2.0',
|
5319 |
+
'path' => $vendorDir . '/google/gax/src/ServerStream.php'
|
5320 |
),
|
5321 |
+
'Google\\ApiCore\\UriTrait' => array(
|
5322 |
'version' => '1.12.2.0',
|
5323 |
+
'path' => $vendorDir . '/google/gax/src/UriTrait.php'
|
5324 |
),
|
5325 |
+
'Google\\ApiCore\\Call' => array(
|
5326 |
'version' => '1.12.2.0',
|
5327 |
+
'path' => $vendorDir . '/google/gax/src/Call.php'
|
5328 |
),
|
5329 |
+
'Google\\ApiCore\\Version' => array(
|
5330 |
'version' => '1.12.2.0',
|
5331 |
+
'path' => $vendorDir . '/google/gax/src/Version.php'
|
5332 |
),
|
5333 |
+
'Google\\ApiCore\\ApiStatus' => array(
|
5334 |
'version' => '1.12.2.0',
|
5335 |
+
'path' => $vendorDir . '/google/gax/src/ApiStatus.php'
|
5336 |
),
|
5337 |
+
'Google\\ApiCore\\ServiceAddressTrait' => array(
|
5338 |
'version' => '1.12.2.0',
|
5339 |
+
'path' => $vendorDir . '/google/gax/src/ServiceAddressTrait.php'
|
5340 |
),
|
5341 |
+
'Google\\ApiCore\\Serializer' => array(
|
5342 |
'version' => '1.12.2.0',
|
5343 |
+
'path' => $vendorDir . '/google/gax/src/Serializer.php'
|
5344 |
),
|
5345 |
+
'Google\\ApiCore\\GrpcSupportTrait' => array(
|
5346 |
'version' => '1.12.2.0',
|
5347 |
+
'path' => $vendorDir . '/google/gax/src/GrpcSupportTrait.php'
|
5348 |
),
|
5349 |
+
'Google\\ApiCore\\OperationResponse' => array(
|
5350 |
'version' => '1.12.2.0',
|
5351 |
+
'path' => $vendorDir . '/google/gax/src/OperationResponse.php'
|
5352 |
),
|
5353 |
+
'Google\\ApiCore\\PageStreamingDescriptor' => array(
|
5354 |
'version' => '1.12.2.0',
|
5355 |
+
'path' => $vendorDir . '/google/gax/src/PageStreamingDescriptor.php'
|
5356 |
),
|
5357 |
+
'Google\\ApiCore\\Page' => array(
|
5358 |
'version' => '1.12.2.0',
|
5359 |
+
'path' => $vendorDir . '/google/gax/src/Page.php'
|
5360 |
),
|
5361 |
+
'Google\\ApiCore\\ApiException' => array(
|
5362 |
'version' => '1.12.2.0',
|
5363 |
+
'path' => $vendorDir . '/google/gax/src/ApiException.php'
|
5364 |
),
|
5365 |
+
'Google\\ApiCore\\ValidationException' => array(
|
5366 |
'version' => '1.12.2.0',
|
5367 |
+
'path' => $vendorDir . '/google/gax/src/ValidationException.php'
|
5368 |
),
|
5369 |
+
'Google\\ApiCore\\LongRunning\\OperationsClient' => array(
|
5370 |
'version' => '1.12.2.0',
|
5371 |
+
'path' => $vendorDir . '/google/gax/src/LongRunning/OperationsClient.php'
|
5372 |
),
|
5373 |
'Google\\ApiCore\\LongRunning\\Gapic\\OperationsGapicClient' => array(
|
5374 |
'version' => '1.12.2.0',
|
5375 |
'path' => $vendorDir . '/google/gax/src/LongRunning/Gapic/OperationsGapicClient.php'
|
5376 |
),
|
5377 |
+
'Google\\ApiCore\\BidiStream' => array(
|
5378 |
'version' => '1.12.2.0',
|
5379 |
+
'path' => $vendorDir . '/google/gax/src/BidiStream.php'
|
5380 |
),
|
5381 |
+
'Google\\ApiCore\\ArrayTrait' => array(
|
5382 |
'version' => '1.12.2.0',
|
5383 |
+
'path' => $vendorDir . '/google/gax/src/ArrayTrait.php'
|
5384 |
),
|
5385 |
'Google\\ApiCore\\PathTemplate' => array(
|
5386 |
'version' => '1.12.2.0',
|
5387 |
'path' => $vendorDir . '/google/gax/src/PathTemplate.php'
|
5388 |
),
|
5389 |
+
'Google\\ApiCore\\RetrySettings' => array(
|
5390 |
'version' => '1.12.2.0',
|
5391 |
+
'path' => $vendorDir . '/google/gax/src/RetrySettings.php'
|
5392 |
),
|
5393 |
+
'Google\\ApiCore\\Middleware\\PagedMiddleware' => array(
|
5394 |
'version' => '1.12.2.0',
|
5395 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/PagedMiddleware.php'
|
5396 |
),
|
5397 |
+
'Google\\ApiCore\\Middleware\\RetryMiddleware' => array(
|
5398 |
'version' => '1.12.2.0',
|
5399 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/RetryMiddleware.php'
|
5400 |
),
|
5401 |
+
'Google\\ApiCore\\Middleware\\FixedHeaderMiddleware' => array(
|
5402 |
'version' => '1.12.2.0',
|
5403 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/FixedHeaderMiddleware.php'
|
5404 |
),
|
5405 |
+
'Google\\ApiCore\\Middleware\\CredentialsWrapperMiddleware' => array(
|
5406 |
'version' => '1.12.2.0',
|
5407 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/CredentialsWrapperMiddleware.php'
|
5408 |
),
|
5409 |
+
'Google\\ApiCore\\Middleware\\OptionsFilterMiddleware' => array(
|
5410 |
'version' => '1.12.2.0',
|
5411 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/OptionsFilterMiddleware.php'
|
5412 |
),
|
5413 |
+
'Google\\ApiCore\\Middleware\\ResponseMetadataMiddleware' => array(
|
5414 |
'version' => '1.12.2.0',
|
5415 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/ResponseMetadataMiddleware.php'
|
5416 |
),
|
5417 |
+
'Google\\ApiCore\\Middleware\\OperationsMiddleware' => array(
|
5418 |
'version' => '1.12.2.0',
|
5419 |
+
'path' => $vendorDir . '/google/gax/src/Middleware/OperationsMiddleware.php'
|
5420 |
),
|
5421 |
+
'Google\\ApiCore\\GPBType' => array(
|
5422 |
'version' => '1.12.2.0',
|
5423 |
+
'path' => $vendorDir . '/google/gax/src/GPBType.php'
|
5424 |
),
|
5425 |
+
'Google\\ApiCore\\ClientStream' => array(
|
5426 |
'version' => '1.12.2.0',
|
5427 |
+
'path' => $vendorDir . '/google/gax/src/ClientStream.php'
|
5428 |
),
|
5429 |
+
'Google\\ApiCore\\CredentialsWrapper' => array(
|
5430 |
'version' => '1.12.2.0',
|
5431 |
+
'path' => $vendorDir . '/google/gax/src/CredentialsWrapper.php'
|
5432 |
),
|
5433 |
+
'Google\\ApiCore\\RequestBuilder' => array(
|
5434 |
'version' => '1.12.2.0',
|
5435 |
+
'path' => $vendorDir . '/google/gax/src/RequestBuilder.php'
|
5436 |
),
|
5437 |
+
'Google\\ApiCore\\RequestParamsHeaderDescriptor' => array(
|
5438 |
'version' => '1.12.2.0',
|
5439 |
+
'path' => $vendorDir . '/google/gax/src/RequestParamsHeaderDescriptor.php'
|
5440 |
),
|
5441 |
+
'Google\\ApiCore\\PagedListResponse' => array(
|
5442 |
'version' => '1.12.2.0',
|
5443 |
+
'path' => $vendorDir . '/google/gax/src/PagedListResponse.php'
|
5444 |
),
|
5445 |
+
'Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate' => array(
|
5446 |
'version' => '1.12.2.0',
|
5447 |
+
'path' => $vendorDir . '/google/gax/src/ResourceTemplate/AbsoluteResourceTemplate.php'
|
5448 |
),
|
5449 |
+
'Google\\ApiCore\\ResourceTemplate\\Parser' => array(
|
5450 |
'version' => '1.12.2.0',
|
5451 |
+
'path' => $vendorDir . '/google/gax/src/ResourceTemplate/Parser.php'
|
5452 |
),
|
5453 |
+
'Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate' => array(
|
5454 |
'version' => '1.12.2.0',
|
5455 |
+
'path' => $vendorDir . '/google/gax/src/ResourceTemplate/RelativeResourceTemplate.php'
|
5456 |
),
|
5457 |
+
'Google\\ApiCore\\ResourceTemplate\\Segment' => array(
|
5458 |
'version' => '1.12.2.0',
|
5459 |
+
'path' => $vendorDir . '/google/gax/src/ResourceTemplate/Segment.php'
|
5460 |
),
|
5461 |
+
'Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface' => array(
|
5462 |
'version' => '1.12.2.0',
|
5463 |
+
'path' => $vendorDir . '/google/gax/src/ResourceTemplate/ResourceTemplateInterface.php'
|
5464 |
),
|
5465 |
+
'Google\\ApiCore\\ValidationTrait' => array(
|
5466 |
'version' => '1.12.2.0',
|
5467 |
+
'path' => $vendorDir . '/google/gax/src/ValidationTrait.php'
|
5468 |
),
|
5469 |
+
'Google\\ApiCore\\GapicClientTrait' => array(
|
5470 |
'version' => '1.12.2.0',
|
5471 |
+
'path' => $vendorDir . '/google/gax/src/GapicClientTrait.php'
|
5472 |
),
|
5473 |
+
'Google\\ApiCore\\Transport\\Grpc\\ForwardingServerStreamingCall' => array(
|
5474 |
'version' => '1.12.2.0',
|
5475 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Grpc/ForwardingServerStreamingCall.php'
|
5476 |
),
|
5477 |
+
'Google\\ApiCore\\Transport\\Grpc\\ForwardingCall' => array(
|
5478 |
'version' => '1.12.2.0',
|
5479 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Grpc/ForwardingCall.php'
|
5480 |
),
|
5481 |
+
'Google\\ApiCore\\Transport\\Grpc\\ForwardingUnaryCall' => array(
|
5482 |
'version' => '1.12.2.0',
|
5483 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Grpc/ForwardingUnaryCall.php'
|
5484 |
),
|
5485 |
+
'Google\\ApiCore\\Transport\\Grpc\\UnaryInterceptorInterface' => array(
|
5486 |
'version' => '1.12.2.0',
|
5487 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Grpc/UnaryInterceptorInterface.php'
|
5488 |
),
|
5489 |
+
'Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper' => array(
|
5490 |
'version' => '1.12.2.0',
|
5491 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Grpc/ServerStreamingCallWrapper.php'
|
5492 |
),
|
5493 |
+
'Google\\ApiCore\\Transport\\GrpcTransport' => array(
|
5494 |
'version' => '1.12.2.0',
|
5495 |
+
'path' => $vendorDir . '/google/gax/src/Transport/GrpcTransport.php'
|
5496 |
),
|
5497 |
+
'Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall' => array(
|
5498 |
'version' => '1.12.2.0',
|
5499 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Rest/RestServerStreamingCall.php'
|
5500 |
),
|
5501 |
+
'Google\\ApiCore\\Transport\\Rest\\JsonStreamDecoder' => array(
|
5502 |
'version' => '1.12.2.0',
|
5503 |
+
'path' => $vendorDir . '/google/gax/src/Transport/Rest/JsonStreamDecoder.php'
|
5504 |
),
|
5505 |
+
'Google\\ApiCore\\Transport\\GrpcFallbackTransport' => array(
|
5506 |
'version' => '1.12.2.0',
|
5507 |
+
'path' => $vendorDir . '/google/gax/src/Transport/GrpcFallbackTransport.php'
|
5508 |
),
|
5509 |
+
'Google\\ApiCore\\Transport\\HttpUnaryTransportTrait' => array(
|
5510 |
'version' => '1.12.2.0',
|
5511 |
+
'path' => $vendorDir . '/google/gax/src/Transport/HttpUnaryTransportTrait.php'
|
5512 |
),
|
5513 |
+
'Google\\ApiCore\\Transport\\RestTransport' => array(
|
5514 |
'version' => '1.12.2.0',
|
5515 |
+
'path' => $vendorDir . '/google/gax/src/Transport/RestTransport.php'
|
5516 |
),
|
5517 |
+
'Google\\ApiCore\\Transport\\TransportInterface' => array(
|
5518 |
'version' => '1.12.2.0',
|
5519 |
+
'path' => $vendorDir . '/google/gax/src/Transport/TransportInterface.php'
|
5520 |
),
|
5521 |
+
'Google\\ApiCore\\ServerStreamingCallInterface' => array(
|
5522 |
'version' => '1.12.2.0',
|
5523 |
+
'path' => $vendorDir . '/google/gax/src/ServerStreamingCallInterface.php'
|
5524 |
),
|
5525 |
+
'Google\\ApiCore\\GPBLabel' => array(
|
5526 |
+
'version' => '1.12.2.0',
|
5527 |
+
'path' => $vendorDir . '/google/gax/src/GPBLabel.php'
|
5528 |
),
|
5529 |
+
'Google\\Ads\\GoogleAds\\Util\\ApiVersionSupport' => array(
|
5530 |
'version' => '12.1.0.0',
|
5531 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/ApiVersionSupport.php'
|
5532 |
),
|
5533 |
+
'Google\\Ads\\GoogleAds\\Util\\EnvironmentalVariables' => array(
|
5534 |
'version' => '12.1.0.0',
|
5535 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/EnvironmentalVariables.php'
|
5536 |
),
|
5537 |
+
'Google\\Ads\\GoogleAds\\Util\\V9\\GoogleAdsFailures' => array(
|
5538 |
'version' => '12.1.0.0',
|
5539 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/V9/GoogleAdsFailures.php'
|
5540 |
),
|
5541 |
+
'Google\\Ads\\GoogleAds\\Util\\V9\\ResourceNames' => array(
|
5542 |
'version' => '12.1.0.0',
|
5543 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/V9/ResourceNames.php'
|
5544 |
),
|
5545 |
+
'Google\\Ads\\GoogleAds\\Util\\V9\\GoogleAdsErrors' => array(
|
5546 |
'version' => '12.1.0.0',
|
5547 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/V9/GoogleAdsErrors.php'
|
5548 |
),
|
5549 |
+
'Google\\Ads\\GoogleAds\\Util\\V9\\PartialFailures' => array(
|
5550 |
'version' => '12.1.0.0',
|
5551 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/V9/PartialFailures.php'
|
5552 |
),
|
5553 |
+
'Google\\Ads\\GoogleAds\\Util\\FieldMasks' => array(
|
5554 |
'version' => '12.1.0.0',
|
5555 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Util/FieldMasks.php'
|
5556 |
),
|
5557 |
+
'Google\\Ads\\GoogleAds\\Constants' => array(
|
5558 |
'version' => '12.1.0.0',
|
5559 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Constants.php'
|
5560 |
),
|
5561 |
+
'Google\\Ads\\GoogleAds\\Lib\\AbstractGoogleAdsBuilder' => array(
|
5562 |
'version' => '12.1.0.0',
|
5563 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/AbstractGoogleAdsBuilder.php'
|
5564 |
),
|
5565 |
+
'Google\\Ads\\GoogleAds\\Lib\\GoogleAdsBuilder' => array(
|
5566 |
'version' => '12.1.0.0',
|
5567 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/GoogleAdsBuilder.php'
|
5568 |
),
|
5569 |
+
'Google\\Ads\\GoogleAds\\Lib\\Configuration' => array(
|
5570 |
'version' => '12.1.0.0',
|
5571 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/Configuration.php'
|
5572 |
),
|
5573 |
+
'Google\\Ads\\GoogleAds\\Lib\\ConfigurationLoader' => array(
|
5574 |
'version' => '12.1.0.0',
|
5575 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/ConfigurationLoader.php'
|
5576 |
),
|
5577 |
+
'Google\\Ads\\GoogleAds\\Lib\\ConfigurationTrait' => array(
|
5578 |
'version' => '12.1.0.0',
|
5579 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/ConfigurationTrait.php'
|
5580 |
),
|
5581 |
+
'Google\\Ads\\GoogleAds\\Lib\\OAuth2TokenBuilder' => array(
|
5582 |
'version' => '12.1.0.0',
|
5583 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/OAuth2TokenBuilder.php'
|
5584 |
),
|
5585 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsServerStreamDecorator' => array(
|
5586 |
'version' => '12.1.0.0',
|
5587 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsServerStreamDecorator.php'
|
5588 |
),
|
5589 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\LogMessageFormatter' => array(
|
5590 |
'version' => '12.1.0.0',
|
5591 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/LogMessageFormatter.php'
|
5592 |
),
|
5593 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsLoggingServerStreamingCall' => array(
|
5594 |
'version' => '12.1.0.0',
|
5595 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsLoggingServerStreamingCall.php'
|
5596 |
),
|
5597 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsMetadataTrait' => array(
|
5598 |
'version' => '12.1.0.0',
|
5599 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsMetadataTrait.php'
|
5600 |
),
|
5601 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\StatusMetadataExtractor' => array(
|
5602 |
'version' => '12.1.0.0',
|
5603 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/StatusMetadataExtractor.php'
|
5604 |
),
|
5605 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsExceptionTrait' => array(
|
5606 |
'version' => '12.1.0.0',
|
5607 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsExceptionTrait.php'
|
5608 |
),
|
5609 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsGapicClientTrait' => array(
|
5610 |
'version' => '12.1.0.0',
|
5611 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsGapicClientTrait.php'
|
5612 |
),
|
5613 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\ServerStreamingGoogleAdsResponseMetadataCallable' => array(
|
5614 |
'version' => '12.1.0.0',
|
5615 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServerStreamingGoogleAdsResponseMetadataCallable.php'
|
5616 |
),
|
5617 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsResponseMetadata' => array(
|
5618 |
'version' => '12.1.0.0',
|
5619 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsResponseMetadata.php'
|
5620 |
),
|
5621 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsException' => array(
|
5622 |
'version' => '12.1.0.0',
|
5623 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsException.php'
|
5624 |
),
|
5625 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\InfoRedactor' => array(
|
5626 |
'version' => '12.1.0.0',
|
5627 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/InfoRedactor.php'
|
5628 |
),
|
5629 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsClientBuilder' => array(
|
5630 |
'version' => '12.1.0.0',
|
5631 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsClientBuilder.php'
|
5632 |
),
|
5633 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsLoggingUnaryCall' => array(
|
5634 |
'version' => '12.1.0.0',
|
5635 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsLoggingUnaryCall.php'
|
5636 |
),
|
5637 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsCallLogger' => array(
|
5638 |
'version' => '12.1.0.0',
|
5639 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsCallLogger.php'
|
5640 |
),
|
5641 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\UnaryGoogleAdsExceptionMiddleware' => array(
|
5642 |
'version' => '12.1.0.0',
|
5643 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/UnaryGoogleAdsExceptionMiddleware.php'
|
5644 |
),
|
5645 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsOperationClient' => array(
|
5646 |
'version' => '12.1.0.0',
|
5647 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsOperationClient.php'
|
5648 |
),
|
5649 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsLoggingInterceptor' => array(
|
5650 |
'version' => '12.1.0.0',
|
5651 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsLoggingInterceptor.php'
|
5652 |
),
|
5653 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\LoggerFactory' => array(
|
5654 |
'version' => '12.1.0.0',
|
5655 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/LoggerFactory.php'
|
5656 |
),
|
5657 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsFailuresUnaryCall' => array(
|
5658 |
'version' => '12.1.0.0',
|
5659 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsFailuresUnaryCall.php'
|
5660 |
),
|
5661 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsClient' => array(
|
5662 |
'version' => '12.1.0.0',
|
5663 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsClient.php'
|
5664 |
),
|
5665 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\GoogleAdsFailuresInterceptor' => array(
|
5666 |
'version' => '12.1.0.0',
|
5667 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/GoogleAdsFailuresInterceptor.php'
|
5668 |
),
|
5669 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\UnaryGoogleAdsResponseMetadataCallable' => array(
|
5670 |
'version' => '12.1.0.0',
|
5671 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/UnaryGoogleAdsResponseMetadataCallable.php'
|
5672 |
),
|
5673 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\ServerStreamingGoogleAdsExceptionMiddleware' => array(
|
5674 |
'version' => '12.1.0.0',
|
5675 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServerStreamingGoogleAdsExceptionMiddleware.php'
|
5676 |
),
|
5677 |
+
'Google\\Ads\\GoogleAds\\Lib\\V9\\ServiceClientFactoryTrait' => array(
|
5678 |
'version' => '12.1.0.0',
|
5679 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/Lib/V9/ServiceClientFactoryTrait.php'
|
5680 |
),
|
5681 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserData' => array(
|
5682 |
'version' => '12.1.0.0',
|
5683 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserData.php'
|
5684 |
),
|
5685 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\OperatingSystemVersionInfo' => array(
|
5686 |
'version' => '12.1.0.0',
|
5687 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/OperatingSystemVersionInfo.php'
|
5688 |
),
|
5689 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRestrictionOperation' => array(
|
5690 |
'version' => '12.1.0.0',
|
5691 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRestrictionOperation.php'
|
5692 |
),
|
5693 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicySummary' => array(
|
5694 |
'version' => '12.1.0.0',
|
5695 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicySummary.php'
|
5696 |
),
|
5697 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CpcBidSimulationPoint' => array(
|
5698 |
'version' => '12.1.0.0',
|
5699 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CpcBidSimulationPoint.php'
|
5700 |
),
|
5701 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LeadFormAsset' => array(
|
5702 |
'version' => '12.1.0.0',
|
5703 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LeadFormAsset.php'
|
5704 |
),
|
5705 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HistoricalMetricsOptions' => array(
|
5706 |
'version' => '12.1.0.0',
|
5707 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HistoricalMetricsOptions.php'
|
5708 |
),
|
5709 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\GmailAdInfo' => array(
|
5710 |
'version' => '12.1.0.0',
|
5711 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/GmailAdInfo.php'
|
5712 |
),
|
5713 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\InteractionTypeInfo' => array(
|
5714 |
'version' => '12.1.0.0',
|
5715 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/InteractionTypeInfo.php'
|
5716 |
),
|
5717 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductItemIdInfo' => array(
|
5718 |
'version' => '12.1.0.0',
|
5719 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductItemIdInfo.php'
|
5720 |
),
|
5721 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListActionInfo' => array(
|
5722 |
'version' => '12.1.0.0',
|
5723 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListActionInfo.php'
|
5724 |
),
|
5725 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AppFeedItem' => array(
|
5726 |
'version' => '12.1.0.0',
|
5727 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AppFeedItem.php'
|
5728 |
),
|
5729 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ListingGroupInfo' => array(
|
5730 |
'version' => '12.1.0.0',
|
5731 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ListingGroupInfo.php'
|
5732 |
),
|
5733 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence' => array(
|
5734 |
'version' => '12.1.0.0',
|
5735 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence.php'
|
5736 |
),
|
5737 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetCpa' => array(
|
5738 |
'version' => '12.1.0.0',
|
5739 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetCpa.php'
|
5740 |
),
|
5741 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordPlanDeviceSearches' => array(
|
5742 |
'version' => '12.1.0.0',
|
5743 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordPlanDeviceSearches.php'
|
5744 |
),
|
5745 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence_DestinationTextList' => array(
|
5746 |
'version' => '12.1.0.0',
|
5747 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence_DestinationTextList.php'
|
5748 |
),
|
5749 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MaximizeConversionValue' => array(
|
5750 |
'version' => '12.1.0.0',
|
5751 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MaximizeConversionValue.php'
|
5752 |
),
|
5753 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListStringRuleItemInfo' => array(
|
5754 |
'version' => '12.1.0.0',
|
5755 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListStringRuleItemInfo.php'
|
5756 |
),
|
5757 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\RealTimeBiddingSetting' => array(
|
5758 |
'version' => '12.1.0.0',
|
5759 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/RealTimeBiddingSetting.php'
|
5760 |
),
|
5761 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetImpressionShareSimulationPointList' => array(
|
5762 |
'version' => '12.1.0.0',
|
5763 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetImpressionShareSimulationPointList.php'
|
5764 |
),
|
5765 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MaximizeConversions' => array(
|
5766 |
'version' => '12.1.0.0',
|
5767 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MaximizeConversions.php'
|
5768 |
),
|
5769 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRoas' => array(
|
5770 |
'version' => '12.1.0.0',
|
5771 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRoas.php'
|
5772 |
),
|
5773 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TagSnippet' => array(
|
5774 |
'version' => '12.1.0.0',
|
5775 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TagSnippet.php'
|
5776 |
),
|
5777 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoAdInfo' => array(
|
5778 |
'version' => '12.1.0.0',
|
5779 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoAdInfo.php'
|
5780 |
),
|
5781 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DateSpecificRuleUserListInfo' => array(
|
5782 |
'version' => '12.1.0.0',
|
5783 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DateSpecificRuleUserListInfo.php'
|
5784 |
),
|
5785 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint_CountryConstraint' => array(
|
5786 |
'version' => '12.1.0.0',
|
5787 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint_CountryConstraint.php'
|
5788 |
),
|
5789 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ResponsiveDisplayAdControlSpec' => array(
|
5790 |
'version' => '12.1.0.0',
|
5791 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ResponsiveDisplayAdControlSpec.php'
|
5792 |
),
|
5793 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AdImageAsset' => array(
|
5794 |
'version' => '12.1.0.0',
|
5795 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AdImageAsset.php'
|
5796 |
),
|
5797 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\WebpageInfo' => array(
|
5798 |
'version' => '12.1.0.0',
|
5799 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/WebpageInfo.php'
|
5800 |
),
|
5801 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\RuleBasedUserListInfo' => array(
|
5802 |
'version' => '12.1.0.0',
|
5803 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/RuleBasedUserListInfo.php'
|
5804 |
),
|
5805 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Money' => array(
|
5806 |
'version' => '12.1.0.0',
|
5807 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Money.php'
|
5808 |
),
|
5809 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetSpend' => array(
|
5810 |
'version' => '12.1.0.0',
|
5811 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetSpend.php'
|
5812 |
),
|
5813 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PriceOffering' => array(
|
5814 |
'version' => '12.1.0.0',
|
5815 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PriceOffering.php'
|
5816 |
),
|
5817 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ImageAsset' => array(
|
5818 |
'version' => '12.1.0.0',
|
5819 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ImageAsset.php'
|
5820 |
),
|
5821 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordConcept' => array(
|
5822 |
'version' => '12.1.0.0',
|
5823 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordConcept.php'
|
5824 |
),
|
5825 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AppEngagementAdInfo' => array(
|
5826 |
'version' => '12.1.0.0',
|
5827 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AppEngagementAdInfo.php'
|
5828 |
),
|
5829 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UnknownListingDimensionInfo' => array(
|
5830 |
'version' => '12.1.0.0',
|
5831 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UnknownListingDimensionInfo.php'
|
5832 |
),
|
5833 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BidModifierSimulationPoint' => array(
|
5834 |
'version' => '12.1.0.0',
|
5835 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BidModifierSimulationPoint.php'
|
5836 |
),
|
5837 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BudgetSimulationPointList' => array(
|
5838 |
'version' => '12.1.0.0',
|
5839 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BudgetSimulationPointList.php'
|
5840 |
),
|
5841 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand\\FunctionOperand' => array(
|
5842 |
'version' => '12.1.0.0',
|
5843 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand/FunctionOperand.php'
|
5844 |
),
|
5845 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand\\FeedAttributeOperand' => array(
|
5846 |
'version' => '12.1.0.0',
|
5847 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand/FeedAttributeOperand.php'
|
5848 |
),
|
5849 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand\\ConstantOperand' => array(
|
5850 |
'version' => '12.1.0.0',
|
5851 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand/ConstantOperand.php'
|
5852 |
),
|
5853 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand\\RequestContextOperand' => array(
|
5854 |
'version' => '12.1.0.0',
|
5855 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand/RequestContextOperand.php'
|
5856 |
),
|
5857 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CalloutAsset' => array(
|
5858 |
'version' => '12.1.0.0',
|
5859 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CalloutAsset.php'
|
5860 |
),
|
5861 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint' => array(
|
5862 |
'version' => '12.1.0.0',
|
5863 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint.php'
|
5864 |
),
|
5865 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProximityInfo' => array(
|
5866 |
'version' => '12.1.0.0',
|
5867 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProximityInfo.php'
|
5868 |
),
|
5869 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence_TextList' => array(
|
5870 |
'version' => '12.1.0.0',
|
5871 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence_TextList.php'
|
5872 |
),
|
5873 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\SmartCampaignAdInfo' => array(
|
5874 |
'version' => '12.1.0.0',
|
5875 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/SmartCampaignAdInfo.php'
|
5876 |
),
|
5877 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint_CountryConstraintList' => array(
|
5878 |
'version' => '12.1.0.0',
|
5879 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint_CountryConstraintList.php'
|
5880 |
),
|
5881 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CallFeedItem' => array(
|
5882 |
'version' => '12.1.0.0',
|
5883 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CallFeedItem.php'
|
5884 |
),
|
5885 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ImageDimension' => array(
|
5886 |
'version' => '12.1.0.0',
|
5887 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ImageDimension.php'
|
5888 |
),
|
5889 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MatchingFunction' => array(
|
5890 |
'version' => '12.1.0.0',
|
5891 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MatchingFunction.php'
|
5892 |
),
|
5893 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListInfo' => array(
|
5894 |
'version' => '12.1.0.0',
|
5895 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListInfo.php'
|
5896 |
),
|
5897 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRestriction' => array(
|
5898 |
'version' => '12.1.0.0',
|
5899 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRestriction.php'
|
5900 |
),
|
5901 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListRuleItemInfo' => array(
|
5902 |
'version' => '12.1.0.0',
|
5903 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListRuleItemInfo.php'
|
5904 |
),
|
5905 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\IpBlockInfo' => array(
|
5906 |
'version' => '12.1.0.0',
|
5907 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/IpBlockInfo.php'
|
5908 |
),
|
5909 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoTrueViewInStreamAdInfo' => array(
|
5910 |
'version' => '12.1.0.0',
|
5911 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoTrueViewInStreamAdInfo.php'
|
5912 |
),
|
5913 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DateRange' => array(
|
5914 |
'version' => '12.1.0.0',
|
5915 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DateRange.php'
|
5916 |
),
|
5917 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand_ConstantOperand' => array(
|
5918 |
'version' => '12.1.0.0',
|
5919 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand_ConstantOperand.php'
|
5920 |
),
|
5921 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TextLabel' => array(
|
5922 |
'version' => '12.1.0.0',
|
5923 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TextLabel.php'
|
5924 |
),
|
5925 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelLengthOfStayInfo' => array(
|
5926 |
'version' => '12.1.0.0',
|
5927 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelLengthOfStayInfo.php'
|
5928 |
),
|
5929 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\SitelinkFeedItem' => array(
|
5930 |
'version' => '12.1.0.0',
|
5931 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/SitelinkFeedItem.php'
|
5932 |
),
|
5933 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelAdInfo' => array(
|
5934 |
'version' => '12.1.0.0',
|
5935 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelAdInfo.php'
|
5936 |
),
|
5937 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetCpaSimulationPointList' => array(
|
5938 |
'version' => '12.1.0.0',
|
5939 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetCpaSimulationPointList.php'
|
5940 |
),
|
5941 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CustomAffinityInfo' => array(
|
5942 |
'version' => '12.1.0.0',
|
5943 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CustomAffinityInfo.php'
|
5944 |
),
|
5945 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\FrequencyCapKey' => array(
|
5946 |
'version' => '12.1.0.0',
|
5947 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/FrequencyCapKey.php'
|
5948 |
),
|
5949 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BidModifierSimulationPointList' => array(
|
5950 |
'version' => '12.1.0.0',
|
5951 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BidModifierSimulationPointList.php'
|
5952 |
),
|
5953 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DynamicEducationAsset' => array(
|
5954 |
'version' => '12.1.0.0',
|
5955 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DynamicEducationAsset.php'
|
5956 |
),
|
5957 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListRuleInfo' => array(
|
5958 |
'version' => '12.1.0.0',
|
5959 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListRuleInfo.php'
|
5960 |
),
|
5961 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListDateRuleItemInfo' => array(
|
5962 |
'version' => '12.1.0.0',
|
5963 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListDateRuleItemInfo.php'
|
5964 |
),
|
5965 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PromotionAsset' => array(
|
5966 |
'version' => '12.1.0.0',
|
5967 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PromotionAsset.php'
|
5968 |
),
|
5969 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand' => array(
|
5970 |
'version' => '12.1.0.0',
|
5971 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand.php'
|
5972 |
),
|
5973 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence_WebsiteList' => array(
|
5974 |
'version' => '12.1.0.0',
|
5975 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence_WebsiteList.php'
|
5976 |
),
|
5977 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ShoppingProductAdInfo' => array(
|
5978 |
'version' => '12.1.0.0',
|
5979 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ShoppingProductAdInfo.php'
|
5980 |
),
|
5981 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CustomAudienceInfo' => array(
|
5982 |
'version' => '12.1.0.0',
|
5983 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CustomAudienceInfo.php'
|
5984 |
),
|
5985 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductBiddingCategoryInfo' => array(
|
5986 |
'version' => '12.1.0.0',
|
5987 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductBiddingCategoryInfo.php'
|
5988 |
),
|
5989 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CallToActionAsset' => array(
|
5990 |
'version' => '12.1.0.0',
|
5991 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CallToActionAsset.php'
|
5992 |
),
|
5993 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AppPaymentModelInfo' => array(
|
5994 |
'version' => '12.1.0.0',
|
5995 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AppPaymentModelInfo.php'
|
5996 |
),
|
5997 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\YouTubeVideoInfo' => array(
|
5998 |
'version' => '12.1.0.0',
|
5999 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/YouTubeVideoInfo.php'
|
6000 |
),
|
6001 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PreferredContentInfo' => array(
|
6002 |
'version' => '12.1.0.0',
|
6003 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PreferredContentInfo.php'
|
6004 |
),
|
6005 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AssetInteractionTarget' => array(
|
6006 |
'version' => '12.1.0.0',
|
6007 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AssetInteractionTarget.php'
|
6008 |
),
|
6009 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PriceAsset' => array(
|
6010 |
'version' => '12.1.0.0',
|
6011 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PriceAsset.php'
|
6012 |
),
|
6013 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductBrandInfo' => array(
|
6014 |
'version' => '12.1.0.0',
|
6015 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductBrandInfo.php'
|
6016 |
),
|
6017 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ListingDimensionInfo' => array(
|
6018 |
'version' => '12.1.0.0',
|
6019 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ListingDimensionInfo.php'
|
6020 |
),
|
6021 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CombinedRuleUserListInfo' => array(
|
6022 |
'version' => '12.1.0.0',
|
6023 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CombinedRuleUserListInfo.php'
|
6024 |
),
|
6025 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AddressInfo' => array(
|
6026 |
'version' => '12.1.0.0',
|
6027 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AddressInfo.php'
|
6028 |
),
|
6029 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserInterestInfo' => array(
|
6030 |
'version' => '12.1.0.0',
|
6031 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserInterestInfo.php'
|
6032 |
),
|
6033 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Segments' => array(
|
6034 |
'version' => '12.1.0.0',
|
6035 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Segments.php'
|
6036 |
),
|
6037 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BusinessNameFilter' => array(
|
6038 |
'version' => '12.1.0.0',
|
6039 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BusinessNameFilter.php'
|
6040 |
),
|
6041 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\YouTubeChannelInfo' => array(
|
6042 |
'version' => '12.1.0.0',
|
6043 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/YouTubeChannelInfo.php'
|
6044 |
),
|
6045 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint\\ResellerConstraint' => array(
|
6046 |
'version' => '12.1.0.0',
|
6047 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint/ResellerConstraint.php'
|
6048 |
),
|
6049 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint\\CountryConstraint' => array(
|
6050 |
'version' => '12.1.0.0',
|
6051 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint/CountryConstraint.php'
|
6052 |
),
|
6053 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint\\CountryConstraintList' => array(
|
6054 |
'version' => '12.1.0.0',
|
6055 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint/CountryConstraintList.php'
|
6056 |
),
|
6057 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Keyword' => array(
|
6058 |
'version' => '12.1.0.0',
|
6059 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Keyword.php'
|
6060 |
),
|
6061 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductTypeInfo' => array(
|
6062 |
'version' => '12.1.0.0',
|
6063 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductTypeInfo.php'
|
6064 |
),
|
6065 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BookOnGoogleAsset' => array(
|
6066 |
'version' => '12.1.0.0',
|
6067 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BookOnGoogleAsset.php'
|
6068 |
),
|
6069 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\GeoPointInfo' => array(
|
6070 |
'version' => '12.1.0.0',
|
6071 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/GeoPointInfo.php'
|
6072 |
),
|
6073 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelCheckInDayInfo' => array(
|
6074 |
'version' => '12.1.0.0',
|
6075 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelCheckInDayInfo.php'
|
6076 |
),
|
6077 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MobileAppAsset' => array(
|
6078 |
'version' => '12.1.0.0',
|
6079 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MobileAppAsset.php'
|
6080 |
),
|
6081 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ExplorerAutoOptimizerSetting' => array(
|
6082 |
'version' => '12.1.0.0',
|
6083 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ExplorerAutoOptimizerSetting.php'
|
6084 |
),
|
6085 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LegacyResponsiveDisplayAdInfo' => array(
|
6086 |
'version' => '12.1.0.0',
|
6087 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LegacyResponsiveDisplayAdInfo.php'
|
6088 |
),
|
6089 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AppAdInfo' => array(
|
6090 |
'version' => '12.1.0.0',
|
6091 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AppAdInfo.php'
|
6092 |
),
|
6093 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CriterionCategoryAvailability' => array(
|
6094 |
'version' => '12.1.0.0',
|
6095 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CriterionCategoryAvailability.php'
|
6096 |
),
|
6097 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence_DestinationNotWorking' => array(
|
6098 |
'version' => '12.1.0.0',
|
6099 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence_DestinationNotWorking.php'
|
6100 |
),
|
6101 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ManualCpc' => array(
|
6102 |
'version' => '12.1.0.0',
|
6103 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ManualCpc.php'
|
6104 |
),
|
6105 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AdAssetPolicySummary' => array(
|
6106 |
'version' => '12.1.0.0',
|
6107 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AdAssetPolicySummary.php'
|
6108 |
),
|
6109 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CustomizerValue' => array(
|
6110 |
'version' => '12.1.0.0',
|
6111 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CustomizerValue.php'
|
6112 |
),
|
6113 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\StoreAttribute' => array(
|
6114 |
'version' => '12.1.0.0',
|
6115 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/StoreAttribute.php'
|
6116 |
),
|
6117 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CriterionCategoryChannelAvailability' => array(
|
6118 |
'version' => '12.1.0.0',
|
6119 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CriterionCategoryChannelAvailability.php'
|
6120 |
),
|
6121 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelClassInfo' => array(
|
6122 |
'version' => '12.1.0.0',
|
6123 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelClassInfo.php'
|
6124 |
),
|
6125 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListLogicalRuleInfo' => array(
|
6126 |
'version' => '12.1.0.0',
|
6127 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListLogicalRuleInfo.php'
|
6128 |
),
|
6129 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AdTextAsset' => array(
|
6130 |
'version' => '12.1.0.0',
|
6131 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AdTextAsset.php'
|
6132 |
),
|
6133 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelCountryRegionInfo' => array(
|
6134 |
'version' => '12.1.0.0',
|
6135 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelCountryRegionInfo.php'
|
6136 |
),
|
6137 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductImage' => array(
|
6138 |
'version' => '12.1.0.0',
|
6139 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductImage.php'
|
6140 |
),
|
6141 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TextAsset' => array(
|
6142 |
'version' => '12.1.0.0',
|
6143 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TextAsset.php'
|
6144 |
),
|
6145 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CustomIntentInfo' => array(
|
6146 |
'version' => '12.1.0.0',
|
6147 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CustomIntentInfo.php'
|
6148 |
),
|
6149 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LeadFormDeliveryMethod' => array(
|
6150 |
'version' => '12.1.0.0',
|
6151 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LeadFormDeliveryMethod.php'
|
6152 |
),
|
6153 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ManualCpv' => array(
|
6154 |
'version' => '12.1.0.0',
|
6155 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ManualCpv.php'
|
6156 |
),
|
6157 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelStateInfo' => array(
|
6158 |
'version' => '12.1.0.0',
|
6159 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelStateInfo.php'
|
6160 |
),
|
6161 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRoasSimulationPoint' => array(
|
6162 |
'version' => '12.1.0.0',
|
6163 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRoasSimulationPoint.php'
|
6164 |
),
|
6165 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LegacyAppInstallAdInfo' => array(
|
6166 |
'version' => '12.1.0.0',
|
6167 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LegacyAppInstallAdInfo.php'
|
6168 |
),
|
6169 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelCalloutAsset' => array(
|
6170 |
'version' => '12.1.0.0',
|
6171 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelCalloutAsset.php'
|
6172 |
),
|
6173 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Metrics' => array(
|
6174 |
'version' => '12.1.0.0',
|
6175 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Metrics.php'
|
6176 |
),
|
6177 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordThemeInfo' => array(
|
6178 |
'version' => '12.1.0.0',
|
6179 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordThemeInfo.php'
|
6180 |
),
|
6181 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\EnhancedCpc' => array(
|
6182 |
'version' => '12.1.0.0',
|
6183 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/EnhancedCpc.php'
|
6184 |
),
|
6185 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRoasSimulationPointList' => array(
|
6186 |
'version' => '12.1.0.0',
|
6187 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRoasSimulationPointList.php'
|
6188 |
),
|
6189 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CalloutFeedItem' => array(
|
6190 |
'version' => '12.1.0.0',
|
6191 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CalloutFeedItem.php'
|
6192 |
),
|
6193 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LocalAdInfo' => array(
|
6194 |
'version' => '12.1.0.0',
|
6195 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LocalAdInfo.php'
|
6196 |
),
|
6197 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LocationGroupInfo' => array(
|
6198 |
'version' => '12.1.0.0',
|
6199 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LocationGroupInfo.php'
|
6200 |
),
|
6201 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand_FunctionOperand' => array(
|
6202 |
'version' => '12.1.0.0',
|
6203 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand_FunctionOperand.php'
|
6204 |
),
|
6205 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ShoppingLoyalty' => array(
|
6206 |
'version' => '12.1.0.0',
|
6207 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ShoppingLoyalty.php'
|
6208 |
),
|
6209 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DisplayCallToAction' => array(
|
6210 |
'version' => '12.1.0.0',
|
6211 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DisplayCallToAction.php'
|
6212 |
),
|
6213 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ShoppingSmartAdInfo' => array(
|
6214 |
'version' => '12.1.0.0',
|
6215 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ShoppingSmartAdInfo.php'
|
6216 |
),
|
6217 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListRuleItemGroupInfo' => array(
|
6218 |
'version' => '12.1.0.0',
|
6219 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListRuleItemGroupInfo.php'
|
6220 |
),
|
6221 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ExpandedTextAdInfo' => array(
|
6222 |
'version' => '12.1.0.0',
|
6223 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ExpandedTextAdInfo.php'
|
6224 |
),
|
6225 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DeviceInfo' => array(
|
6226 |
'version' => '12.1.0.0',
|
6227 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DeviceInfo.php'
|
6228 |
),
|
6229 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PercentCpcBidSimulationPoint' => array(
|
6230 |
'version' => '12.1.0.0',
|
6231 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PercentCpcBidSimulationPoint.php'
|
6232 |
),
|
6233 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ImageFeedItem' => array(
|
6234 |
'version' => '12.1.0.0',
|
6235 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ImageFeedItem.php'
|
6236 |
),
|
6237 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LogicalUserListInfo' => array(
|
6238 |
'version' => '12.1.0.0',
|
6239 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LogicalUserListInfo.php'
|
6240 |
),
|
6241 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PercentCpc' => array(
|
6242 |
'version' => '12.1.0.0',
|
6243 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PercentCpc.php'
|
6244 |
),
|
6245 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand_FeedAttributeOperand' => array(
|
6246 |
'version' => '12.1.0.0',
|
6247 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand_FeedAttributeOperand.php'
|
6248 |
),
|
6249 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\WebpageSampleInfo' => array(
|
6250 |
'version' => '12.1.0.0',
|
6251 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/WebpageSampleInfo.php'
|
6252 |
),
|
6253 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ContentLabelInfo' => array(
|
6254 |
'version' => '12.1.0.0',
|
6255 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ContentLabelInfo.php'
|
6256 |
),
|
6257 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BudgetSimulationPoint' => array(
|
6258 |
'version' => '12.1.0.0',
|
6259 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BudgetSimulationPoint.php'
|
6260 |
),
|
6261 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\WebhookDelivery' => array(
|
6262 |
'version' => '12.1.0.0',
|
6263 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/WebhookDelivery.php'
|
6264 |
),
|
6265 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetImpressionShare' => array(
|
6266 |
'version' => '12.1.0.0',
|
6267 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetImpressionShare.php'
|
6268 |
),
|
6269 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TextAdInfo' => array(
|
6270 |
'version' => '12.1.0.0',
|
6271 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TextAdInfo.php'
|
6272 |
),
|
6273 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelDateSelectionTypeInfo' => array(
|
6274 |
'version' => '12.1.0.0',
|
6275 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelDateSelectionTypeInfo.php'
|
6276 |
),
|
6277 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\YoutubeVideoAsset' => array(
|
6278 |
'version' => '12.1.0.0',
|
6279 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/YoutubeVideoAsset.php'
|
6280 |
),
|
6281 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\StoreSalesMetadata' => array(
|
6282 |
'version' => '12.1.0.0',
|
6283 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/StoreSalesMetadata.php'
|
6284 |
),
|
6285 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoBumperInStreamAdInfo' => array(
|
6286 |
'version' => '12.1.0.0',
|
6287 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoBumperInStreamAdInfo.php'
|
6288 |
),
|
6289 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetCpaSimulationPoint' => array(
|
6290 |
'version' => '12.1.0.0',
|
6291 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetCpaSimulationPoint.php'
|
6292 |
),
|
6293 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordPlanHistoricalMetrics' => array(
|
6294 |
'version' => '12.1.0.0',
|
6295 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordPlanHistoricalMetrics.php'
|
6296 |
),
|
6297 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TopicInfo' => array(
|
6298 |
'version' => '12.1.0.0',
|
6299 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TopicInfo.php'
|
6300 |
),
|
6301 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CpvBidSimulationPointList' => array(
|
6302 |
'version' => '12.1.0.0',
|
6303 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CpvBidSimulationPointList.php'
|
6304 |
),
|
6305 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BasicUserListInfo' => array(
|
6306 |
'version' => '12.1.0.0',
|
6307 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BasicUserListInfo.php'
|
6308 |
),
|
6309 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TransactionAttribute' => array(
|
6310 |
'version' => '12.1.0.0',
|
6311 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TransactionAttribute.php'
|
6312 |
),
|
6313 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LocationFeedItem' => array(
|
6314 |
'version' => '12.1.0.0',
|
6315 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LocationFeedItem.php'
|
6316 |
),
|
6317 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\YearMonth' => array(
|
6318 |
'version' => '12.1.0.0',
|
6319 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/YearMonth.php'
|
|
|
|
|
|
|
|
|
6320 |
),
|
6321 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CpvBidSimulationPoint' => array(
|
6322 |
'version' => '12.1.0.0',
|
6323 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CpvBidSimulationPoint.php'
|
6324 |
),
|
6325 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LanguageInfo' => array(
|
6326 |
'version' => '12.1.0.0',
|
6327 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LanguageInfo.php'
|
6328 |
),
|
6329 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordInfo' => array(
|
6330 |
'version' => '12.1.0.0',
|
6331 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordInfo.php'
|
6332 |
),
|
6333 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AdVideoAsset' => array(
|
6334 |
'version' => '12.1.0.0',
|
6335 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AdVideoAsset.php'
|
6336 |
),
|
6337 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserAttribute' => array(
|
6338 |
'version' => '12.1.0.0',
|
6339 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserAttribute.php'
|
6340 |
),
|
6341 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CarrierInfo' => array(
|
6342 |
'version' => '12.1.0.0',
|
6343 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CarrierInfo.php'
|
6344 |
),
|
6345 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelCheckInDateRangeInfo' => array(
|
6346 |
'version' => '12.1.0.0',
|
6347 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelCheckInDateRangeInfo.php'
|
6348 |
),
|
6349 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ListingScopeInfo' => array(
|
6350 |
'version' => '12.1.0.0',
|
6351 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ListingScopeInfo.php'
|
6352 |
),
|
6353 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LocationInfo' => array(
|
6354 |
'version' => '12.1.0.0',
|
6355 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LocationInfo.php'
|
6356 |
),
|
6357 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\GenderInfo' => array(
|
6358 |
'version' => '12.1.0.0',
|
6359 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/GenderInfo.php'
|
6360 |
),
|
6361 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEntry' => array(
|
6362 |
'version' => '12.1.0.0',
|
6363 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEntry.php'
|
6364 |
),
|
6365 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CrmBasedUserListInfo' => array(
|
6366 |
'version' => '12.1.0.0',
|
6367 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CrmBasedUserListInfo.php'
|
6368 |
),
|
6369 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CriterionCategoryLocaleAvailability' => array(
|
6370 |
'version' => '12.1.0.0',
|
6371 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CriterionCategoryLocaleAvailability.php'
|
6372 |
),
|
6373 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DynamicAffiliateLocationSetFilter' => array(
|
6374 |
'version' => '12.1.0.0',
|
6375 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DynamicAffiliateLocationSetFilter.php'
|
6376 |
),
|
6377 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelCalloutFeedItem' => array(
|
6378 |
'version' => '12.1.0.0',
|
6379 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelCalloutFeedItem.php'
|
6380 |
),
|
6381 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AgeRangeInfo' => array(
|
6382 |
'version' => '12.1.0.0',
|
6383 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AgeRangeInfo.php'
|
6384 |
),
|
6385 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductCustomAttributeInfo' => array(
|
6386 |
'version' => '12.1.0.0',
|
6387 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductCustomAttributeInfo.php'
|
6388 |
),
|
6389 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoOutstreamAdInfo' => array(
|
6390 |
'version' => '12.1.0.0',
|
6391 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoOutstreamAdInfo.php'
|
6392 |
),
|
6393 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductConditionInfo' => array(
|
6394 |
'version' => '12.1.0.0',
|
6395 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductConditionInfo.php'
|
6396 |
),
|
6397 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CombinedAudienceInfo' => array(
|
6398 |
'version' => '12.1.0.0',
|
6399 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CombinedAudienceInfo.php'
|
6400 |
),
|
6401 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelCityInfo' => array(
|
6402 |
'version' => '12.1.0.0',
|
6403 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelCityInfo.php'
|
6404 |
),
|
6405 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LogicalUserListOperandInfo' => array(
|
6406 |
'version' => '12.1.0.0',
|
6407 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LogicalUserListOperandInfo.php'
|
6408 |
),
|
6409 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MobileAppCategoryInfo' => array(
|
6410 |
'version' => '12.1.0.0',
|
6411 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MobileAppCategoryInfo.php'
|
6412 |
),
|
6413 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PriceOffer' => array(
|
6414 |
'version' => '12.1.0.0',
|
6415 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PriceOffer.php'
|
6416 |
),
|
6417 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CustomerMatchUserListMetadata' => array(
|
6418 |
'version' => '12.1.0.0',
|
6419 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CustomerMatchUserListMetadata.php'
|
6420 |
),
|
6421 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoTrueViewDiscoveryAdInfo' => array(
|
6422 |
'version' => '12.1.0.0',
|
6423 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoTrueViewDiscoveryAdInfo.php'
|
6424 |
),
|
6425 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserListNumberRuleItemInfo' => array(
|
6426 |
'version' => '12.1.0.0',
|
6427 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserListNumberRuleItemInfo.php'
|
6428 |
),
|
6429 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ClickLocation' => array(
|
6430 |
'version' => '12.1.0.0',
|
6431 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ClickLocation.php'
|
6432 |
),
|
6433 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MobileApplicationInfo' => array(
|
6434 |
'version' => '12.1.0.0',
|
6435 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MobileApplicationInfo.php'
|
6436 |
),
|
6437 |
'Google\\Ads\\GoogleAds\\V9\\Common\\DisplayUploadAdInfo' => array(
|
6438 |
'version' => '12.1.0.0',
|
6439 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DisplayUploadAdInfo.php'
|
6440 |
),
|
6441 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PlacementInfo' => array(
|
6442 |
'version' => '12.1.0.0',
|
6443 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PlacementInfo.php'
|
6444 |
),
|
6445 |
'Google\\Ads\\GoogleAds\\V9\\Common\\UrlCollection' => array(
|
6446 |
'version' => '12.1.0.0',
|
6447 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UrlCollection.php'
|
6448 |
),
|
6449 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AppPreRegistrationAdInfo' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6450 |
'version' => '12.1.0.0',
|
6451 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AppPreRegistrationAdInfo.php'
|
6452 |
),
|
6453 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\FinalAppUrl' => array(
|
6454 |
'version' => '12.1.0.0',
|
6455 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/FinalAppUrl.php'
|
6456 |
),
|
6457 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence_DestinationMismatch' => array(
|
6458 |
'version' => '12.1.0.0',
|
6459 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence_DestinationMismatch.php'
|
6460 |
),
|
6461 |
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelAdvanceBookingWindowInfo' => array(
|
6462 |
'version' => '12.1.0.0',
|
6463 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelAdvanceBookingWindowInfo.php'
|
6464 |
),
|
6465 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\SitelinkAsset' => array(
|
6466 |
'version' => '12.1.0.0',
|
6467 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/SitelinkAsset.php'
|
6468 |
),
|
6469 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CallAsset' => array(
|
6470 |
'version' => '12.1.0.0',
|
6471 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CallAsset.php'
|
6472 |
),
|
6473 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetImpressionShareSimulationPoint' => array(
|
6474 |
'version' => '12.1.0.0',
|
6475 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetImpressionShareSimulationPoint.php'
|
6476 |
),
|
6477 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ExpressionRuleUserListInfo' => array(
|
6478 |
'version' => '12.1.0.0',
|
6479 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ExpressionRuleUserListInfo.php'
|
6480 |
),
|
6481 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PriceFeedItem' => array(
|
6482 |
'version' => '12.1.0.0',
|
6483 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PriceFeedItem.php'
|
6484 |
),
|
6485 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ResponsiveSearchAdInfo' => array(
|
6486 |
'version' => '12.1.0.0',
|
6487 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ResponsiveSearchAdInfo.php'
|
6488 |
),
|
6489 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyViolationKey' => array(
|
6490 |
'version' => '12.1.0.0',
|
6491 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyViolationKey.php'
|
6492 |
),
|
6493 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoResponsiveAdInfo' => array(
|
6494 |
'version' => '12.1.0.0',
|
6495 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoResponsiveAdInfo.php'
|
6496 |
),
|
6497 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordAnnotations' => array(
|
6498 |
'version' => '12.1.0.0',
|
6499 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordAnnotations.php'
|
6500 |
),
|
6501 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\DynamicLocationSetFilter' => array(
|
6502 |
'version' => '12.1.0.0',
|
6503 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/DynamicLocationSetFilter.php'
|
6504 |
),
|
6505 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ExpandedDynamicSearchAdInfo' => array(
|
6506 |
'version' => '12.1.0.0',
|
6507 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ExpandedDynamicSearchAdInfo.php'
|
6508 |
),
|
6509 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Value' => array(
|
6510 |
'version' => '12.1.0.0',
|
6511 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Value.php'
|
6512 |
),
|
6513 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRestrictionOperation_Operator' => array(
|
6514 |
'version' => '12.1.0.0',
|
6515 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRestrictionOperation_Operator.php'
|
6516 |
),
|
6517 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MonthlySearchVolume' => array(
|
6518 |
'version' => '12.1.0.0',
|
6519 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MonthlySearchVolume.php'
|
6520 |
),
|
6521 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetingSetting' => array(
|
6522 |
'version' => '12.1.0.0',
|
6523 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetingSetting.php'
|
6524 |
),
|
6525 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\IncomeRangeInfo' => array(
|
6526 |
'version' => '12.1.0.0',
|
6527 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/IncomeRangeInfo.php'
|
6528 |
),
|
6529 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AdMediaBundleAsset' => array(
|
6530 |
'version' => '12.1.0.0',
|
6531 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AdMediaBundleAsset.php'
|
6532 |
),
|
6533 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\OfflineUserAddressInfo' => array(
|
6534 |
'version' => '12.1.0.0',
|
6535 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/OfflineUserAddressInfo.php'
|
6536 |
),
|
6537 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\FrequencyCapEntry' => array(
|
6538 |
'version' => '12.1.0.0',
|
6539 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/FrequencyCapEntry.php'
|
6540 |
),
|
6541 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\GmailTeaser' => array(
|
6542 |
'version' => '12.1.0.0',
|
6543 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/GmailTeaser.php'
|
6544 |
),
|
6545 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ShoppingComparisonListingAdInfo' => array(
|
6546 |
'version' => '12.1.0.0',
|
6547 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ShoppingComparisonListingAdInfo.php'
|
6548 |
),
|
6549 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicConstraint_ResellerConstraint' => array(
|
6550 |
'version' => '12.1.0.0',
|
6551 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicConstraint_ResellerConstraint.php'
|
6552 |
),
|
6553 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CpcBidSimulationPointList' => array(
|
6554 |
'version' => '12.1.0.0',
|
6555 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CpcBidSimulationPointList.php'
|
6556 |
),
|
6557 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordPlanAggregateMetrics' => array(
|
6558 |
'version' => '12.1.0.0',
|
6559 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordPlanAggregateMetrics.php'
|
6560 |
),
|
6561 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ParentalStatusInfo' => array(
|
6562 |
'version' => '12.1.0.0',
|
6563 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ParentalStatusInfo.php'
|
6564 |
),
|
6565 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AffiliateLocationFeedItem' => array(
|
6566 |
'version' => '12.1.0.0',
|
6567 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AffiliateLocationFeedItem.php'
|
6568 |
),
|
6569 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyValidationParameter' => array(
|
6570 |
'version' => '12.1.0.0',
|
6571 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyValidationParameter.php'
|
6572 |
),
|
6573 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductVideo' => array(
|
6574 |
'version' => '12.1.0.0',
|
6575 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductVideo.php'
|
6576 |
),
|
6577 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductChannelExclusivityInfo' => array(
|
6578 |
'version' => '12.1.0.0',
|
6579 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductChannelExclusivityInfo.php'
|
6580 |
),
|
6581 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\StoreSalesThirdPartyMetadata' => array(
|
6582 |
'version' => '12.1.0.0',
|
6583 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/StoreSalesThirdPartyMetadata.php'
|
6584 |
),
|
6585 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TextMessageFeedItem' => array(
|
6586 |
'version' => '12.1.0.0',
|
6587 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TextMessageFeedItem.php'
|
6588 |
),
|
6589 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MobileDeviceInfo' => array(
|
6590 |
'version' => '12.1.0.0',
|
6591 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MobileDeviceInfo.php'
|
6592 |
),
|
6593 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CustomParameter' => array(
|
6594 |
'version' => '12.1.0.0',
|
6595 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CustomParameter.php'
|
6596 |
),
|
6597 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PercentCpcBidSimulationPointList' => array(
|
6598 |
'version' => '12.1.0.0',
|
6599 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PercentCpcBidSimulationPointList.php'
|
6600 |
),
|
6601 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\BudgetCampaignAssociationStatus' => array(
|
6602 |
'version' => '12.1.0.0',
|
6603 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/BudgetCampaignAssociationStatus.php'
|
6604 |
),
|
6605 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetCpm' => array(
|
6606 |
'version' => '12.1.0.0',
|
6607 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetCpm.php'
|
6608 |
),
|
6609 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ConceptGroup' => array(
|
6610 |
'version' => '12.1.0.0',
|
6611 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ConceptGroup.php'
|
6612 |
),
|
6613 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PromotionFeedItem' => array(
|
6614 |
'version' => '12.1.0.0',
|
6615 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PromotionFeedItem.php'
|
6616 |
),
|
6617 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\TargetRestrictionOperation\\Operator' => array(
|
6618 |
'version' => '12.1.0.0',
|
6619 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/TargetRestrictionOperation/Operator.php'
|
6620 |
),
|
6621 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\KeywordPlanAggregateMetricResults' => array(
|
6622 |
'version' => '12.1.0.0',
|
6623 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/KeywordPlanAggregateMetricResults.php'
|
6624 |
),
|
6625 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ImageAdInfo' => array(
|
6626 |
'version' => '12.1.0.0',
|
6627 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ImageAdInfo.php'
|
6628 |
),
|
6629 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Commission' => array(
|
6630 |
'version' => '12.1.0.0',
|
6631 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Commission.php'
|
6632 |
),
|
6633 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\Operand_RequestContextOperand' => array(
|
6634 |
'version' => '12.1.0.0',
|
6635 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/Operand_RequestContextOperand.php'
|
6636 |
),
|
6637 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\UserIdentifier' => array(
|
6638 |
'version' => '12.1.0.0',
|
6639 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/UserIdentifier.php'
|
6640 |
),
|
6641 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\WebpageConditionInfo' => array(
|
6642 |
'version' => '12.1.0.0',
|
6643 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/WebpageConditionInfo.php'
|
6644 |
),
|
6645 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\MediaBundleAsset' => array(
|
6646 |
'version' => '12.1.0.0',
|
6647 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/MediaBundleAsset.php'
|
6648 |
),
|
6649 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\CallAdInfo' => array(
|
6650 |
'version' => '12.1.0.0',
|
6651 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/CallAdInfo.php'
|
6652 |
),
|
6653 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ManualCpm' => array(
|
6654 |
'version' => '12.1.0.0',
|
6655 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ManualCpm.php'
|
6656 |
),
|
6657 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\StructuredSnippetAsset' => array(
|
6658 |
'version' => '12.1.0.0',
|
6659 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/StructuredSnippetAsset.php'
|
6660 |
),
|
6661 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ProductChannelInfo' => array(
|
6662 |
'version' => '12.1.0.0',
|
6663 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ProductChannelInfo.php'
|
6664 |
),
|
6665 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PageFeedAsset' => array(
|
6666 |
'version' => '12.1.0.0',
|
6667 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PageFeedAsset.php'
|
6668 |
),
|
6669 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\HotelIdInfo' => array(
|
6670 |
'version' => '12.1.0.0',
|
6671 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/HotelIdInfo.php'
|
6672 |
),
|
6673 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\AdScheduleInfo' => array(
|
6674 |
'version' => '12.1.0.0',
|
6675 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/AdScheduleInfo.php'
|
6676 |
),
|
6677 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ItemAttribute' => array(
|
6678 |
'version' => '12.1.0.0',
|
6679 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ItemAttribute.php'
|
6680 |
),
|
6681 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\ResponsiveDisplayAdInfo' => array(
|
6682 |
'version' => '12.1.0.0',
|
6683 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/ResponsiveDisplayAdInfo.php'
|
6684 |
),
|
6685 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\VideoNonSkippableInStreamAdInfo' => array(
|
6686 |
'version' => '12.1.0.0',
|
6687 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/VideoNonSkippableInStreamAdInfo.php'
|
6688 |
),
|
6689 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence\\TextList' => array(
|
6690 |
'version' => '12.1.0.0',
|
6691 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence/TextList.php'
|
6692 |
),
|
6693 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence\\DestinationMismatch' => array(
|
6694 |
'version' => '12.1.0.0',
|
6695 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence/DestinationMismatch.php'
|
6696 |
),
|
6697 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence\\DestinationTextList' => array(
|
6698 |
'version' => '12.1.0.0',
|
6699 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence/DestinationTextList.php'
|
6700 |
),
|
6701 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence\\WebsiteList' => array(
|
6702 |
'version' => '12.1.0.0',
|
6703 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence/WebsiteList.php'
|
6704 |
),
|
6705 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\PolicyTopicEvidence\\DestinationNotWorking' => array(
|
6706 |
'version' => '12.1.0.0',
|
6707 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/PolicyTopicEvidence/DestinationNotWorking.php'
|
6708 |
),
|
6709 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\StructuredSnippetFeedItem' => array(
|
6710 |
'version' => '12.1.0.0',
|
6711 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/StructuredSnippetFeedItem.php'
|
6712 |
),
|
6713 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LeadFormSingleChoiceAnswers' => array(
|
6714 |
'version' => '12.1.0.0',
|
6715 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LeadFormSingleChoiceAnswers.php'
|
6716 |
),
|
6717 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\LeadFormField' => array(
|
6718 |
'version' => '12.1.0.0',
|
6719 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/LeadFormField.php'
|
6720 |
),
|
6721 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\SimilarUserListInfo' => array(
|
6722 |
'version' => '12.1.0.0',
|
6723 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/SimilarUserListInfo.php'
|
6724 |
),
|
6725 |
+
'Google\\Ads\\GoogleAds\\V9\\Common\\YearMonthRange' => array(
|
6726 |
'version' => '12.1.0.0',
|
6727 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Common/YearMonthRange.php'
|
6728 |
),
|
6729 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupAdErrorEnum' => array(
|
6730 |
'version' => '12.1.0.0',
|
6731 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupAdErrorEnum.php'
|
6732 |
),
|
6733 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FieldErrorEnum\\FieldError' => array(
|
6734 |
'version' => '12.1.0.0',
|
6735 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FieldErrorEnum/FieldError.php'
|
6736 |
),
|
6737 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetLinkErrorEnum_AssetLinkError' => array(
|
6738 |
'version' => '12.1.0.0',
|
6739 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetLinkErrorEnum_AssetLinkError.php'
|
6740 |
),
|
6741 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupListingGroupFilterErrorEnum' => array(
|
6742 |
'version' => '12.1.0.0',
|
6743 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupListingGroupFilterErrorEnum.php'
|
6744 |
),
|
6745 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyValidationParameterErrorEnum' => array(
|
6746 |
'version' => '12.1.0.0',
|
6747 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyValidationParameterErrorEnum.php'
|
6748 |
),
|
6749 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyFindingErrorEnum_PolicyFindingError' => array(
|
6750 |
'version' => '12.1.0.0',
|
6751 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyFindingErrorEnum_PolicyFindingError.php'
|
6752 |
),
|
6753 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\HeaderErrorEnum\\HeaderError' => array(
|
6754 |
'version' => '12.1.0.0',
|
6755 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/HeaderErrorEnum/HeaderError.php'
|
6756 |
),
|
6757 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerUserAccessErrorEnum_CustomerUserAccessError' => array(
|
6758 |
'version' => '12.1.0.0',
|
6759 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerUserAccessErrorEnum_CustomerUserAccessError.php'
|
6760 |
),
|
6761 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomConversionGoalErrorEnum\\CustomConversionGoalError' => array(
|
6762 |
'version' => '12.1.0.0',
|
6763 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomConversionGoalErrorEnum/CustomConversionGoalError.php'
|
6764 |
),
|
6765 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCriterionErrorEnum' => array(
|
6766 |
'version' => '12.1.0.0',
|
6767 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignCriterionErrorEnum.php'
|
6768 |
),
|
6769 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdSharingErrorEnum_AdSharingError' => array(
|
6770 |
'version' => '12.1.0.0',
|
6771 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdSharingErrorEnum_AdSharingError.php'
|
6772 |
),
|
6773 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccessInvitationErrorEnum' => array(
|
6774 |
'version' => '12.1.0.0',
|
6775 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccessInvitationErrorEnum.php'
|
6776 |
),
|
6777 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupKeywordErrorEnum' => array(
|
6778 |
'version' => '12.1.0.0',
|
6779 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupKeywordErrorEnum.php'
|
6780 |
),
|
6781 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetErrorEnum_FeedItemSetError' => array(
|
6782 |
'version' => '12.1.0.0',
|
6783 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemSetErrorEnum_FeedItemSetError.php'
|
6784 |
),
|
6785 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NewResourceCreationErrorEnum\\NewResourceCreationError' => array(
|
6786 |
'version' => '12.1.0.0',
|
6787 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NewResourceCreationErrorEnum/NewResourceCreationError.php'
|
6788 |
),
|
6789 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FieldMaskErrorEnum' => array(
|
6790 |
'version' => '12.1.0.0',
|
6791 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FieldMaskErrorEnum.php'
|
6792 |
),
|
6793 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanIdeaErrorEnum\\KeywordPlanIdeaError' => array(
|
6794 |
'version' => '12.1.0.0',
|
6795 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanIdeaErrorEnum/KeywordPlanIdeaError.php'
|
6796 |
),
|
6797 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCustomizerErrorEnum_AdGroupCustomizerError' => array(
|
6798 |
'version' => '12.1.0.0',
|
6799 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCustomizerErrorEnum_AdGroupCustomizerError.php'
|
6800 |
),
|
6801 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignExperimentErrorEnum\\CampaignExperimentError' => array(
|
6802 |
'version' => '12.1.0.0',
|
6803 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignExperimentErrorEnum/CampaignExperimentError.php'
|
6804 |
),
|
6805 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignBudgetErrorEnum' => array(
|
6806 |
'version' => '12.1.0.0',
|
6807 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignBudgetErrorEnum.php'
|
6808 |
),
|
6809 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerClientLinkErrorEnum' => array(
|
6810 |
'version' => '12.1.0.0',
|
6811 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerClientLinkErrorEnum.php'
|
6812 |
),
|
6813 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignSharedSetErrorEnum\\CampaignSharedSetError' => array(
|
6814 |
'version' => '12.1.0.0',
|
6815 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignSharedSetErrorEnum/CampaignSharedSetError.php'
|
6816 |
),
|
6817 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OfflineUserDataJobErrorEnum' => array(
|
6818 |
'version' => '12.1.0.0',
|
6819 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OfflineUserDataJobErrorEnum.php'
|
6820 |
),
|
6821 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ManagerLinkErrorEnum_ManagerLinkError' => array(
|
6822 |
'version' => '12.1.0.0',
|
6823 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ManagerLinkErrorEnum_ManagerLinkError.php'
|
6824 |
),
|
6825 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ImageErrorEnum' => array(
|
6826 |
'version' => '12.1.0.0',
|
6827 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ImageErrorEnum.php'
|
6828 |
),
|
6829 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError' => array(
|
6830 |
'version' => '12.1.0.0',
|
6831 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError.php'
|
6832 |
),
|
6833 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyValidationParameterErrorEnum\\PolicyValidationParameterError' => array(
|
6834 |
'version' => '12.1.0.0',
|
6835 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyValidationParameterErrorEnum/PolicyValidationParameterError.php'
|
6836 |
),
|
6837 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionUploadErrorEnum\\ConversionUploadError' => array(
|
6838 |
'version' => '12.1.0.0',
|
6839 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionUploadErrorEnum/ConversionUploadError.php'
|
6840 |
),
|
6841 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerCustomizerErrorEnum_CustomerCustomizerError' => array(
|
6842 |
'version' => '12.1.0.0',
|
6843 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerCustomizerErrorEnum_CustomerCustomizerError.php'
|
6844 |
),
|
6845 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PartialFailureErrorEnum\\PartialFailureError' => array(
|
6846 |
'version' => '12.1.0.0',
|
6847 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PartialFailureErrorEnum/PartialFailureError.php'
|
6848 |
),
|
6849 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CountryCodeErrorEnum_CountryCodeError' => array(
|
6850 |
'version' => '12.1.0.0',
|
6851 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CountryCodeErrorEnum_CountryCodeError.php'
|
6852 |
),
|
6853 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaFileErrorEnum' => array(
|
6854 |
'version' => '12.1.0.0',
|
6855 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaFileErrorEnum.php'
|
6856 |
),
|
6857 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdxErrorEnum\\AdxError' => array(
|
6858 |
'version' => '12.1.0.0',
|
6859 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdxErrorEnum/AdxError.php'
|
6860 |
),
|
6861 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedAttributeReferenceErrorEnum\\FeedAttributeReferenceError' => array(
|
6862 |
'version' => '12.1.0.0',
|
6863 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedAttributeReferenceErrorEnum/FeedAttributeReferenceError.php'
|
6864 |
),
|
6865 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomInterestErrorEnum\\CustomInterestError' => array(
|
6866 |
'version' => '12.1.0.0',
|
6867 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomInterestErrorEnum/CustomInterestError.php'
|
6868 |
),
|
6869 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError' => array(
|
6870 |
'version' => '12.1.0.0',
|
6871 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError.php'
|
6872 |
),
|
6873 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupAssetErrorEnum_AssetGroupAssetError' => array(
|
6874 |
'version' => '12.1.0.0',
|
6875 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupAssetErrorEnum_AssetGroupAssetError.php'
|
6876 |
),
|
6877 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\InternalErrorEnum_InternalError' => array(
|
6878 |
'version' => '12.1.0.0',
|
6879 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/InternalErrorEnum_InternalError.php'
|
6880 |
),
|
6881 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCustomizerErrorEnum_CampaignCustomizerError' => array(
|
6882 |
'version' => '12.1.0.0',
|
6883 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignCustomizerErrorEnum_CampaignCustomizerError.php'
|
6884 |
),
|
6885 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccountBudgetProposalErrorEnum\\AccountBudgetProposalError' => array(
|
6886 |
'version' => '12.1.0.0',
|
6887 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccountBudgetProposalErrorEnum/AccountBudgetProposalError.php'
|
6888 |
),
|
6889 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SettingErrorEnum_SettingError' => array(
|
6890 |
'version' => '12.1.0.0',
|
6891 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SettingErrorEnum_SettingError.php'
|
6892 |
),
|
6893 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupErrorEnum\\AdGroupError' => array(
|
6894 |
'version' => '12.1.0.0',
|
6895 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupErrorEnum/AdGroupError.php'
|
6896 |
),
|
6897 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaBundleErrorEnum_MediaBundleError' => array(
|
6898 |
'version' => '12.1.0.0',
|
6899 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaBundleErrorEnum_MediaBundleError.php'
|
6900 |
),
|
6901 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdErrorEnum' => array(
|
6902 |
'version' => '12.1.0.0',
|
6903 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdErrorEnum.php'
|
6904 |
),
|
6905 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\LabelErrorEnum_LabelError' => array(
|
6906 |
'version' => '12.1.0.0',
|
6907 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/LabelErrorEnum_LabelError.php'
|
6908 |
),
|
6909 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerCustomizerErrorEnum\\CustomerCustomizerError' => array(
|
6910 |
'version' => '12.1.0.0',
|
6911 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerCustomizerErrorEnum/CustomerCustomizerError.php'
|
6912 |
),
|
6913 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DateErrorEnum_DateError' => array(
|
6914 |
'version' => '12.1.0.0',
|
6915 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DateErrorEnum_DateError.php'
|
6916 |
),
|
6917 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MutateErrorEnum\\MutateError' => array(
|
6918 |
'version' => '12.1.0.0',
|
6919 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MutateErrorEnum/MutateError.php'
|
6920 |
),
|
6921 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignErrorEnum\\KeywordPlanCampaignError' => array(
|
6922 |
'version' => '12.1.0.0',
|
6923 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignErrorEnum/KeywordPlanCampaignError.php'
|
6924 |
),
|
6925 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionFeedItemErrorEnum\\ExtensionFeedItemError' => array(
|
6926 |
'version' => '12.1.0.0',
|
6927 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ExtensionFeedItemErrorEnum/ExtensionFeedItemError.php'
|
6928 |
),
|
6929 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UserDataErrorEnum' => array(
|
6930 |
'version' => '12.1.0.0',
|
6931 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UserDataErrorEnum.php'
|
6932 |
),
|
6933 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetErrorEnum_AssetSetError' => array(
|
6934 |
'version' => '12.1.0.0',
|
6935 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetErrorEnum_AssetSetError.php'
|
6936 |
),
|
6937 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCustomizerErrorEnum\\CampaignCustomizerError' => array(
|
6938 |
'version' => '12.1.0.0',
|
6939 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignCustomizerErrorEnum/CampaignCustomizerError.php'
|
6940 |
),
|
6941 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError' => array(
|
6942 |
'version' => '12.1.0.0',
|
6943 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError.php'
|
6944 |
),
|
6945 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupErrorEnum' => array(
|
6946 |
'version' => '12.1.0.0',
|
6947 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupErrorEnum.php'
|
6948 |
),
|
6949 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NotAllowlistedErrorEnum\\NotAllowlistedError' => array(
|
6950 |
'version' => '12.1.0.0',
|
6951 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NotAllowlistedErrorEnum/NotAllowlistedError.php'
|
6952 |
),
|
6953 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomConversionGoalErrorEnum' => array(
|
6954 |
'version' => '12.1.0.0',
|
6955 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomConversionGoalErrorEnum.php'
|
6956 |
),
|
6957 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NullErrorEnum\\NullError' => array(
|
6958 |
'version' => '12.1.0.0',
|
6959 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NullErrorEnum/NullError.php'
|
6960 |
),
|
6961 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FieldMaskErrorEnum_FieldMaskError' => array(
|
6962 |
'version' => '12.1.0.0',
|
6963 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FieldMaskErrorEnum_FieldMaskError.php'
|
6964 |
),
|
6965 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SharedSetErrorEnum\\SharedSetError' => array(
|
6966 |
'version' => '12.1.0.0',
|
6967 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SharedSetErrorEnum/SharedSetError.php'
|
6968 |
),
|
6969 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerErrorEnum' => array(
|
6970 |
'version' => '12.1.0.0',
|
6971 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerErrorEnum.php'
|
6972 |
),
|
6973 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\IdErrorEnum\\IdError' => array(
|
6974 |
'version' => '12.1.0.0',
|
6975 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/IdErrorEnum/IdError.php'
|
6976 |
),
|
6977 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QueryErrorEnum\\QueryError' => array(
|
6978 |
'version' => '12.1.0.0',
|
6979 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QueryErrorEnum/QueryError.php'
|
6980 |
),
|
6981 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccessInvitationErrorEnum\\AccessInvitationError' => array(
|
6982 |
'version' => '12.1.0.0',
|
6983 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccessInvitationErrorEnum/AccessInvitationError.php'
|
6984 |
),
|
6985 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetErrorEnum\\AssetSetError' => array(
|
6986 |
'version' => '12.1.0.0',
|
6987 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetErrorEnum/AssetSetError.php'
|
6988 |
),
|
6989 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\InternalErrorEnum\\InternalError' => array(
|
6990 |
'version' => '12.1.0.0',
|
6991 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/InternalErrorEnum/InternalError.php'
|
6992 |
),
|
6993 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ErrorCode' => array(
|
6994 |
'version' => '12.1.0.0',
|
6995 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ErrorCode.php'
|
6996 |
),
|
6997 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdErrorEnum\\AdError' => array(
|
6998 |
'version' => '12.1.0.0',
|
6999 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdErrorEnum/AdError.php'
|
7000 |
),
|
7001 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ErrorLocation\\FieldPathElement' => array(
|
7002 |
'version' => '12.1.0.0',
|
7003 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ErrorLocation/FieldPathElement.php'
|
7004 |
),
|
7005 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\HeaderErrorEnum' => array(
|
7006 |
'version' => '12.1.0.0',
|
7007 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/HeaderErrorEnum.php'
|
7008 |
),
|
7009 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CriterionErrorEnum_CriterionError' => array(
|
7010 |
'version' => '12.1.0.0',
|
7011 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CriterionErrorEnum_CriterionError.php'
|
7012 |
),
|
7013 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupListingGroupFilterErrorEnum\\AssetGroupListingGroupFilterError' => array(
|
7014 |
'version' => '12.1.0.0',
|
7015 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupListingGroupFilterErrorEnum/AssetGroupListingGroupFilterError.php'
|
7016 |
),
|
7017 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyViolationErrorEnum\\PolicyViolationError' => array(
|
7018 |
'version' => '12.1.0.0',
|
7019 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyViolationErrorEnum/PolicyViolationError.php'
|
7020 |
),
|
7021 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MutateErrorEnum' => array(
|
7022 |
'version' => '12.1.0.0',
|
7023 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MutateErrorEnum.php'
|
7024 |
),
|
7025 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MerchantCenterErrorEnum' => array(
|
7026 |
'version' => '12.1.0.0',
|
7027 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MerchantCenterErrorEnum.php'
|
7028 |
),
|
7029 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerFeedErrorEnum\\CustomerFeedError' => array(
|
7030 |
'version' => '12.1.0.0',
|
7031 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerFeedErrorEnum/CustomerFeedError.php'
|
7032 |
),
|
7033 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ContextErrorEnum' => array(
|
7034 |
'version' => '12.1.0.0',
|
7035 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ContextErrorEnum.php'
|
7036 |
),
|
7037 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OperatorErrorEnum\\OperatorError' => array(
|
7038 |
'version' => '12.1.0.0',
|
7039 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OperatorErrorEnum/OperatorError.php'
|
7040 |
),
|
7041 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerErrorEnum\\CustomerError' => array(
|
7042 |
'version' => '12.1.0.0',
|
7043 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerErrorEnum/CustomerError.php'
|
7044 |
),
|
7045 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ReachPlanErrorEnum_ReachPlanError' => array(
|
7046 |
'version' => '12.1.0.0',
|
7047 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ReachPlanErrorEnum_ReachPlanError.php'
|
7048 |
),
|
7049 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\InternalErrorEnum' => array(
|
7050 |
'version' => '12.1.0.0',
|
7051 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/InternalErrorEnum.php'
|
7052 |
),
|
7053 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError' => array(
|
7054 |
'version' => '12.1.0.0',
|
7055 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError.php'
|
7056 |
),
|
7057 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignKeywordErrorEnum\\KeywordPlanCampaignKeywordError' => array(
|
7058 |
'version' => '12.1.0.0',
|
7059 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignKeywordErrorEnum/KeywordPlanCampaignKeywordError.php'
|
7060 |
),
|
7061 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NotEmptyErrorEnum\\NotEmptyError' => array(
|
7062 |
'version' => '12.1.0.0',
|
7063 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NotEmptyErrorEnum/NotEmptyError.php'
|
7064 |
),
|
7065 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemErrorEnum\\FeedItemError' => array(
|
7066 |
'version' => '12.1.0.0',
|
7067 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemErrorEnum/FeedItemError.php'
|
7068 |
),
|
7069 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetErrorEnum' => array(
|
7070 |
'version' => '12.1.0.0',
|
7071 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetErrorEnum.php'
|
7072 |
),
|
7073 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DistinctErrorEnum' => array(
|
7074 |
'version' => '12.1.0.0',
|
7075 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DistinctErrorEnum.php'
|
7076 |
),
|
7077 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanErrorEnum_KeywordPlanError' => array(
|
7078 |
'version' => '12.1.0.0',
|
7079 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanErrorEnum_KeywordPlanError.php'
|
7080 |
),
|
7081 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\LabelErrorEnum' => array(
|
7082 |
'version' => '12.1.0.0',
|
7083 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/LabelErrorEnum.php'
|
7084 |
),
|
7085 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NotAllowlistedErrorEnum' => array(
|
7086 |
'version' => '12.1.0.0',
|
7087 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NotAllowlistedErrorEnum.php'
|
7088 |
),
|
7089 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NullErrorEnum' => array(
|
7090 |
'version' => '12.1.0.0',
|
7091 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NullErrorEnum.php'
|
7092 |
),
|
7093 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetLinkErrorEnum\\AssetSetLinkError' => array(
|
7094 |
'version' => '12.1.0.0',
|
7095 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetLinkErrorEnum/AssetSetLinkError.php'
|
7096 |
),
|
7097 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingErrorEnum_BiddingError' => array(
|
7098 |
'version' => '12.1.0.0',
|
7099 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BiddingErrorEnum_BiddingError.php'
|
7100 |
),
|
7101 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyValidationParameterErrorEnum_PolicyValidationParameterError' => array(
|
7102 |
'version' => '12.1.0.0',
|
7103 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyValidationParameterErrorEnum_PolicyValidationParameterError.php'
|
7104 |
),
|
7105 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\InvoiceErrorEnum' => array(
|
7106 |
'version' => '12.1.0.0',
|
7107 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/InvoiceErrorEnum.php'
|
7108 |
),
|
7109 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RecommendationErrorEnum_RecommendationError' => array(
|
7110 |
'version' => '12.1.0.0',
|
7111 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RecommendationErrorEnum_RecommendationError.php'
|
7112 |
),
|
7113 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccessInvitationErrorEnum_AccessInvitationError' => array(
|
7114 |
'version' => '12.1.0.0',
|
7115 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccessInvitationErrorEnum_AccessInvitationError.php'
|
7116 |
),
|
7117 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomInterestErrorEnum' => array(
|
7118 |
'version' => '12.1.0.0',
|
7119 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomInterestErrorEnum.php'
|
7120 |
),
|
7121 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignKeywordErrorEnum' => array(
|
7122 |
'version' => '12.1.0.0',
|
7123 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignKeywordErrorEnum.php'
|
7124 |
),
|
7125 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OperatorErrorEnum' => array(
|
7126 |
'version' => '12.1.0.0',
|
7127 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OperatorErrorEnum.php'
|
7128 |
),
|
7129 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\LanguageCodeErrorEnum' => array(
|
7130 |
'version' => '12.1.0.0',
|
7131 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/LanguageCodeErrorEnum.php'
|
7132 |
),
|
7133 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdCustomizerErrorEnum\\AdCustomizerError' => array(
|
7134 |
'version' => '12.1.0.0',
|
7135 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdCustomizerErrorEnum/AdCustomizerError.php'
|
7136 |
),
|
7137 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignFeedErrorEnum' => array(
|
7138 |
'version' => '12.1.0.0',
|
7139 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignFeedErrorEnum.php'
|
7140 |
),
|
7141 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionAdjustmentUploadErrorEnum' => array(
|
7142 |
'version' => '12.1.0.0',
|
7143 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionAdjustmentUploadErrorEnum.php'
|
7144 |
),
|
7145 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccountBudgetProposalErrorEnum_AccountBudgetProposalError' => array(
|
7146 |
'version' => '12.1.0.0',
|
7147 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccountBudgetProposalErrorEnum_AccountBudgetProposalError.php'
|
7148 |
),
|
7149 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomAudienceErrorEnum\\CustomAudienceError' => array(
|
7150 |
'version' => '12.1.0.0',
|
7151 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomAudienceErrorEnum/CustomAudienceError.php'
|
7152 |
),
|
7153 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionUploadErrorEnum' => array(
|
7154 |
'version' => '12.1.0.0',
|
7155 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionUploadErrorEnum.php'
|
7156 |
),
|
7157 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignFeedErrorEnum_CampaignFeedError' => array(
|
7158 |
'version' => '12.1.0.0',
|
7159 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignFeedErrorEnum_CampaignFeedError.php'
|
7160 |
),
|
7161 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomizerAttributeErrorEnum\\CustomizerAttributeError' => array(
|
7162 |
'version' => '12.1.0.0',
|
7163 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomizerAttributeErrorEnum/CustomizerAttributeError.php'
|
7164 |
),
|
7165 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MultiplierErrorEnum' => array(
|
7166 |
'version' => '12.1.0.0',
|
7167 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MultiplierErrorEnum.php'
|
7168 |
),
|
7169 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupErrorEnum\\AssetGroupError' => array(
|
7170 |
'version' => '12.1.0.0',
|
7171 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupErrorEnum/AssetGroupError.php'
|
7172 |
),
|
7173 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceCountDetails' => array(
|
7174 |
'version' => '12.1.0.0',
|
7175 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceCountDetails.php'
|
7176 |
),
|
7177 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetErrorEnum_AssetError' => array(
|
7178 |
'version' => '12.1.0.0',
|
7179 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetErrorEnum_AssetError.php'
|
7180 |
),
|
7181 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaFileErrorEnum_MediaFileError' => array(
|
7182 |
'version' => '12.1.0.0',
|
7183 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaFileErrorEnum_MediaFileError.php'
|
7184 |
),
|
7185 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\StringLengthErrorEnum\\StringLengthError' => array(
|
7186 |
'version' => '12.1.0.0',
|
7187 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/StringLengthErrorEnum/StringLengthError.php'
|
7188 |
),
|
7189 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError' => array(
|
7190 |
'version' => '12.1.0.0',
|
7191 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError.php'
|
7192 |
),
|
7193 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionErrorEnum' => array(
|
7194 |
'version' => '12.1.0.0',
|
7195 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionErrorEnum.php'
|
7196 |
),
|
7197 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CollectionSizeErrorEnum' => array(
|
7198 |
'version' => '12.1.0.0',
|
7199 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CollectionSizeErrorEnum.php'
|
7200 |
),
|
7201 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SizeLimitErrorEnum_SizeLimitError' => array(
|
7202 |
'version' => '12.1.0.0',
|
7203 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SizeLimitErrorEnum_SizeLimitError.php'
|
7204 |
),
|
7205 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetLinkErrorEnum' => array(
|
7206 |
'version' => '12.1.0.0',
|
7207 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetLinkErrorEnum.php'
|
7208 |
),
|
7209 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CurrencyCodeErrorEnum' => array(
|
7210 |
'version' => '12.1.0.0',
|
7211 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CurrencyCodeErrorEnum.php'
|
7212 |
),
|
7213 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CountryCodeErrorEnum\\CountryCodeError' => array(
|
7214 |
'version' => '12.1.0.0',
|
7215 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CountryCodeErrorEnum/CountryCodeError.php'
|
7216 |
),
|
7217 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleErrorEnum' => array(
|
7218 |
'version' => '12.1.0.0',
|
7219 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleErrorEnum.php'
|
7220 |
),
|
7221 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionCustomVariableErrorEnum_ConversionCustomVariableError' => array(
|
7222 |
'version' => '12.1.0.0',
|
7223 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionCustomVariableErrorEnum_ConversionCustomVariableError.php'
|
7224 |
),
|
7225 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UrlFieldErrorEnum_UrlFieldError' => array(
|
7226 |
'version' => '12.1.0.0',
|
7227 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UrlFieldErrorEnum_UrlFieldError.php'
|
7228 |
),
|
7229 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RequestErrorEnum' => array(
|
7230 |
'version' => '12.1.0.0',
|
7231 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RequestErrorEnum.php'
|
7232 |
),
|
7233 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionErrorEnum' => array(
|
7234 |
'version' => '12.1.0.0',
|
7235 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FunctionErrorEnum.php'
|
7236 |
),
|
7237 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaUploadErrorEnum\\MediaUploadError' => array(
|
7238 |
'version' => '12.1.0.0',
|
7239 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaUploadErrorEnum/MediaUploadError.php'
|
7240 |
),
|
7241 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UrlFieldErrorEnum' => array(
|
7242 |
'version' => '12.1.0.0',
|
7243 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UrlFieldErrorEnum.php'
|
7244 |
),
|
7245 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccountLinkErrorEnum_AccountLinkError' => array(
|
7246 |
'version' => '12.1.0.0',
|
7247 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccountLinkErrorEnum_AccountLinkError.php'
|
7248 |
),
|
7249 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RegionCodeErrorEnum\\RegionCodeError' => array(
|
7250 |
'version' => '12.1.0.0',
|
7251 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RegionCodeErrorEnum/RegionCodeError.php'
|
7252 |
),
|
7253 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CollectionSizeErrorEnum\\CollectionSizeError' => array(
|
7254 |
'version' => '12.1.0.0',
|
7255 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CollectionSizeErrorEnum/CollectionSizeError.php'
|
7256 |
),
|
7257 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RequestErrorEnum_RequestError' => array(
|
7258 |
'version' => '12.1.0.0',
|
7259 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RequestErrorEnum_RequestError.php'
|
7260 |
),
|
7261 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdSharingErrorEnum\\AdSharingError' => array(
|
7262 |
'version' => '12.1.0.0',
|
7263 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdSharingErrorEnum/AdSharingError.php'
|
7264 |
),
|
7265 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignSharedSetErrorEnum' => array(
|
7266 |
'version' => '12.1.0.0',
|
7267 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignSharedSetErrorEnum.php'
|
7268 |
),
|
7269 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError' => array(
|
7270 |
'version' => '12.1.0.0',
|
7271 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError.php'
|
7272 |
),
|
7273 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetLinkErrorEnum_FeedItemSetLinkError' => array(
|
7274 |
'version' => '12.1.0.0',
|
7275 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemSetLinkErrorEnum_FeedItemSetLinkError.php'
|
7276 |
),
|
7277 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError' => array(
|
7278 |
'version' => '12.1.0.0',
|
7279 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError.php'
|
7280 |
),
|
7281 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignDraftErrorEnum' => array(
|
7282 |
'version' => '12.1.0.0',
|
7283 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignDraftErrorEnum.php'
|
7284 |
),
|
7285 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RegionCodeErrorEnum' => array(
|
7286 |
'version' => '12.1.0.0',
|
7287 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RegionCodeErrorEnum.php'
|
7288 |
),
|
7289 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionCustomizerErrorEnum' => array(
|
7290 |
'version' => '12.1.0.0',
|
7291 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionCustomizerErrorEnum.php'
|
7292 |
),
|
7293 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanErrorEnum\\KeywordPlanError' => array(
|
7294 |
'version' => '12.1.0.0',
|
7295 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanErrorEnum/KeywordPlanError.php'
|
7296 |
),
|
7297 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupKeywordErrorEnum\\KeywordPlanAdGroupKeywordError' => array(
|
7298 |
'version' => '12.1.0.0',
|
7299 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupKeywordErrorEnum/KeywordPlanAdGroupKeywordError.php'
|
7300 |
),
|
7301 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\EnumErrorEnum' => array(
|
7302 |
'version' => '12.1.0.0',
|
7303 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/EnumErrorEnum.php'
|
7304 |
),
|
7305 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdCustomizerErrorEnum' => array(
|
7306 |
'version' => '12.1.0.0',
|
7307 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdCustomizerErrorEnum.php'
|
7308 |
),
|
7309 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ErrorLocation_FieldPathElement' => array(
|
7310 |
'version' => '12.1.0.0',
|
7311 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ErrorLocation_FieldPathElement.php'
|
7312 |
),
|
7313 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionSettingErrorEnum\\ExtensionSettingError' => array(
|
7314 |
'version' => '12.1.0.0',
|
7315 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ExtensionSettingErrorEnum/ExtensionSettingError.php'
|
7316 |
),
|
7317 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError' => array(
|
7318 |
'version' => '12.1.0.0',
|
7319 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError.php'
|
7320 |
),
|
7321 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceCountLimitExceededErrorEnum' => array(
|
7322 |
'version' => '12.1.0.0',
|
7323 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceCountLimitExceededErrorEnum.php'
|
7324 |
),
|
7325 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerClientLinkErrorEnum_CustomerClientLinkError' => array(
|
7326 |
'version' => '12.1.0.0',
|
7327 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerClientLinkErrorEnum_CustomerClientLinkError.php'
|
7328 |
),
|
7329 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingErrorEnum' => array(
|
7330 |
'version' => '12.1.0.0',
|
7331 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BiddingErrorEnum.php'
|
7332 |
),
|
7333 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QueryErrorEnum' => array(
|
7334 |
'version' => '12.1.0.0',
|
7335 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QueryErrorEnum.php'
|
7336 |
),
|
7337 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCustomizerErrorEnum' => array(
|
7338 |
'version' => '12.1.0.0',
|
7339 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCustomizerErrorEnum.php'
|
7340 |
),
|
7341 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OfflineUserDataJobErrorEnum\\OfflineUserDataJobError' => array(
|
7342 |
'version' => '12.1.0.0',
|
7343 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OfflineUserDataJobErrorEnum/OfflineUserDataJobError.php'
|
7344 |
),
|
7345 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerManagerLinkErrorEnum' => array(
|
7346 |
'version' => '12.1.0.0',
|
7347 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerManagerLinkErrorEnum.php'
|
7348 |
),
|
7349 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemValidationErrorEnum' => array(
|
7350 |
'version' => '12.1.0.0',
|
7351 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemValidationErrorEnum.php'
|
7352 |
),
|
7353 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionFeedItemErrorEnum_ExtensionFeedItemError' => array(
|
7354 |
'version' => '12.1.0.0',
|
7355 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ExtensionFeedItemErrorEnum_ExtensionFeedItemError.php'
|
7356 |
),
|
7357 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccountLinkErrorEnum\\AccountLinkError' => array(
|
7358 |
'version' => '12.1.0.0',
|
7359 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccountLinkErrorEnum/AccountLinkError.php'
|
7360 |
),
|
7361 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupAssetErrorEnum' => array(
|
7362 |
'version' => '12.1.0.0',
|
7363 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupAssetErrorEnum.php'
|
7364 |
),
|
7365 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupBidModifierErrorEnum_AdGroupBidModifierError' => array(
|
7366 |
'version' => '12.1.0.0',
|
7367 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupBidModifierErrorEnum_AdGroupBidModifierError.php'
|
7368 |
),
|
7369 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionErrorEnum\\AdGroupCriterionError' => array(
|
7370 |
'version' => '12.1.0.0',
|
7371 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionErrorEnum/AdGroupCriterionError.php'
|
7372 |
),
|
7373 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerCustomizerErrorEnum' => array(
|
7374 |
'version' => '12.1.0.0',
|
7375 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerCustomizerErrorEnum.php'
|
7376 |
),
|
7377 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleSetErrorEnum' => array(
|
7378 |
'version' => '12.1.0.0',
|
7379 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleSetErrorEnum.php'
|
7380 |
),
|
7381 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupErrorEnum' => array(
|
7382 |
'version' => '12.1.0.0',
|
7383 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupErrorEnum.php'
|
7384 |
),
|
7385 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupErrorEnum' => array(
|
7386 |
'version' => '12.1.0.0',
|
7387 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupErrorEnum.php'
|
7388 |
),
|
7389 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaBundleErrorEnum\\MediaBundleError' => array(
|
7390 |
'version' => '12.1.0.0',
|
7391 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaBundleErrorEnum/MediaBundleError.php'
|
7392 |
),
|
7393 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerManagerLinkErrorEnum_CustomerManagerLinkError' => array(
|
7394 |
'version' => '12.1.0.0',
|
7395 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerManagerLinkErrorEnum_CustomerManagerLinkError.php'
|
7396 |
),
|
7397 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SharedCriterionErrorEnum_SharedCriterionError' => array(
|
7398 |
'version' => '12.1.0.0',
|
7399 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SharedCriterionErrorEnum_SharedCriterionError.php'
|
7400 |
),
|
7401 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingStrategyErrorEnum' => array(
|
7402 |
'version' => '12.1.0.0',
|
7403 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BiddingStrategyErrorEnum.php'
|
7404 |
),
|
7405 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ReachPlanErrorEnum\\ReachPlanError' => array(
|
7406 |
'version' => '12.1.0.0',
|
7407 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ReachPlanErrorEnum/ReachPlanError.php'
|
7408 |
),
|
7409 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyViolationErrorEnum_PolicyViolationError' => array(
|
7410 |
'version' => '12.1.0.0',
|
7411 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyViolationErrorEnum_PolicyViolationError.php'
|
7412 |
),
|
7413 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemTargetErrorEnum' => array(
|
7414 |
'version' => '12.1.0.0',
|
7415 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemTargetErrorEnum.php'
|
7416 |
),
|
7417 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ListOperationErrorEnum' => array(
|
7418 |
'version' => '12.1.0.0',
|
7419 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ListOperationErrorEnum.php'
|
7420 |
),
|
7421 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingErrorEnum\\BiddingError' => array(
|
7422 |
'version' => '12.1.0.0',
|
7423 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BiddingErrorEnum/BiddingError.php'
|
7424 |
),
|
7425 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NotEmptyErrorEnum' => array(
|
7426 |
'version' => '12.1.0.0',
|
7427 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NotEmptyErrorEnum.php'
|
7428 |
),
|
7429 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MutateErrorEnum_MutateError' => array(
|
7430 |
'version' => '12.1.0.0',
|
7431 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MutateErrorEnum_MutateError.php'
|
7432 |
),
|
7433 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceAccessDeniedErrorEnum\\ResourceAccessDeniedError' => array(
|
7434 |
'version' => '12.1.0.0',
|
7435 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceAccessDeniedErrorEnum/ResourceAccessDeniedError.php'
|
7436 |
),
|
7437 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ListOperationErrorEnum\\ListOperationError' => array(
|
7438 |
'version' => '12.1.0.0',
|
7439 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ListOperationErrorEnum/ListOperationError.php'
|
7440 |
),
|
7441 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomAudienceErrorEnum_CustomAudienceError' => array(
|
7442 |
'version' => '12.1.0.0',
|
7443 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomAudienceErrorEnum_CustomAudienceError.php'
|
7444 |
),
|
7445 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerFeedErrorEnum_CustomerFeedError' => array(
|
7446 |
'version' => '12.1.0.0',
|
7447 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerFeedErrorEnum_CustomerFeedError.php'
|
7448 |
),
|
7449 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdSharingErrorEnum' => array(
|
7450 |
'version' => '12.1.0.0',
|
7451 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdSharingErrorEnum.php'
|
7452 |
),
|
7453 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CurrencyCodeErrorEnum\\CurrencyCodeError' => array(
|
7454 |
'version' => '12.1.0.0',
|
7455 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CurrencyCodeErrorEnum/CurrencyCodeError.php'
|
7456 |
),
|
7457 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\TimeZoneErrorEnum' => array(
|
7458 |
'version' => '12.1.0.0',
|
7459 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/TimeZoneErrorEnum.php'
|
7460 |
),
|
7461 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaErrorDetails' => array(
|
7462 |
'version' => '12.1.0.0',
|
7463 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QuotaErrorDetails.php'
|
7464 |
),
|
7465 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SharedSetErrorEnum_SharedSetError' => array(
|
7466 |
'version' => '12.1.0.0',
|
7467 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SharedSetErrorEnum_SharedSetError.php'
|
7468 |
),
|
7469 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\GeoTargetConstantSuggestionErrorEnum' => array(
|
7470 |
'version' => '12.1.0.0',
|
7471 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/GeoTargetConstantSuggestionErrorEnum.php'
|
7472 |
),
|
7473 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeEventErrorEnum\\ChangeEventError' => array(
|
7474 |
'version' => '12.1.0.0',
|
7475 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeEventErrorEnum/ChangeEventError.php'
|
7476 |
),
|
7477 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetErrorEnum' => array(
|
7478 |
'version' => '12.1.0.0',
|
7479 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemSetErrorEnum.php'
|
7480 |
),
|
7481 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QueryErrorEnum_QueryError' => array(
|
7482 |
'version' => '12.1.0.0',
|
7483 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QueryErrorEnum_QueryError.php'
|
7484 |
),
|
7485 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\IdErrorEnum' => array(
|
7486 |
'version' => '12.1.0.0',
|
7487 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/IdErrorEnum.php'
|
7488 |
),
|
7489 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceAccessDeniedErrorEnum' => array(
|
7490 |
'version' => '12.1.0.0',
|
7491 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceAccessDeniedErrorEnum.php'
|
7492 |
),
|
7493 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionErrorEnum_AdGroupCriterionError' => array(
|
7494 |
'version' => '12.1.0.0',
|
7495 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionErrorEnum_AdGroupCriterionError.php'
|
7496 |
),
|
7497 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\StringLengthErrorEnum' => array(
|
7498 |
'version' => '12.1.0.0',
|
7499 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/StringLengthErrorEnum.php'
|
7500 |
),
|
7501 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedMappingErrorEnum\\FeedMappingError' => array(
|
7502 |
'version' => '12.1.0.0',
|
7503 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedMappingErrorEnum/FeedMappingError.php'
|
7504 |
),
|
7505 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PartialFailureErrorEnum' => array(
|
7506 |
'version' => '12.1.0.0',
|
7507 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PartialFailureErrorEnum.php'
|
7508 |
),
|
7509 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupFeedErrorEnum_AdGroupFeedError' => array(
|
7510 |
'version' => '12.1.0.0',
|
7511 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupFeedErrorEnum_AdGroupFeedError.php'
|
7512 |
),
|
7513 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedErrorEnum_FeedError' => array(
|
7514 |
'version' => '12.1.0.0',
|
7515 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedErrorEnum_FeedError.php'
|
7516 |
),
|
7517 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DistinctErrorEnum_DistinctError' => array(
|
7518 |
'version' => '12.1.0.0',
|
7519 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DistinctErrorEnum_DistinctError.php'
|
7520 |
),
|
7521 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PaymentsAccountErrorEnum_PaymentsAccountError' => array(
|
7522 |
'version' => '12.1.0.0',
|
7523 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PaymentsAccountErrorEnum_PaymentsAccountError.php'
|
7524 |
),
|
7525 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError' => array(
|
7526 |
'version' => '12.1.0.0',
|
7527 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError.php'
|
7528 |
),
|
7529 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemTargetErrorEnum_FeedItemTargetError' => array(
|
7530 |
'version' => '12.1.0.0',
|
7531 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemTargetErrorEnum_FeedItemTargetError.php'
|
7532 |
),
|
7533 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdParameterErrorEnum_AdParameterError' => array(
|
7534 |
'version' => '12.1.0.0',
|
7535 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdParameterErrorEnum_AdParameterError.php'
|
7536 |
),
|
7537 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaErrorEnum' => array(
|
7538 |
'version' => '12.1.0.0',
|
7539 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QuotaErrorEnum.php'
|
7540 |
),
|
7541 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AuthenticationErrorEnum_AuthenticationError' => array(
|
7542 |
'version' => '12.1.0.0',
|
7543 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AuthenticationErrorEnum_AuthenticationError.php'
|
7544 |
),
|
7545 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError' => array(
|
7546 |
'version' => '12.1.0.0',
|
7547 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError.php'
|
7548 |
),
|
7549 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomInterestErrorEnum_CustomInterestError' => array(
|
7550 |
'version' => '12.1.0.0',
|
7551 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomInterestErrorEnum_CustomInterestError.php'
|
7552 |
),
|
7553 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignErrorEnum_CampaignError' => array(
|
7554 |
'version' => '12.1.0.0',
|
7555 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignErrorEnum_CampaignError.php'
|
7556 |
),
|
7557 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetLinkErrorEnum\\FeedItemSetLinkError' => array(
|
7558 |
'version' => '12.1.0.0',
|
7559 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemSetLinkErrorEnum/FeedItemSetLinkError.php'
|
7560 |
),
|
7561 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerErrorEnum_CustomerError' => array(
|
7562 |
'version' => '12.1.0.0',
|
7563 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerErrorEnum_CustomerError.php'
|
7564 |
),
|
7565 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ImageErrorEnum\\ImageError' => array(
|
7566 |
'version' => '12.1.0.0',
|
7567 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ImageErrorEnum/ImageError.php'
|
7568 |
),
|
7569 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NotAllowlistedErrorEnum_NotAllowlistedError' => array(
|
7570 |
'version' => '12.1.0.0',
|
7571 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NotAllowlistedErrorEnum_NotAllowlistedError.php'
|
7572 |
),
|
7573 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BatchJobErrorEnum' => array(
|
7574 |
'version' => '12.1.0.0',
|
7575 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BatchJobErrorEnum.php'
|
7576 |
),
|
7577 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetErrorEnum\\FeedItemSetError' => array(
|
7578 |
'version' => '12.1.0.0',
|
7579 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemSetErrorEnum/FeedItemSetError.php'
|
7580 |
),
|
7581 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomConversionGoalErrorEnum_CustomConversionGoalError' => array(
|
7582 |
'version' => '12.1.0.0',
|
7583 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomConversionGoalErrorEnum_CustomConversionGoalError.php'
|
7584 |
),
|
7585 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\IdErrorEnum_IdError' => array(
|
7586 |
'version' => '12.1.0.0',
|
7587 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/IdErrorEnum_IdError.php'
|
7588 |
),
|
7589 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignFeedErrorEnum\\CampaignFeedError' => array(
|
7590 |
'version' => '12.1.0.0',
|
7591 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignFeedErrorEnum/CampaignFeedError.php'
|
7592 |
),
|
7593 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\StringLengthErrorEnum_StringLengthError' => array(
|
7594 |
'version' => '12.1.0.0',
|
7595 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/StringLengthErrorEnum_StringLengthError.php'
|
7596 |
),
|
7597 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BillingSetupErrorEnum_BillingSetupError' => array(
|
7598 |
'version' => '12.1.0.0',
|
7599 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BillingSetupErrorEnum_BillingSetupError.php'
|
7600 |
),
|
7601 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetErrorEnum\\AssetError' => array(
|
7602 |
'version' => '12.1.0.0',
|
7603 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetErrorEnum/AssetError.php'
|
7604 |
),
|
7605 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyFindingErrorEnum\\PolicyFindingError' => array(
|
7606 |
'version' => '12.1.0.0',
|
7607 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyFindingErrorEnum/PolicyFindingError.php'
|
7608 |
),
|
7609 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleErrorEnum_ConversionValueRuleError' => array(
|
7610 |
'version' => '12.1.0.0',
|
7611 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleErrorEnum_ConversionValueRuleError.php'
|
7612 |
),
|
7613 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\GoogleAdsFailure' => array(
|
7614 |
'version' => '12.1.0.0',
|
7615 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/GoogleAdsFailure.php'
|
7616 |
),
|
7617 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaErrorDetails_QuotaRateScope' => array(
|
7618 |
'version' => '12.1.0.0',
|
7619 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QuotaErrorDetails_QuotaRateScope.php'
|
7620 |
),
|
7621 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OperationAccessDeniedErrorEnum_OperationAccessDeniedError' => array(
|
7622 |
'version' => '12.1.0.0',
|
7623 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OperationAccessDeniedErrorEnum_OperationAccessDeniedError.php'
|
7624 |
),
|
7625 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AuthorizationErrorEnum' => array(
|
7626 |
'version' => '12.1.0.0',
|
7627 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AuthorizationErrorEnum.php'
|
7628 |
),
|
7629 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaUploadErrorEnum_MediaUploadError' => array(
|
7630 |
'version' => '12.1.0.0',
|
7631 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaUploadErrorEnum_MediaUploadError.php'
|
7632 |
),
|
7633 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ThirdPartyAppAnalyticsLinkErrorEnum\\ThirdPartyAppAnalyticsLinkError' => array(
|
7634 |
'version' => '12.1.0.0',
|
7635 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ThirdPartyAppAnalyticsLinkErrorEnum/ThirdPartyAppAnalyticsLinkError.php'
|
7636 |
),
|
7637 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DateRangeErrorEnum' => array(
|
7638 |
'version' => '12.1.0.0',
|
7639 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DateRangeErrorEnum.php'
|
7640 |
),
|
7641 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RegionCodeErrorEnum_RegionCodeError' => array(
|
7642 |
'version' => '12.1.0.0',
|
7643 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RegionCodeErrorEnum_RegionCodeError.php'
|
7644 |
),
|
7645 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupErrorEnum_AdGroupError' => array(
|
7646 |
'version' => '12.1.0.0',
|
7647 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupErrorEnum_AdGroupError.php'
|
7648 |
),
|
7649 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerManagerLinkErrorEnum\\CustomerManagerLinkError' => array(
|
7650 |
'version' => '12.1.0.0',
|
7651 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerManagerLinkErrorEnum/CustomerManagerLinkError.php'
|
7652 |
),
|
7653 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedAttributeReferenceErrorEnum' => array(
|
7654 |
'version' => '12.1.0.0',
|
7655 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedAttributeReferenceErrorEnum.php'
|
7656 |
),
|
7657 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RecommendationErrorEnum\\RecommendationError' => array(
|
7658 |
'version' => '12.1.0.0',
|
7659 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RecommendationErrorEnum/RecommendationError.php'
|
7660 |
),
|
7661 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemErrorEnum' => array(
|
7662 |
'version' => '12.1.0.0',
|
7663 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemErrorEnum.php'
|
7664 |
),
|
7665 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignExperimentErrorEnum_CampaignExperimentError' => array(
|
7666 |
'version' => '12.1.0.0',
|
7667 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignExperimentErrorEnum_CampaignExperimentError.php'
|
7668 |
),
|
7669 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ManagerLinkErrorEnum\\ManagerLinkError' => array(
|
7670 |
'version' => '12.1.0.0',
|
7671 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ManagerLinkErrorEnum/ManagerLinkError.php'
|
7672 |
),
|
7673 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\YoutubeVideoRegistrationErrorEnum\\YoutubeVideoRegistrationError' => array(
|
7674 |
'version' => '12.1.0.0',
|
7675 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/YoutubeVideoRegistrationErrorEnum/YoutubeVideoRegistrationError.php'
|
7676 |
),
|
7677 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RangeErrorEnum\\RangeError' => array(
|
7678 |
'version' => '12.1.0.0',
|
7679 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RangeErrorEnum/RangeError.php'
|
7680 |
),
|
7681 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedErrorEnum\\FeedError' => array(
|
7682 |
'version' => '12.1.0.0',
|
7683 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedErrorEnum/FeedError.php'
|
7684 |
),
|
7685 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupFeedErrorEnum\\AdGroupFeedError' => array(
|
7686 |
'version' => '12.1.0.0',
|
7687 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupFeedErrorEnum/AdGroupFeedError.php'
|
7688 |
),
|
7689 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionParsingErrorEnum\\FunctionParsingError' => array(
|
7690 |
'version' => '12.1.0.0',
|
7691 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FunctionParsingErrorEnum/FunctionParsingError.php'
|
7692 |
),
|
7693 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CountryCodeErrorEnum' => array(
|
7694 |
'version' => '12.1.0.0',
|
7695 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CountryCodeErrorEnum.php'
|
7696 |
),
|
7697 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignErrorEnum' => array(
|
7698 |
'version' => '12.1.0.0',
|
7699 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignErrorEnum.php'
|
7700 |
),
|
7701 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BatchJobErrorEnum_BatchJobError' => array(
|
7702 |
'version' => '12.1.0.0',
|
7703 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BatchJobErrorEnum_BatchJobError.php'
|
7704 |
),
|
7705 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DateErrorEnum' => array(
|
7706 |
'version' => '12.1.0.0',
|
7707 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DateErrorEnum.php'
|
7708 |
),
|
7709 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError' => array(
|
7710 |
'version' => '12.1.0.0',
|
7711 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError.php'
|
7712 |
),
|
7713 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\StringFormatErrorEnum' => array(
|
7714 |
'version' => '12.1.0.0',
|
7715 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/StringFormatErrorEnum.php'
|
7716 |
),
|
7717 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ContextErrorEnum\\ContextError' => array(
|
7718 |
'version' => '12.1.0.0',
|
7719 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ContextErrorEnum/ContextError.php'
|
7720 |
),
|
7721 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaFileErrorEnum\\MediaFileError' => array(
|
7722 |
'version' => '12.1.0.0',
|
7723 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaFileErrorEnum/MediaFileError.php'
|
7724 |
),
|
7725 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UserListErrorEnum' => array(
|
7726 |
'version' => '12.1.0.0',
|
7727 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UserListErrorEnum.php'
|
7728 |
),
|
7729 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleErrorEnum\\ConversionValueRuleError' => array(
|
7730 |
'version' => '12.1.0.0',
|
7731 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleErrorEnum/ConversionValueRuleError.php'
|
7732 |
),
|
7733 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UrlFieldErrorEnum\\UrlFieldError' => array(
|
7734 |
'version' => '12.1.0.0',
|
7735 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UrlFieldErrorEnum/UrlFieldError.php'
|
7736 |
),
|
7737 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeEventErrorEnum_ChangeEventError' => array(
|
7738 |
'version' => '12.1.0.0',
|
7739 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeEventErrorEnum_ChangeEventError.php'
|
7740 |
),
|
7741 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MultiplierErrorEnum\\MultiplierError' => array(
|
7742 |
'version' => '12.1.0.0',
|
7743 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MultiplierErrorEnum/MultiplierError.php'
|
7744 |
),
|
7745 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError' => array(
|
7746 |
'version' => '12.1.0.0',
|
7747 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError.php'
|
7748 |
),
|
7749 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaErrorDetails\\QuotaRateScope' => array(
|
7750 |
'version' => '12.1.0.0',
|
7751 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QuotaErrorDetails/QuotaRateScope.php'
|
7752 |
),
|
7753 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CollectionSizeErrorEnum_CollectionSizeError' => array(
|
7754 |
'version' => '12.1.0.0',
|
7755 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CollectionSizeErrorEnum_CollectionSizeError.php'
|
7756 |
),
|
7757 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomAudienceErrorEnum' => array(
|
7758 |
'version' => '12.1.0.0',
|
7759 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomAudienceErrorEnum.php'
|
7760 |
),
|
7761 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdxErrorEnum_AdxError' => array(
|
7762 |
'version' => '12.1.0.0',
|
7763 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdxErrorEnum_AdxError.php'
|
7764 |
),
|
7765 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdCustomizerErrorEnum_AdCustomizerError' => array(
|
7766 |
'version' => '12.1.0.0',
|
7767 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdCustomizerErrorEnum_AdCustomizerError.php'
|
7768 |
),
|
7769 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetLinkErrorEnum_AssetSetLinkError' => array(
|
7770 |
'version' => '12.1.0.0',
|
7771 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetLinkErrorEnum_AssetSetLinkError.php'
|
7772 |
),
|
7773 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ManagerLinkErrorEnum' => array(
|
7774 |
'version' => '12.1.0.0',
|
7775 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ManagerLinkErrorEnum.php'
|
7776 |
),
|
7777 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CriterionErrorEnum\\CriterionError' => array(
|
7778 |
'version' => '12.1.0.0',
|
7779 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CriterionErrorEnum/CriterionError.php'
|
7780 |
),
|
7781 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AuthenticationErrorEnum' => array(
|
7782 |
'version' => '12.1.0.0',
|
7783 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AuthenticationErrorEnum.php'
|
7784 |
),
|
7785 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UserListErrorEnum_UserListError' => array(
|
7786 |
'version' => '12.1.0.0',
|
7787 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UserListErrorEnum_UserListError.php'
|
7788 |
),
|
7789 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCriterionErrorEnum_CampaignCriterionError' => array(
|
7790 |
'version' => '12.1.0.0',
|
7791 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignCriterionErrorEnum_CampaignCriterionError.php'
|
7792 |
),
|
7793 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ErrorLocation' => array(
|
7794 |
'version' => '12.1.0.0',
|
7795 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ErrorLocation.php'
|
7796 |
),
|
7797 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignDraftErrorEnum\\CampaignDraftError' => array(
|
7798 |
'version' => '12.1.0.0',
|
7799 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignDraftErrorEnum/CampaignDraftError.php'
|
7800 |
),
|
7801 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionSettingErrorEnum' => array(
|
7802 |
'version' => '12.1.0.0',
|
7803 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ExtensionSettingErrorEnum.php'
|
7804 |
),
|
7805 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionSettingErrorEnum_ExtensionSettingError' => array(
|
7806 |
'version' => '12.1.0.0',
|
7807 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ExtensionSettingErrorEnum_ExtensionSettingError.php'
|
7808 |
),
|
7809 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\InvoiceErrorEnum_InvoiceError' => array(
|
7810 |
'version' => '12.1.0.0',
|
7811 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/InvoiceErrorEnum_InvoiceError.php'
|
7812 |
),
|
7813 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\LabelErrorEnum\\LabelError' => array(
|
7814 |
'version' => '12.1.0.0',
|
7815 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/LabelErrorEnum/LabelError.php'
|
7816 |
),
|
7817 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PaymentsAccountErrorEnum' => array(
|
7818 |
'version' => '12.1.0.0',
|
7819 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PaymentsAccountErrorEnum.php'
|
7820 |
),
|
7821 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerClientLinkErrorEnum\\CustomerClientLinkError' => array(
|
7822 |
'version' => '12.1.0.0',
|
7823 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerClientLinkErrorEnum/CustomerClientLinkError.php'
|
7824 |
),
|
7825 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AuthorizationErrorEnum\\AuthorizationError' => array(
|
7826 |
'version' => '12.1.0.0',
|
7827 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AuthorizationErrorEnum/AuthorizationError.php'
|
7828 |
),
|
7829 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignBudgetErrorEnum\\CampaignBudgetError' => array(
|
7830 |
'version' => '12.1.0.0',
|
7831 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignBudgetErrorEnum/CampaignBudgetError.php'
|
7832 |
),
|
7833 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OperationAccessDeniedErrorEnum\\OperationAccessDeniedError' => array(
|
7834 |
'version' => '12.1.0.0',
|
7835 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OperationAccessDeniedErrorEnum/OperationAccessDeniedError.php'
|
7836 |
),
|
7837 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ErrorDetails' => array(
|
7838 |
'version' => '12.1.0.0',
|
7839 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ErrorDetails.php'
|
7840 |
),
|
7841 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SharedSetErrorEnum' => array(
|
7842 |
'version' => '12.1.0.0',
|
7843 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SharedSetErrorEnum.php'
|
7844 |
),
|
7845 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupAdErrorEnum\\AdGroupAdError' => array(
|
7846 |
'version' => '12.1.0.0',
|
7847 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupAdErrorEnum/AdGroupAdError.php'
|
7848 |
),
|
7849 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DateRangeErrorEnum_DateRangeError' => array(
|
7850 |
'version' => '12.1.0.0',
|
7851 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DateRangeErrorEnum_DateRangeError.php'
|
7852 |
),
|
7853 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetAssetErrorEnum_AssetSetAssetError' => array(
|
7854 |
'version' => '12.1.0.0',
|
7855 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetAssetErrorEnum_AssetSetAssetError.php'
|
7856 |
),
|
7857 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AuthenticationErrorEnum\\AuthenticationError' => array(
|
7858 |
'version' => '12.1.0.0',
|
7859 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AuthenticationErrorEnum/AuthenticationError.php'
|
7860 |
),
|
7861 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeStatusErrorEnum\\ChangeStatusError' => array(
|
7862 |
'version' => '12.1.0.0',
|
7863 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeStatusErrorEnum/ChangeStatusError.php'
|
7864 |
),
|
7865 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignErrorEnum\\CampaignError' => array(
|
7866 |
'version' => '12.1.0.0',
|
7867 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignErrorEnum/CampaignError.php'
|
7868 |
),
|
7869 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ThirdPartyAppAnalyticsLinkErrorEnum' => array(
|
7870 |
'version' => '12.1.0.0',
|
7871 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ThirdPartyAppAnalyticsLinkErrorEnum.php'
|
7872 |
),
|
7873 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupAssetErrorEnum\\AssetGroupAssetError' => array(
|
7874 |
'version' => '12.1.0.0',
|
7875 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupAssetErrorEnum/AssetGroupAssetError.php'
|
7876 |
),
|
7877 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetAssetErrorEnum' => array(
|
7878 |
'version' => '12.1.0.0',
|
7879 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetAssetErrorEnum.php'
|
7880 |
),
|
7881 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemValidationErrorEnum_FeedItemValidationError' => array(
|
7882 |
'version' => '12.1.0.0',
|
7883 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemValidationErrorEnum_FeedItemValidationError.php'
|
7884 |
),
|
7885 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OperationAccessDeniedErrorEnum' => array(
|
7886 |
'version' => '12.1.0.0',
|
7887 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OperationAccessDeniedErrorEnum.php'
|
7888 |
),
|
7889 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdParameterErrorEnum\\AdParameterError' => array(
|
7890 |
'version' => '12.1.0.0',
|
7891 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdParameterErrorEnum/AdParameterError.php'
|
7892 |
),
|
7893 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeStatusErrorEnum_ChangeStatusError' => array(
|
7894 |
'version' => '12.1.0.0',
|
7895 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeStatusErrorEnum_ChangeStatusError.php'
|
7896 |
),
|
7897 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FieldErrorEnum_FieldError' => array(
|
7898 |
'version' => '12.1.0.0',
|
7899 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FieldErrorEnum_FieldError.php'
|
7900 |
),
|
7901 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PaymentsAccountErrorEnum\\PaymentsAccountError' => array(
|
7902 |
'version' => '12.1.0.0',
|
7903 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PaymentsAccountErrorEnum/PaymentsAccountError.php'
|
7904 |
),
|
7905 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\GeoTargetConstantSuggestionErrorEnum\\GeoTargetConstantSuggestionError' => array(
|
7906 |
'version' => '12.1.0.0',
|
7907 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/GeoTargetConstantSuggestionErrorEnum/GeoTargetConstantSuggestionError.php'
|
7908 |
),
|
7909 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SharedCriterionErrorEnum' => array(
|
7910 |
'version' => '12.1.0.0',
|
7911 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SharedCriterionErrorEnum.php'
|
7912 |
),
|
7913 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RequestErrorEnum\\RequestError' => array(
|
7914 |
'version' => '12.1.0.0',
|
7915 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RequestErrorEnum/RequestError.php'
|
7916 |
),
|
7917 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CriterionErrorEnum' => array(
|
7918 |
'version' => '12.1.0.0',
|
7919 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CriterionErrorEnum.php'
|
7920 |
),
|
7921 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PartialFailureErrorEnum_PartialFailureError' => array(
|
7922 |
'version' => '12.1.0.0',
|
7923 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PartialFailureErrorEnum_PartialFailureError.php'
|
7924 |
),
|
7925 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemSetLinkErrorEnum' => array(
|
7926 |
'version' => '12.1.0.0',
|
7927 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemSetLinkErrorEnum.php'
|
7928 |
),
|
7929 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OperatorErrorEnum_OperatorError' => array(
|
7930 |
'version' => '12.1.0.0',
|
7931 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OperatorErrorEnum_OperatorError.php'
|
7932 |
),
|
7933 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\StringFormatErrorEnum\\StringFormatError' => array(
|
7934 |
'version' => '12.1.0.0',
|
7935 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/StringFormatErrorEnum/StringFormatError.php'
|
7936 |
),
|
7937 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyViolationErrorEnum' => array(
|
7938 |
'version' => '12.1.0.0',
|
7939 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyViolationErrorEnum.php'
|
7940 |
),
|
7941 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\HeaderErrorEnum_HeaderError' => array(
|
7942 |
'version' => '12.1.0.0',
|
7943 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/HeaderErrorEnum_HeaderError.php'
|
7944 |
),
|
7945 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError' => array(
|
7946 |
'version' => '12.1.0.0',
|
7947 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError.php'
|
7948 |
),
|
7949 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ImageErrorEnum_ImageError' => array(
|
7950 |
'version' => '12.1.0.0',
|
7951 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ImageErrorEnum_ImageError.php'
|
7952 |
),
|
7953 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\LanguageCodeErrorEnum\\LanguageCodeError' => array(
|
7954 |
'version' => '12.1.0.0',
|
7955 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/LanguageCodeErrorEnum/LanguageCodeError.php'
|
7956 |
),
|
7957 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionErrorEnum_FunctionError' => array(
|
7958 |
'version' => '12.1.0.0',
|
7959 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FunctionErrorEnum_FunctionError.php'
|
7960 |
),
|
7961 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FieldMaskErrorEnum\\FieldMaskError' => array(
|
7962 |
'version' => '12.1.0.0',
|
7963 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FieldMaskErrorEnum/FieldMaskError.php'
|
7964 |
),
|
7965 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\YoutubeVideoRegistrationErrorEnum' => array(
|
7966 |
'version' => '12.1.0.0',
|
7967 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/YoutubeVideoRegistrationErrorEnum.php'
|
7968 |
),
|
7969 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCriterionErrorEnum\\CampaignCriterionError' => array(
|
7970 |
'version' => '12.1.0.0',
|
7971 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignCriterionErrorEnum/CampaignCriterionError.php'
|
7972 |
),
|
7973 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BillingSetupErrorEnum' => array(
|
7974 |
'version' => '12.1.0.0',
|
7975 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BillingSetupErrorEnum.php'
|
7976 |
),
|
7977 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemValidationErrorEnum\\FeedItemValidationError' => array(
|
7978 |
'version' => '12.1.0.0',
|
7979 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemValidationErrorEnum/FeedItemValidationError.php'
|
7980 |
),
|
7981 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetAssetErrorEnum\\AssetSetAssetError' => array(
|
7982 |
'version' => '12.1.0.0',
|
7983 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetAssetErrorEnum/AssetSetAssetError.php'
|
7984 |
),
|
7985 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanErrorEnum' => array(
|
7986 |
'version' => '12.1.0.0',
|
7987 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanErrorEnum.php'
|
7988 |
),
|
7989 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomizerAttributeErrorEnum' => array(
|
7990 |
'version' => '12.1.0.0',
|
7991 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomizerAttributeErrorEnum.php'
|
7992 |
),
|
7993 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CurrencyCodeErrorEnum_CurrencyCodeError' => array(
|
7994 |
'version' => '12.1.0.0',
|
7995 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CurrencyCodeErrorEnum_CurrencyCodeError.php'
|
7996 |
),
|
7997 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DateErrorEnum\\DateError' => array(
|
7998 |
'version' => '12.1.0.0',
|
7999 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DateErrorEnum/DateError.php'
|
8000 |
),
|
8001 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCustomizerErrorEnum\\AdGroupCustomizerError' => array(
|
8002 |
'version' => '12.1.0.0',
|
8003 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCustomizerErrorEnum/AdGroupCustomizerError.php'
|
8004 |
),
|
8005 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdParameterErrorEnum' => array(
|
8006 |
'version' => '12.1.0.0',
|
8007 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdParameterErrorEnum.php'
|
8008 |
),
|
8009 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionActionErrorEnum\\ConversionActionError' => array(
|
8010 |
'version' => '12.1.0.0',
|
8011 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionActionErrorEnum/ConversionActionError.php'
|
8012 |
),
|
8013 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NewResourceCreationErrorEnum' => array(
|
8014 |
'version' => '12.1.0.0',
|
8015 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NewResourceCreationErrorEnum.php'
|
8016 |
),
|
8017 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeEventErrorEnum' => array(
|
8018 |
'version' => '12.1.0.0',
|
8019 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeEventErrorEnum.php'
|
8020 |
),
|
8021 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionCustomVariableErrorEnum' => array(
|
8022 |
'version' => '12.1.0.0',
|
8023 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionCustomVariableErrorEnum.php'
|
8024 |
),
|
8025 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError' => array(
|
8026 |
'version' => '12.1.0.0',
|
8027 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError.php'
|
8028 |
),
|
8029 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\GoogleAdsError' => array(
|
8030 |
'version' => '12.1.0.0',
|
8031 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/GoogleAdsError.php'
|
8032 |
),
|
8033 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionActionErrorEnum_ConversionActionError' => array(
|
8034 |
'version' => '12.1.0.0',
|
8035 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionActionErrorEnum_ConversionActionError.php'
|
8036 |
),
|
8037 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupBidModifierErrorEnum' => array(
|
8038 |
'version' => '12.1.0.0',
|
8039 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupBidModifierErrorEnum.php'
|
8040 |
),
|
8041 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionCustomVariableErrorEnum\\ConversionCustomVariableError' => array(
|
8042 |
'version' => '12.1.0.0',
|
8043 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionCustomVariableErrorEnum/ConversionCustomVariableError.php'
|
8044 |
),
|
8045 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ResourceCountLimitExceededErrorEnum\\ResourceCountLimitExceededError' => array(
|
8046 |
'version' => '12.1.0.0',
|
8047 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ResourceCountLimitExceededErrorEnum/ResourceCountLimitExceededError.php'
|
8048 |
),
|
8049 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignExperimentErrorEnum' => array(
|
8050 |
'version' => '12.1.0.0',
|
8051 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignExperimentErrorEnum.php'
|
8052 |
),
|
8053 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SettingErrorEnum\\SettingError' => array(
|
8054 |
'version' => '12.1.0.0',
|
8055 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SettingErrorEnum/SettingError.php'
|
8056 |
),
|
8057 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccountLinkErrorEnum' => array(
|
8058 |
'version' => '12.1.0.0',
|
8059 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccountLinkErrorEnum.php'
|
8060 |
),
|
8061 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UserListErrorEnum\\UserListError' => array(
|
8062 |
'version' => '12.1.0.0',
|
8063 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UserListErrorEnum/UserListError.php'
|
8064 |
+
),
|
8065 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdErrorEnum_AdError' => array(
|
8066 |
+
'version' => '12.1.0.0',
|
8067 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdErrorEnum_AdError.php'
|
8068 |
),
|
8069 |
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedErrorEnum' => array(
|
8070 |
'version' => '12.1.0.0',
|
8071 |
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedErrorEnum.php'
|
8072 |
),
|
8073 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerUserAccessErrorEnum' => array(
|
8074 |
'version' => '12.1.0.0',
|
8075 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerUserAccessErrorEnum.php'
|
8076 |
),
|
8077 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignSharedSetErrorEnum_CampaignSharedSetError' => array(
|
8078 |
'version' => '12.1.0.0',
|
8079 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignSharedSetErrorEnum_CampaignSharedSetError.php'
|
8080 |
),
|
8081 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DatabaseErrorEnum' => array(
|
8082 |
'version' => '12.1.0.0',
|
8083 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DatabaseErrorEnum.php'
|
8084 |
),
|
8085 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupCriterionCustomizerErrorEnum\\AdGroupCriterionCustomizerError' => array(
|
8086 |
'version' => '12.1.0.0',
|
8087 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupCriterionCustomizerErrorEnum/AdGroupCriterionCustomizerError.php'
|
8088 |
),
|
8089 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BatchJobErrorEnum\\BatchJobError' => array(
|
8090 |
'version' => '12.1.0.0',
|
8091 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BatchJobErrorEnum/BatchJobError.php'
|
8092 |
),
|
8093 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionParsingErrorEnum_FunctionParsingError' => array(
|
8094 |
'version' => '12.1.0.0',
|
8095 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FunctionParsingErrorEnum_FunctionParsingError.php'
|
8096 |
),
|
8097 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignBudgetErrorEnum_CampaignBudgetError' => array(
|
8098 |
'version' => '12.1.0.0',
|
8099 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignBudgetErrorEnum_CampaignBudgetError.php'
|
8100 |
),
|
8101 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\EnumErrorEnum_EnumError' => array(
|
8102 |
'version' => '12.1.0.0',
|
8103 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/EnumErrorEnum_EnumError.php'
|
8104 |
),
|
8105 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RecommendationErrorEnum' => array(
|
8106 |
'version' => '12.1.0.0',
|
8107 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RecommendationErrorEnum.php'
|
8108 |
),
|
8109 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ContextErrorEnum_ContextError' => array(
|
8110 |
'version' => '12.1.0.0',
|
8111 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ContextErrorEnum_ContextError.php'
|
8112 |
),
|
8113 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignCustomizerErrorEnum' => array(
|
8114 |
'version' => '12.1.0.0',
|
8115 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignCustomizerErrorEnum.php'
|
8116 |
),
|
8117 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FieldErrorEnum' => array(
|
8118 |
'version' => '12.1.0.0',
|
8119 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FieldErrorEnum.php'
|
8120 |
),
|
8121 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetErrorEnum' => array(
|
8122 |
'version' => '12.1.0.0',
|
8123 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetErrorEnum.php'
|
8124 |
),
|
8125 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DatabaseErrorEnum_DatabaseError' => array(
|
8126 |
'version' => '12.1.0.0',
|
8127 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DatabaseErrorEnum_DatabaseError.php'
|
8128 |
),
|
8129 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetSetLinkErrorEnum' => array(
|
8130 |
'version' => '12.1.0.0',
|
8131 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetSetLinkErrorEnum.php'
|
8132 |
),
|
8133 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MerchantCenterErrorEnum_MerchantCenterError' => array(
|
8134 |
'version' => '12.1.0.0',
|
8135 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MerchantCenterErrorEnum_MerchantCenterError.php'
|
8136 |
),
|
8137 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AccountBudgetProposalErrorEnum' => array(
|
8138 |
'version' => '12.1.0.0',
|
8139 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AccountBudgetProposalErrorEnum.php'
|
8140 |
),
|
8141 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BillingSetupErrorEnum\\BillingSetupError' => array(
|
8142 |
'version' => '12.1.0.0',
|
8143 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BillingSetupErrorEnum/BillingSetupError.php'
|
8144 |
),
|
8145 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupAdErrorEnum_AdGroupAdError' => array(
|
8146 |
'version' => '12.1.0.0',
|
8147 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupAdErrorEnum_AdGroupAdError.php'
|
8148 |
),
|
8149 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\LanguageCodeErrorEnum_LanguageCodeError' => array(
|
8150 |
'version' => '12.1.0.0',
|
8151 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/LanguageCodeErrorEnum_LanguageCodeError.php'
|
8152 |
),
|
8153 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ChangeStatusErrorEnum' => array(
|
8154 |
'version' => '12.1.0.0',
|
8155 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ChangeStatusErrorEnum.php'
|
8156 |
),
|
8157 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\TimeZoneErrorEnum_TimeZoneError' => array(
|
8158 |
'version' => '12.1.0.0',
|
8159 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/TimeZoneErrorEnum_TimeZoneError.php'
|
8160 |
),
|
8161 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MultiplierErrorEnum_MultiplierError' => array(
|
8162 |
'version' => '12.1.0.0',
|
8163 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MultiplierErrorEnum_MultiplierError.php'
|
8164 |
),
|
8165 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NotEmptyErrorEnum_NotEmptyError' => array(
|
8166 |
'version' => '12.1.0.0',
|
8167 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NotEmptyErrorEnum_NotEmptyError.php'
|
8168 |
),
|
8169 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DistinctErrorEnum\\DistinctError' => array(
|
8170 |
'version' => '12.1.0.0',
|
8171 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DistinctErrorEnum/DistinctError.php'
|
8172 |
),
|
8173 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupBidModifierErrorEnum\\AdGroupBidModifierError' => array(
|
8174 |
'version' => '12.1.0.0',
|
8175 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupBidModifierErrorEnum/AdGroupBidModifierError.php'
|
8176 |
),
|
8177 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionUploadErrorEnum_ConversionUploadError' => array(
|
8178 |
'version' => '12.1.0.0',
|
8179 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionUploadErrorEnum_ConversionUploadError.php'
|
8180 |
),
|
8181 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SizeLimitErrorEnum' => array(
|
8182 |
'version' => '12.1.0.0',
|
8183 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SizeLimitErrorEnum.php'
|
8184 |
),
|
8185 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RangeErrorEnum' => array(
|
8186 |
'version' => '12.1.0.0',
|
8187 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RangeErrorEnum.php'
|
8188 |
),
|
8189 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UserDataErrorEnum\\UserDataError' => array(
|
8190 |
'version' => '12.1.0.0',
|
8191 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UserDataErrorEnum/UserDataError.php'
|
8192 |
),
|
8193 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MerchantCenterErrorEnum\\MerchantCenterError' => array(
|
8194 |
'version' => '12.1.0.0',
|
8195 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MerchantCenterErrorEnum/MerchantCenterError.php'
|
8196 |
),
|
8197 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ListOperationErrorEnum_ListOperationError' => array(
|
8198 |
'version' => '12.1.0.0',
|
8199 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ListOperationErrorEnum_ListOperationError.php'
|
8200 |
),
|
8201 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\StringFormatErrorEnum_StringFormatError' => array(
|
8202 |
'version' => '12.1.0.0',
|
8203 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/StringFormatErrorEnum_StringFormatError.php'
|
8204 |
),
|
8205 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedMappingErrorEnum_FeedMappingError' => array(
|
8206 |
'version' => '12.1.0.0',
|
8207 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedMappingErrorEnum_FeedMappingError.php'
|
8208 |
),
|
8209 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DateRangeErrorEnum\\DateRangeError' => array(
|
8210 |
'version' => '12.1.0.0',
|
8211 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DateRangeErrorEnum/DateRangeError.php'
|
8212 |
),
|
8213 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NewResourceCreationErrorEnum_NewResourceCreationError' => array(
|
8214 |
'version' => '12.1.0.0',
|
8215 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NewResourceCreationErrorEnum_NewResourceCreationError.php'
|
8216 |
),
|
8217 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaErrorEnum\\QuotaError' => array(
|
8218 |
'version' => '12.1.0.0',
|
8219 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QuotaErrorEnum/QuotaError.php'
|
8220 |
),
|
8221 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedMappingErrorEnum' => array(
|
8222 |
'version' => '12.1.0.0',
|
8223 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedMappingErrorEnum.php'
|
8224 |
),
|
8225 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingStrategyErrorEnum_BiddingStrategyError' => array(
|
8226 |
'version' => '12.1.0.0',
|
8227 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BiddingStrategyErrorEnum_BiddingStrategyError.php'
|
8228 |
),
|
8229 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemTargetErrorEnum\\FeedItemTargetError' => array(
|
8230 |
'version' => '12.1.0.0',
|
8231 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemTargetErrorEnum/FeedItemTargetError.php'
|
8232 |
),
|
8233 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\DatabaseErrorEnum\\DatabaseError' => array(
|
8234 |
'version' => '12.1.0.0',
|
8235 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/DatabaseErrorEnum/DatabaseError.php'
|
8236 |
),
|
8237 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionAdjustmentUploadErrorEnum\\ConversionAdjustmentUploadError' => array(
|
8238 |
'version' => '12.1.0.0',
|
8239 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionAdjustmentUploadErrorEnum/ConversionAdjustmentUploadError.php'
|
8240 |
),
|
8241 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanAdGroupErrorEnum\\KeywordPlanAdGroupError' => array(
|
8242 |
'version' => '12.1.0.0',
|
8243 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanAdGroupErrorEnum/KeywordPlanAdGroupError.php'
|
8244 |
),
|
8245 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\EnumErrorEnum\\EnumError' => array(
|
8246 |
'version' => '12.1.0.0',
|
8247 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/EnumErrorEnum/EnumError.php'
|
8248 |
),
|
8249 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\OfflineUserDataJobErrorEnum_OfflineUserDataJobError' => array(
|
8250 |
'version' => '12.1.0.0',
|
8251 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/OfflineUserDataJobErrorEnum_OfflineUserDataJobError.php'
|
8252 |
),
|
8253 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionParsingErrorEnum' => array(
|
8254 |
'version' => '12.1.0.0',
|
8255 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FunctionParsingErrorEnum.php'
|
8256 |
),
|
8257 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError' => array(
|
8258 |
'version' => '12.1.0.0',
|
8259 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError.php'
|
8260 |
),
|
8261 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetLinkErrorEnum\\AssetLinkError' => array(
|
8262 |
'version' => '12.1.0.0',
|
8263 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetLinkErrorEnum/AssetLinkError.php'
|
8264 |
),
|
8265 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaBundleErrorEnum' => array(
|
8266 |
'version' => '12.1.0.0',
|
8267 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaBundleErrorEnum.php'
|
8268 |
),
|
8269 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanIdeaErrorEnum' => array(
|
8270 |
'version' => '12.1.0.0',
|
8271 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanIdeaErrorEnum.php'
|
8272 |
),
|
8273 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AssetGroupErrorEnum_AssetGroupError' => array(
|
8274 |
'version' => '12.1.0.0',
|
8275 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AssetGroupErrorEnum_AssetGroupError.php'
|
8276 |
),
|
8277 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\TimeZoneErrorEnum\\TimeZoneError' => array(
|
8278 |
'version' => '12.1.0.0',
|
8279 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/TimeZoneErrorEnum/TimeZoneError.php'
|
8280 |
),
|
8281 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomizerAttributeErrorEnum_CustomizerAttributeError' => array(
|
8282 |
'version' => '12.1.0.0',
|
8283 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomizerAttributeErrorEnum_CustomizerAttributeError.php'
|
8284 |
),
|
8285 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\BiddingStrategyErrorEnum\\BiddingStrategyError' => array(
|
8286 |
'version' => '12.1.0.0',
|
8287 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/BiddingStrategyErrorEnum/BiddingStrategyError.php'
|
8288 |
),
|
8289 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ExtensionFeedItemErrorEnum' => array(
|
8290 |
'version' => '12.1.0.0',
|
8291 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ExtensionFeedItemErrorEnum.php'
|
8292 |
),
|
8293 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\KeywordPlanCampaignErrorEnum' => array(
|
8294 |
'version' => '12.1.0.0',
|
8295 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/KeywordPlanCampaignErrorEnum.php'
|
8296 |
),
|
8297 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionValueRuleSetErrorEnum\\ConversionValueRuleSetError' => array(
|
8298 |
'version' => '12.1.0.0',
|
8299 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionValueRuleSetErrorEnum/ConversionValueRuleSetError.php'
|
8300 |
),
|
8301 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FeedItemErrorEnum_FeedItemError' => array(
|
8302 |
'version' => '12.1.0.0',
|
8303 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FeedItemErrorEnum_FeedItemError.php'
|
8304 |
),
|
8305 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyViolationDetails' => array(
|
8306 |
'version' => '12.1.0.0',
|
8307 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyViolationDetails.php'
|
8308 |
),
|
8309 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyFindingErrorEnum' => array(
|
8310 |
'version' => '12.1.0.0',
|
8311 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyFindingErrorEnum.php'
|
8312 |
),
|
8313 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ConversionActionErrorEnum' => array(
|
8314 |
'version' => '12.1.0.0',
|
8315 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ConversionActionErrorEnum.php'
|
8316 |
),
|
8317 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\InvoiceErrorEnum\\InvoiceError' => array(
|
8318 |
'version' => '12.1.0.0',
|
8319 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/InvoiceErrorEnum/InvoiceError.php'
|
8320 |
),
|
8321 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\MediaUploadErrorEnum' => array(
|
8322 |
'version' => '12.1.0.0',
|
8323 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/MediaUploadErrorEnum.php'
|
8324 |
),
|
8325 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdxErrorEnum' => array(
|
8326 |
'version' => '12.1.0.0',
|
8327 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdxErrorEnum.php'
|
8328 |
),
|
8329 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\PolicyFindingDetails' => array(
|
8330 |
'version' => '12.1.0.0',
|
8331 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/PolicyFindingDetails.php'
|
8332 |
),
|
8333 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\QuotaErrorEnum_QuotaError' => array(
|
8334 |
'version' => '12.1.0.0',
|
8335 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/QuotaErrorEnum_QuotaError.php'
|
8336 |
),
|
8337 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CampaignDraftErrorEnum_CampaignDraftError' => array(
|
8338 |
'version' => '12.1.0.0',
|
8339 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CampaignDraftErrorEnum_CampaignDraftError.php'
|
8340 |
),
|
8341 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\NullErrorEnum_NullError' => array(
|
8342 |
'version' => '12.1.0.0',
|
8343 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/NullErrorEnum_NullError.php'
|
8344 |
),
|
8345 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\FunctionErrorEnum\\FunctionError' => array(
|
8346 |
'version' => '12.1.0.0',
|
8347 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/FunctionErrorEnum/FunctionError.php'
|
8348 |
),
|
8349 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AdGroupFeedErrorEnum' => array(
|
8350 |
'version' => '12.1.0.0',
|
8351 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AdGroupFeedErrorEnum.php'
|
8352 |
),
|
8353 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\AuthorizationErrorEnum_AuthorizationError' => array(
|
8354 |
'version' => '12.1.0.0',
|
8355 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/AuthorizationErrorEnum_AuthorizationError.php'
|
8356 |
),
|
8357 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerUserAccessErrorEnum\\CustomerUserAccessError' => array(
|
8358 |
'version' => '12.1.0.0',
|
8359 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerUserAccessErrorEnum/CustomerUserAccessError.php'
|
8360 |
),
|
8361 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SizeLimitErrorEnum\\SizeLimitError' => array(
|
8362 |
'version' => '12.1.0.0',
|
8363 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SizeLimitErrorEnum/SizeLimitError.php'
|
8364 |
),
|
8365 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\UserDataErrorEnum_UserDataError' => array(
|
8366 |
'version' => '12.1.0.0',
|
8367 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/UserDataErrorEnum_UserDataError.php'
|
8368 |
),
|
8369 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SettingErrorEnum' => array(
|
8370 |
'version' => '12.1.0.0',
|
8371 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SettingErrorEnum.php'
|
8372 |
),
|
8373 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\ReachPlanErrorEnum' => array(
|
8374 |
'version' => '12.1.0.0',
|
8375 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/ReachPlanErrorEnum.php'
|
8376 |
),
|
8377 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\CustomerFeedErrorEnum' => array(
|
8378 |
'version' => '12.1.0.0',
|
8379 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/CustomerFeedErrorEnum.php'
|
8380 |
),
|
8381 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\SharedCriterionErrorEnum\\SharedCriterionError' => array(
|
8382 |
'version' => '12.1.0.0',
|
8383 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/SharedCriterionErrorEnum/SharedCriterionError.php'
|
8384 |
),
|
8385 |
+
'Google\\Ads\\GoogleAds\\V9\\Errors\\RangeErrorEnum_RangeError' => array(
|
8386 |
'version' => '12.1.0.0',
|
8387 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Errors/RangeErrorEnum_RangeError.php'
|
8388 |
),
|
8389 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupAdServiceGrpcClient' => array(
|
8390 |
'version' => '12.1.0.0',
|
8391 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdGroupAdServiceGrpcClient.php'
|
8392 |
),
|
8393 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CreateAccountLinkRequest' => array(
|
8394 |
'version' => '12.1.0.0',
|
8395 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CreateAccountLinkRequest.php'
|
8396 |
),
|
8397 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAdGroupAdLabelResult' => array(
|
8398 |
'version' => '12.1.0.0',
|
8399 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAdGroupAdLabelResult.php'
|
8400 |
),
|
8401 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationResult' => array(
|
8402 |
'version' => '12.1.0.0',
|
8403 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationResult.php'
|
8404 |
),
|
8405 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestSmartCampaignBudgetOptionsRequest' => array(
|
8406 |
'version' => '12.1.0.0',
|
8407 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestSmartCampaignBudgetOptionsRequest.php'
|
8408 |
),
|
8409 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerResponse' => array(
|
8410 |
'version' => '12.1.0.0',
|
8411 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerResponse.php'
|
8412 |
),
|
8413 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ReachForecast' => array(
|
8414 |
'version' => '12.1.0.0',
|
8415 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ReachForecast.php'
|
8416 |
),
|
8417 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\DismissRecommendationResponse\\DismissRecommendationResult' => array(
|
8418 |
'version' => '12.1.0.0',
|
8419 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/DismissRecommendationResponse/DismissRecommendationResult.php'
|
8420 |
),
|
8421 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetAdGroupRequest' => array(
|
8422 |
'version' => '12.1.0.0',
|
8423 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetAdGroupRequest.php'
|
8424 |
),
|
8425 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListAccessibleCustomersResponse' => array(
|
8426 |
'version' => '12.1.0.0',
|
8427 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListAccessibleCustomersResponse.php'
|
8428 |
),
|
8429 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ConversionActionOperation' => array(
|
8430 |
'version' => '12.1.0.0',
|
8431 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ConversionActionOperation.php'
|
8432 |
),
|
8433 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerUserAccessInvitationResponse' => array(
|
8434 |
'version' => '12.1.0.0',
|
8435 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerUserAccessInvitationResponse.php'
|
8436 |
),
|
8437 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CallConversion' => array(
|
8438 |
'version' => '12.1.0.0',
|
8439 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CallConversion.php'
|
8440 |
),
|
8441 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestGeoTargetConstantsRequest' => array(
|
8442 |
'version' => '12.1.0.0',
|
8443 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestGeoTargetConstantsRequest.php'
|
8444 |
),
|
8445 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\PlannedProduct' => array(
|
8446 |
'version' => '12.1.0.0',
|
8447 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/PlannedProduct.php'
|
8448 |
),
|
8449 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetAccountLinkRequest' => array(
|
8450 |
'version' => '12.1.0.0',
|
8451 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetAccountLinkRequest.php'
|
8452 |
),
|
8453 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CreateOfflineUserDataJobResponse' => array(
|
8454 |
'version' => '12.1.0.0',
|
8455 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CreateOfflineUserDataJobResponse.php'
|
8456 |
),
|
8457 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\BatchJobResult' => array(
|
8458 |
'version' => '12.1.0.0',
|
8459 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/BatchJobResult.php'
|
8460 |
),
|
8461 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerClientLinkRequest' => array(
|
8462 |
'version' => '12.1.0.0',
|
8463 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerClientLinkRequest.php'
|
8464 |
),
|
8465 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\RegenerateShareableLinkIdResponse' => array(
|
8466 |
'version' => '12.1.0.0',
|
8467 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/RegenerateShareableLinkIdResponse.php'
|
8468 |
),
|
8469 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListInvoicesRequest' => array(
|
8470 |
'version' => '12.1.0.0',
|
8471 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListInvoicesRequest.php'
|
8472 |
),
|
8473 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerUserAccessRequest' => array(
|
8474 |
'version' => '12.1.0.0',
|
8475 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerUserAccessRequest.php'
|
8476 |
),
|
8477 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationResponse' => array(
|
8478 |
'version' => '12.1.0.0',
|
8479 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationResponse.php'
|
8480 |
),
|
8481 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\KeywordPlanKeywordHistoricalMetrics' => array(
|
8482 |
'version' => '12.1.0.0',
|
8483 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/KeywordPlanKeywordHistoricalMetrics.php'
|
8484 |
),
|
8485 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerRequest' => array(
|
8486 |
'version' => '12.1.0.0',
|
8487 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerRequest.php'
|
8488 |
),
|
8489 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CreateCampaignExperimentRequest' => array(
|
8490 |
'version' => '12.1.0.0',
|
8491 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CreateCampaignExperimentRequest.php'
|
8492 |
),
|
8493 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AddOfflineUserDataJobOperationsRequest' => array(
|
8494 |
'version' => '12.1.0.0',
|
8495 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AddOfflineUserDataJobOperationsRequest.php'
|
8496 |
),
|
8497 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateMerchantCenterLinkResult' => array(
|
8498 |
'version' => '12.1.0.0',
|
8499 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateMerchantCenterLinkResult.php'
|
8500 |
),
|
8501 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CreateCampaignExperimentMetadata' => array(
|
8502 |
'version' => '12.1.0.0',
|
8503 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CreateCampaignExperimentMetadata.php'
|
8504 |
),
|
8505 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Targeting' => array(
|
8506 |
'version' => '12.1.0.0',
|
8507 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Targeting.php'
|
8508 |
),
|
8509 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListBatchJobResultsResponse' => array(
|
8510 |
'version' => '12.1.0.0',
|
8511 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListBatchJobResultsResponse.php'
|
8512 |
),
|
8513 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestKeywordThemesResponse' => array(
|
8514 |
'version' => '12.1.0.0',
|
8515 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestKeywordThemesResponse.php'
|
8516 |
),
|
8517 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerNegativeCriteriaRequest' => array(
|
8518 |
'version' => '12.1.0.0',
|
8519 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerNegativeCriteriaRequest.php'
|
8520 |
),
|
8521 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CampaignBudgetOperation' => array(
|
8522 |
'version' => '12.1.0.0',
|
8523 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CampaignBudgetOperation.php'
|
8524 |
),
|
8525 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\KeywordParameters' => array(
|
8526 |
'version' => '12.1.0.0',
|
8527 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/KeywordParameters.php'
|
8528 |
),
|
8529 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\MoveUnusedBudgetParameters' => array(
|
8530 |
'version' => '12.1.0.0',
|
8531 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/MoveUnusedBudgetParameters.php'
|
8532 |
),
|
8533 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\ResponsiveSearchAdParameters' => array(
|
8534 |
'version' => '12.1.0.0',
|
8535 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/ResponsiveSearchAdParameters.php'
|
8536 |
),
|
8537 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\TextAdParameters' => array(
|
8538 |
'version' => '12.1.0.0',
|
8539 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/TextAdParameters.php'
|
8540 |
),
|
8541 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\TargetRoasOptInParameters' => array(
|
8542 |
'version' => '12.1.0.0',
|
8543 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/TargetRoasOptInParameters.php'
|
8544 |
),
|
8545 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\TargetCpaOptInParameters' => array(
|
8546 |
'version' => '12.1.0.0',
|
8547 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/TargetCpaOptInParameters.php'
|
8548 |
),
|
8549 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\SitelinkExtensionParameters' => array(
|
8550 |
'version' => '12.1.0.0',
|
8551 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/SitelinkExtensionParameters.php'
|
8552 |
),
|
8553 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\CampaignBudgetParameters' => array(
|
8554 |
'version' => '12.1.0.0',
|
8555 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/CampaignBudgetParameters.php'
|
8556 |
),
|
8557 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\CalloutExtensionParameters' => array(
|
8558 |
'version' => '12.1.0.0',
|
8559 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/CalloutExtensionParameters.php'
|
8560 |
),
|
8561 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation\\CallExtensionParameters' => array(
|
8562 |
'version' => '12.1.0.0',
|
8563 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation/CallExtensionParameters.php'
|
8564 |
),
|
8565 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListPlannableProductsRequest' => array(
|
8566 |
'version' => '12.1.0.0',
|
8567 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListPlannableProductsRequest.php'
|
8568 |
),
|
8569 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateMerchantCenterLinkResponse' => array(
|
8570 |
'version' => '12.1.0.0',
|
8571 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateMerchantCenterLinkResponse.php'
|
8572 |
),
|
8573 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCampaignResult' => array(
|
8574 |
'version' => '12.1.0.0',
|
8575 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCampaignResult.php'
|
8576 |
),
|
8577 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAdGroupCriterionResult' => array(
|
8578 |
'version' => '12.1.0.0',
|
8579 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAdGroupCriterionResult.php'
|
8580 |
),
|
8581 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\PromoteCampaignDraftRequest' => array(
|
8582 |
'version' => '12.1.0.0',
|
8583 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/PromoteCampaignDraftRequest.php'
|
8584 |
),
|
8585 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\KeywordPlanMaxCpcBidForecast' => array(
|
8586 |
'version' => '12.1.0.0',
|
8587 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/KeywordPlanMaxCpcBidForecast.php'
|
8588 |
),
|
8589 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerNegativeCriteriaResult' => array(
|
8590 |
'version' => '12.1.0.0',
|
8591 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerNegativeCriteriaResult.php'
|
8592 |
),
|
8593 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ClickConversion' => array(
|
8594 |
'version' => '12.1.0.0',
|
8595 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ClickConversion.php'
|
8596 |
),
|
8597 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation' => array(
|
8598 |
'version' => '12.1.0.0',
|
8599 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation.php'
|
8600 |
),
|
8601 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListCampaignDraftAsyncErrorsResponse' => array(
|
8602 |
'version' => '12.1.0.0',
|
8603 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListCampaignDraftAsyncErrorsResponse.php'
|
8604 |
),
|
8605 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateReachForecastResponse' => array(
|
8606 |
'version' => '12.1.0.0',
|
8607 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateReachForecastResponse.php'
|
8608 |
),
|
8609 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\DismissRecommendationResponse_DismissRecommendationResult' => array(
|
8610 |
'version' => '12.1.0.0',
|
8611 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/DismissRecommendationResponse_DismissRecommendationResult.php'
|
8612 |
),
|
8613 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdOperation' => array(
|
8614 |
'version' => '12.1.0.0',
|
8615 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdOperation.php'
|
8616 |
),
|
8617 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GeoTargetConstantServiceClient' => array(
|
8618 |
'version' => '12.1.0.0',
|
8619 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GeoTargetConstantServiceClient.php'
|
8620 |
),
|
8621 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\BillingSetupServiceGrpcClient' => array(
|
8622 |
'version' => '12.1.0.0',
|
8623 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/BillingSetupServiceGrpcClient.php'
|
8624 |
),
|
8625 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\OnTargetAudienceMetrics' => array(
|
8626 |
'version' => '12.1.0.0',
|
8627 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/OnTargetAudienceMetrics.php'
|
8628 |
),
|
8629 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation_MoveUnusedBudgetParameters' => array(
|
8630 |
'version' => '12.1.0.0',
|
8631 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation_MoveUnusedBudgetParameters.php'
|
8632 |
),
|
8633 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\FrequencyCap' => array(
|
8634 |
'version' => '12.1.0.0',
|
8635 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/FrequencyCap.php'
|
8636 |
),
|
8637 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateReachForecastRequest' => array(
|
8638 |
'version' => '12.1.0.0',
|
8639 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateReachForecastRequest.php'
|
8640 |
),
|
8641 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ConversionAdjustment' => array(
|
8642 |
'version' => '12.1.0.0',
|
8643 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ConversionAdjustment.php'
|
8644 |
),
|
8645 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListInvoicesResponse' => array(
|
8646 |
'version' => '12.1.0.0',
|
8647 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListInvoicesResponse.php'
|
8648 |
),
|
8649 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetCustomerRequest' => array(
|
8650 |
'version' => '12.1.0.0',
|
8651 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetCustomerRequest.php'
|
8652 |
),
|
8653 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestSmartCampaignBudgetOptionsResponse_BudgetOption' => array(
|
8654 |
'version' => '12.1.0.0',
|
8655 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestSmartCampaignBudgetOptionsResponse_BudgetOption.php'
|
8656 |
),
|
8657 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\KeywordSeed' => array(
|
8658 |
'version' => '12.1.0.0',
|
8659 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/KeywordSeed.php'
|
8660 |
),
|
8661 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MerchantCenterLinkOperation' => array(
|
8662 |
'version' => '12.1.0.0',
|
8663 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MerchantCenterLinkOperation.php'
|
8664 |
),
|
8665 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\EffectiveFrequencyBreakdown' => array(
|
8666 |
'version' => '12.1.0.0',
|
8667 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/EffectiveFrequencyBreakdown.php'
|
8668 |
),
|
8669 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateForecastCurveRequest' => array(
|
8670 |
'version' => '12.1.0.0',
|
8671 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateForecastCurveRequest.php'
|
8672 |
),
|
8673 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CustomVariable' => array(
|
8674 |
'version' => '12.1.0.0',
|
8675 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CustomVariable.php'
|
8676 |
),
|
8677 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CampaignBudgetServiceClient' => array(
|
8678 |
'version' => '12.1.0.0',
|
8679 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CampaignBudgetServiceClient.php'
|
8680 |
),
|
8681 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\PromoteCampaignExperimentRequest' => array(
|
8682 |
'version' => '12.1.0.0',
|
8683 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/PromoteCampaignExperimentRequest.php'
|
8684 |
),
|
8685 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CustomerUserAccessOperation' => array(
|
8686 |
'version' => '12.1.0.0',
|
8687 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CustomerUserAccessOperation.php'
|
8688 |
),
|
8689 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAdGroupAdsResponse' => array(
|
8690 |
'version' => '12.1.0.0',
|
8691 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAdGroupAdsResponse.php'
|
8692 |
),
|
8693 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation_CampaignBudgetParameters' => array(
|
8694 |
'version' => '12.1.0.0',
|
8695 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation_CampaignBudgetParameters.php'
|
8696 |
),
|
8697 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdServiceGrpcClient' => array(
|
8698 |
'version' => '12.1.0.0',
|
8699 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdServiceGrpcClient.php'
|
8700 |
),
|
8701 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateConversionActionResult' => array(
|
8702 |
'version' => '12.1.0.0',
|
8703 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateConversionActionResult.php'
|
8704 |
),
|
8705 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\DismissRecommendationRequest' => array(
|
8706 |
'version' => '12.1.0.0',
|
8707 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/DismissRecommendationRequest.php'
|
8708 |
),
|
8709 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateConversionActionsRequest' => array(
|
8710 |
'version' => '12.1.0.0',
|
8711 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateConversionActionsRequest.php'
|
8712 |
),
|
8713 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation_CalloutExtensionParameters' => array(
|
8714 |
'version' => '12.1.0.0',
|
8715 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation_CalloutExtensionParameters.php'
|
8716 |
),
|
8717 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\UploadUserDataResponse' => array(
|
8718 |
'version' => '12.1.0.0',
|
8719 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/UploadUserDataResponse.php'
|
8720 |
),
|
8721 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GoogleAdsServiceClient' => array(
|
8722 |
'version' => '12.1.0.0',
|
8723 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GoogleAdsServiceClient.php'
|
8724 |
),
|
8725 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CustomerServiceGrpcClient' => array(
|
8726 |
'version' => '12.1.0.0',
|
8727 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CustomerServiceGrpcClient.php'
|
8728 |
),
|
8729 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\DismissRecommendationResponse' => array(
|
8730 |
'version' => '12.1.0.0',
|
8731 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/DismissRecommendationResponse.php'
|
8732 |
),
|
8733 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ConversionActionServiceClient' => array(
|
8734 |
'version' => '12.1.0.0',
|
8735 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ConversionActionServiceClient.php'
|
8736 |
),
|
8737 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\UploadConversionAdjustmentsRequest' => array(
|
8738 |
'version' => '12.1.0.0',
|
8739 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/UploadConversionAdjustmentsRequest.php'
|
8740 |
),
|
8741 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListMerchantCenterLinksRequest' => array(
|
8742 |
'version' => '12.1.0.0',
|
8743 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListMerchantCenterLinksRequest.php'
|
8744 |
),
|
8745 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerUserAccessInvitationRequest' => array(
|
8746 |
'version' => '12.1.0.0',
|
8747 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerUserAccessInvitationRequest.php'
|
8748 |
),
|
8749 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateProductMixIdeasResponse' => array(
|
8750 |
'version' => '12.1.0.0',
|
8751 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateProductMixIdeasResponse.php'
|
8752 |
),
|
8753 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateBillingSetupRequest' => array(
|
8754 |
'version' => '12.1.0.0',
|
8755 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateBillingSetupRequest.php'
|
8756 |
),
|
8757 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\EffectiveFrequencyLimit' => array(
|
8758 |
'version' => '12.1.0.0',
|
8759 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/EffectiveFrequencyLimit.php'
|
8760 |
),
|
8761 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateConversionActionsResponse' => array(
|
8762 |
'version' => '12.1.0.0',
|
8763 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateConversionActionsResponse.php'
|
8764 |
),
|
8765 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateBiddingDataExclusionsResult' => array(
|
8766 |
'version' => '12.1.0.0',
|
8767 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateBiddingDataExclusionsResult.php'
|
8768 |
),
|
8769 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\RunOfflineUserDataJobRequest' => array(
|
8770 |
'version' => '12.1.0.0',
|
8771 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/RunOfflineUserDataJobRequest.php'
|
8772 |
),
|
8773 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AssetGroupServiceGrpcClient' => array(
|
8774 |
'version' => '12.1.0.0',
|
8775 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AssetGroupServiceGrpcClient.php'
|
8776 |
),
|
8777 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ProductAllocation' => array(
|
8778 |
'version' => '12.1.0.0',
|
8779 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ProductAllocation.php'
|
8780 |
),
|
8781 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCampaignCriteriaResponse' => array(
|
8782 |
'version' => '12.1.0.0',
|
8783 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCampaignCriteriaResponse.php'
|
8784 |
),
|
8785 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetCustomerUserAccessRequest' => array(
|
8786 |
'version' => '12.1.0.0',
|
8787 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetCustomerUserAccessRequest.php'
|
8788 |
),
|
8789 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupAdLabelOperation' => array(
|
8790 |
'version' => '12.1.0.0',
|
8791 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdGroupAdLabelOperation.php'
|
8792 |
),
|
8793 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCampaignBudgetsResponse' => array(
|
8794 |
'version' => '12.1.0.0',
|
8795 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCampaignBudgetsResponse.php'
|
8796 |
),
|
8797 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestSmartCampaignBudgetOptionsResponse' => array(
|
8798 |
'version' => '12.1.0.0',
|
8799 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestSmartCampaignBudgetOptionsResponse.php'
|
8800 |
),
|
8801 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\UploadCallConversionsResponse' => array(
|
8802 |
'version' => '12.1.0.0',
|
8803 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/UploadCallConversionsResponse.php'
|
8804 |
),
|
8805 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetConversionActionRequest' => array(
|
8806 |
'version' => '12.1.0.0',
|
8807 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetConversionActionRequest.php'
|
8808 |
),
|
8809 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetAssetGroupRequest' => array(
|
8810 |
'version' => '12.1.0.0',
|
8811 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetAssetGroupRequest.php'
|
8812 |
),
|
8813 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SearchGoogleAdsFieldsRequest' => array(
|
8814 |
'version' => '12.1.0.0',
|
8815 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SearchGoogleAdsFieldsRequest.php'
|
8816 |
),
|
8817 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestSmartCampaignAdRequest' => array(
|
8818 |
'version' => '12.1.0.0',
|
8819 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestSmartCampaignAdRequest.php'
|
8820 |
),
|
8821 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerUserAccessResult' => array(
|
8822 |
'version' => '12.1.0.0',
|
8823 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerUserAccessResult.php'
|
8824 |
),
|
8825 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CustomerServiceClient' => array(
|
8826 |
'version' => '12.1.0.0',
|
8827 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CustomerServiceClient.php'
|
8828 |
),
|
8829 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AdGroupCriterionServiceGapicClient' => array(
|
8830 |
'version' => '12.1.0.0',
|
8831 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AdGroupCriterionServiceGapicClient.php'
|
8832 |
),
|
8833 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\ConversionActionServiceGapicClient' => array(
|
8834 |
'version' => '12.1.0.0',
|
8835 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/ConversionActionServiceGapicClient.php'
|
8836 |
),
|
8837 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AssetGroupServiceGapicClient' => array(
|
8838 |
'version' => '12.1.0.0',
|
8839 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AssetGroupServiceGapicClient.php'
|
8840 |
),
|
8841 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AssetGroupListingGroupFilterServiceGapicClient' => array(
|
8842 |
'version' => '12.1.0.0',
|
8843 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AssetGroupListingGroupFilterServiceGapicClient.php'
|
8844 |
),
|
8845 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\GeoTargetConstantServiceGapicClient' => array(
|
8846 |
'version' => '12.1.0.0',
|
8847 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/GeoTargetConstantServiceGapicClient.php'
|
8848 |
),
|
8849 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\CustomerUserAccessServiceGapicClient' => array(
|
8850 |
'version' => '12.1.0.0',
|
8851 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/CustomerUserAccessServiceGapicClient.php'
|
8852 |
),
|
8853 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\GoogleAdsServiceGapicClient' => array(
|
8854 |
'version' => '12.1.0.0',
|
8855 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/GoogleAdsServiceGapicClient.php'
|
8856 |
),
|
8857 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AdGroupAdServiceGapicClient' => array(
|
8858 |
'version' => '12.1.0.0',
|
8859 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AdGroupAdServiceGapicClient.php'
|
8860 |
),
|
8861 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\CampaignBudgetServiceGapicClient' => array(
|
8862 |
'version' => '12.1.0.0',
|
8863 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/CampaignBudgetServiceGapicClient.php'
|
8864 |
),
|
8865 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\ShoppingPerformanceViewServiceGapicClient' => array(
|
8866 |
'version' => '12.1.0.0',
|
8867 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/ShoppingPerformanceViewServiceGapicClient.php'
|
8868 |
),
|
8869 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\BillingSetupServiceGapicClient' => array(
|
8870 |
'version' => '12.1.0.0',
|
8871 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/BillingSetupServiceGapicClient.php'
|
8872 |
),
|
8873 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\MerchantCenterLinkServiceGapicClient' => array(
|
8874 |
'version' => '12.1.0.0',
|
8875 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/MerchantCenterLinkServiceGapicClient.php'
|
8876 |
),
|
8877 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\CampaignServiceGapicClient' => array(
|
8878 |
'version' => '12.1.0.0',
|
8879 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/CampaignServiceGapicClient.php'
|
8880 |
),
|
8881 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\CustomerServiceGapicClient' => array(
|
8882 |
'version' => '12.1.0.0',
|
8883 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/CustomerServiceGapicClient.php'
|
8884 |
),
|
8885 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AccountBudgetServiceGapicClient' => array(
|
8886 |
'version' => '12.1.0.0',
|
8887 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AccountBudgetServiceGapicClient.php'
|
8888 |
),
|
8889 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AccountLinkServiceGapicClient' => array(
|
8890 |
'version' => '12.1.0.0',
|
8891 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AccountLinkServiceGapicClient.php'
|
8892 |
),
|
8893 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AdServiceGapicClient' => array(
|
8894 |
'version' => '12.1.0.0',
|
8895 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AdServiceGapicClient.php'
|
8896 |
),
|
8897 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\CampaignCriterionServiceGapicClient' => array(
|
8898 |
'version' => '12.1.0.0',
|
8899 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/CampaignCriterionServiceGapicClient.php'
|
8900 |
),
|
8901 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AdGroupServiceGapicClient' => array(
|
8902 |
'version' => '12.1.0.0',
|
8903 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AdGroupServiceGapicClient.php'
|
8904 |
),
|
8905 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\Gapic\\AdGroupAdLabelServiceGapicClient' => array(
|
8906 |
'version' => '12.1.0.0',
|
8907 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/Gapic/AdGroupAdLabelServiceGapicClient.php'
|
8908 |
),
|
8909 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationRequest' => array(
|
8910 |
'version' => '12.1.0.0',
|
8911 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationRequest.php'
|
8912 |
),
|
8913 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateBatchJobResponse' => array(
|
8914 |
'version' => '12.1.0.0',
|
8915 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateBatchJobResponse.php'
|
8916 |
),
|
8917 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\UrlSeed' => array(
|
8918 |
'version' => '12.1.0.0',
|
8919 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/UrlSeed.php'
|
8920 |
),
|
8921 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\UploadClickConversionsRequest' => array(
|
8922 |
'version' => '12.1.0.0',
|
8923 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/UploadClickConversionsRequest.php'
|
8924 |
),
|
8925 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateForecastMetricsRequest' => array(
|
8926 |
'version' => '12.1.0.0',
|
8927 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateForecastMetricsRequest.php'
|
8928 |
),
|
8929 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CampaignServiceClient' => array(
|
8930 |
'version' => '12.1.0.0',
|
8931 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CampaignServiceClient.php'
|
8932 |
),
|
8933 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdServiceClient' => array(
|
8934 |
'version' => '12.1.0.0',
|
8935 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdServiceClient.php'
|
8936 |
),
|
8937 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\KeywordPlanCampaignForecastCurve' => array(
|
8938 |
'version' => '12.1.0.0',
|
8939 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/KeywordPlanCampaignForecastCurve.php'
|
8940 |
),
|
8941 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SearchGoogleAdsResponse' => array(
|
8942 |
'version' => '12.1.0.0',
|
8943 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SearchGoogleAdsResponse.php'
|
8944 |
),
|
8945 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateForecastTimeSeriesRequest' => array(
|
8946 |
'version' => '12.1.0.0',
|
8947 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateForecastTimeSeriesRequest.php'
|
8948 |
),
|
8949 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GetAdGroupAdLabelRequest' => array(
|
8950 |
'version' => '12.1.0.0',
|
8951 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GetAdGroupAdLabelRequest.php'
|
8952 |
),
|
8953 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupCriterionServiceClient' => array(
|
8954 |
'version' => '12.1.0.0',
|
8955 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdGroupCriterionServiceClient.php'
|
8956 |
),
|
8957 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAccountLinkRequest' => array(
|
8958 |
'version' => '12.1.0.0',
|
8959 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAccountLinkRequest.php'
|
8960 |
),
|
8961 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MerchantCenterLinkServiceGrpcClient' => array(
|
8962 |
'version' => '12.1.0.0',
|
8963 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MerchantCenterLinkServiceGrpcClient.php'
|
8964 |
),
|
8965 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\KeywordPlanWeeklyTimeSeriesForecast' => array(
|
8966 |
'version' => '12.1.0.0',
|
8967 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/KeywordPlanWeeklyTimeSeriesForecast.php'
|
8968 |
),
|
8969 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GoogleAdsServiceGrpcClient' => array(
|
8970 |
'version' => '12.1.0.0',
|
8971 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GoogleAdsServiceGrpcClient.php'
|
8972 |
),
|
8973 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation_CallExtensionParameters' => array(
|
8974 |
'version' => '12.1.0.0',
|
8975 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation_CallExtensionParameters.php'
|
8976 |
),
|
8977 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\EndCampaignExperimentRequest' => array(
|
8978 |
'version' => '12.1.0.0',
|
8979 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/EndCampaignExperimentRequest.php'
|
8980 |
),
|
8981 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SuggestKeywordThemeConstantsResponse' => array(
|
8982 |
'version' => '12.1.0.0',
|
8983 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SuggestKeywordThemeConstantsResponse.php'
|
8984 |
),
|
8985 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ListBatchJobResultsRequest' => array(
|
8986 |
'version' => '12.1.0.0',
|
8987 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ListBatchJobResultsRequest.php'
|
8988 |
),
|
8989 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAssetGroupListingGroupFiltersResponse' => array(
|
8990 |
'version' => '12.1.0.0',
|
8991 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAssetGroupListingGroupFiltersResponse.php'
|
8992 |
),
|
8993 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CampaignDuration' => array(
|
8994 |
'version' => '12.1.0.0',
|
8995 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CampaignDuration.php'
|
8996 |
),
|
8997 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CampaignOperation' => array(
|
8998 |
'version' => '12.1.0.0',
|
8999 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CampaignOperation.php'
|
9000 |
),
|
9001 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAccountBudgetProposalResponse' => array(
|
9002 |
'version' => '12.1.0.0',
|
9003 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAccountBudgetProposalResponse.php'
|
9004 |
),
|
9005 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MoveManagerLinkRequest' => array(
|
9006 |
'version' => '12.1.0.0',
|
9007 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MoveManagerLinkRequest.php'
|
9008 |
),
|
9009 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupAdLabelServiceClient' => array(
|
9010 |
'version' => '12.1.0.0',
|
9011 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdGroupAdLabelServiceClient.php'
|
9012 |
),
|
9013 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ApplyRecommendationOperation_TargetRoasOptInParameters' => array(
|
9014 |
'version' => '12.1.0.0',
|
9015 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ApplyRecommendationOperation_TargetRoasOptInParameters.php'
|
9016 |
),
|
9017 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\GenerateForecastTimeSeriesResponse' => array(
|
9018 |
'version' => '12.1.0.0',
|
9019 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/GenerateForecastTimeSeriesResponse.php'
|
9020 |
),
|
9021 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\ConversionActionServiceGrpcClient' => array(
|
9022 |
'version' => '12.1.0.0',
|
9023 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/ConversionActionServiceGrpcClient.php'
|
9024 |
),
|
9025 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AssetGroupListingGroupFilterServiceClient' => array(
|
9026 |
'version' => '12.1.0.0',
|
9027 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AssetGroupListingGroupFilterServiceClient.php'
|
9028 |
),
|
9029 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAssetGroupListingGroupFilterResult' => array(
|
9030 |
'version' => '12.1.0.0',
|
9031 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAssetGroupListingGroupFilterResult.php'
|
9032 |
),
|
9033 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SiteSeed' => array(
|
9034 |
'version' => '12.1.0.0',
|
9035 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SiteSeed.php'
|
9036 |
),
|
9037 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\SearchGoogleAdsFieldsResponse' => array(
|
9038 |
'version' => '12.1.0.0',
|
9039 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/SearchGoogleAdsFieldsResponse.php'
|
9040 |
),
|
9041 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\KeywordPlanCampaignForecast' => array(
|
9042 |
'version' => '12.1.0.0',
|
9043 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/KeywordPlanCampaignForecast.php'
|
9044 |
),
|
9045 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAdGroupResult' => array(
|
9046 |
'version' => '12.1.0.0',
|
9047 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateAdGroupResult.php'
|
9048 |
),
|
9049 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CartData' => array(
|
9050 |
'version' => '12.1.0.0',
|
9051 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CartData.php'
|
9052 |
),
|
9053 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\AdGroupAdServiceClient' => array(
|
9054 |
'version' => '12.1.0.0',
|
9055 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/AdGroupAdServiceClient.php'
|
9056 |
),
|
9057 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateCustomerResult' => array(
|
9058 |
'version' => '12.1.0.0',
|
9059 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/MutateCustomerResult.php'
|
9060 |
),
|
9061 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\CampaignServiceGrpcClient' => array(
|
9062 |
'version' => '12.1.0.0',
|
9063 |
+
'path' => $vendorDir . '/googleads/google-ads-php/src/Google/Ads/GoogleAds/V9/Services/CampaignServiceGrpcClient.php'
|
9064 |
),
|
9065 |
+
'Google\\Ads\\GoogleAds\\V9\\Services\\MutateAssetGroupListingGroupFiltersRequest' => array(
|
9066 |
'version' => '12.1.0.0',
|
9067 |
+
'path' => $vendorDir . '/googleads/google-ads-ph
|