├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── index.js ├── index.php ├── lib └── chunky.php ├── package.json ├── src ├── forms │ └── upload.vue └── index.js └── vendor ├── ankitpokhrel └── tus-php │ ├── bin │ └── tus │ └── src │ ├── Cache │ ├── AbstractCache.php │ ├── ApcuStore.php │ ├── CacheFactory.php │ ├── Cacheable.php │ ├── FileStore.php │ └── RedisStore.php │ ├── Commands │ └── ExpirationCommand.php │ ├── Config.php │ ├── Config │ ├── client.php │ └── server.php │ ├── Events │ ├── TusEvent.php │ ├── UploadComplete.php │ ├── UploadCreated.php │ ├── UploadMerged.php │ └── UploadProgress.php │ ├── Exception │ ├── ConnectionException.php │ ├── FileException.php │ ├── OutOfRangeException.php │ └── TusException.php │ ├── File.php │ ├── Middleware │ ├── Cors.php │ ├── GlobalHeaders.php │ ├── Middleware.php │ └── TusMiddleware.php │ ├── Request.php │ ├── Response.php │ └── Tus │ ├── AbstractTus.php │ ├── Client.php │ └── Server.php ├── autoload.php ├── bin ├── carbon └── tus ├── brick └── math │ └── src │ ├── BigDecimal.php │ ├── BigInteger.php │ ├── BigNumber.php │ ├── BigRational.php │ ├── Exception │ ├── DivisionByZeroException.php │ ├── IntegerOverflowException.php │ ├── MathException.php │ ├── NegativeNumberException.php │ ├── NumberFormatException.php │ └── RoundingNecessaryException.php │ ├── Internal │ ├── Calculator.php │ └── Calculator │ │ ├── BcMathCalculator.php │ │ ├── GmpCalculator.php │ │ └── NativeCalculator.php │ └── RoundingMode.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.php └── platform_check.php ├── guzzlehttp ├── guzzle │ └── src │ │ ├── BodySummarizer.php │ │ ├── BodySummarizerInterface.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── ClientTrait.php │ │ ├── Cookie │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── SessionCookieJar.php │ │ └── SetCookie.php │ │ ├── Exception │ │ ├── BadResponseException.php │ │ ├── ClientException.php │ │ ├── ConnectException.php │ │ ├── GuzzleException.php │ │ ├── InvalidArgumentException.php │ │ ├── RequestException.php │ │ ├── ServerException.php │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php │ │ ├── Handler │ │ ├── CurlFactory.php │ │ ├── CurlFactoryInterface.php │ │ ├── CurlHandler.php │ │ ├── CurlMultiHandler.php │ │ ├── EasyHandle.php │ │ ├── HeaderProcessor.php │ │ ├── MockHandler.php │ │ ├── Proxy.php │ │ └── StreamHandler.php │ │ ├── HandlerStack.php │ │ ├── MessageFormatter.php │ │ ├── MessageFormatterInterface.php │ │ ├── Middleware.php │ │ ├── Pool.php │ │ ├── PrepareBodyMiddleware.php │ │ ├── RedirectMiddleware.php │ │ ├── RequestOptions.php │ │ ├── RetryMiddleware.php │ │ ├── TransferStats.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ └── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── Coroutine.php │ │ ├── Create.php │ │ ├── Each.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Is.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── TaskQueueInterface.php │ │ ├── Utils.php │ │ ├── functions.php │ │ └── functions_include.php └── psr7 │ └── src │ ├── AppendStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── Exception │ └── MalformedUriException.php │ ├── FnStream.php │ ├── Header.php │ ├── HttpFactory.php │ ├── InflateStream.php │ ├── LazyOpenStream.php │ ├── LimitStream.php │ ├── Message.php │ ├── MessageTrait.php │ ├── MimeType.php │ ├── MultipartStream.php │ ├── NoSeekStream.php │ ├── PumpStream.php │ ├── Query.php │ ├── Request.php │ ├── Response.php │ ├── Rfc7230.php │ ├── ServerRequest.php │ ├── Stream.php │ ├── StreamDecoratorTrait.php │ ├── StreamWrapper.php │ ├── UploadedFile.php │ ├── Uri.php │ ├── UriComparator.php │ ├── UriNormalizer.php │ ├── UriResolver.php │ └── Utils.php ├── nesbot └── carbon │ ├── bin │ ├── carbon │ └── carbon.bat │ ├── extension.neon │ ├── lazy │ └── Carbon │ │ ├── MessageFormatter │ │ ├── MessageFormatterMapperStrongType.php │ │ └── MessageFormatterMapperWeakType.php │ │ ├── PHPStan │ │ ├── AbstractMacroBuiltin.php │ │ ├── AbstractMacroStatic.php │ │ ├── MacroStrongType.php │ │ └── MacroWeakType.php │ │ ├── TranslatorStrongType.php │ │ └── TranslatorWeakType.php │ └── src │ └── Carbon │ ├── AbstractTranslator.php │ ├── Carbon.php │ ├── CarbonConverterInterface.php │ ├── CarbonImmutable.php │ ├── CarbonInterface.php │ ├── CarbonInterval.php │ ├── CarbonPeriod.php │ ├── CarbonPeriodImmutable.php │ ├── CarbonTimeZone.php │ ├── Cli │ └── Invoker.php │ ├── Doctrine │ ├── CarbonDoctrineType.php │ ├── CarbonImmutableType.php │ ├── CarbonType.php │ ├── CarbonTypeConverter.php │ ├── DateTimeDefaultPrecision.php │ ├── DateTimeImmutableType.php │ └── DateTimeType.php │ ├── Exceptions │ ├── BadComparisonUnitException.php │ ├── BadFluentConstructorException.php │ ├── BadFluentSetterException.php │ ├── BadMethodCallException.php │ ├── EndLessPeriodException.php │ ├── Exception.php │ ├── ImmutableException.php │ ├── InvalidArgumentException.php │ ├── InvalidCastException.php │ ├── InvalidDateException.php │ ├── InvalidFormatException.php │ ├── InvalidIntervalException.php │ ├── InvalidPeriodDateException.php │ ├── InvalidPeriodParameterException.php │ ├── InvalidTimeZoneException.php │ ├── InvalidTypeException.php │ ├── NotACarbonClassException.php │ ├── NotAPeriodException.php │ ├── NotLocaleAwareException.php │ ├── OutOfRangeException.php │ ├── ParseErrorException.php │ ├── RuntimeException.php │ ├── UnitException.php │ ├── UnitNotConfiguredException.php │ ├── UnknownGetterException.php │ ├── UnknownMethodException.php │ ├── UnknownSetterException.php │ ├── UnknownUnitException.php │ └── UnreachableException.php │ ├── Factory.php │ ├── FactoryImmutable.php │ ├── Lang │ ├── aa.php │ ├── aa_DJ.php │ ├── aa_ER.php │ ├── aa_ER@saaho.php │ ├── aa_ET.php │ ├── af.php │ ├── af_NA.php │ ├── af_ZA.php │ ├── agq.php │ ├── agr.php │ ├── agr_PE.php │ ├── ak.php │ ├── ak_GH.php │ ├── am.php │ ├── am_ET.php │ ├── an.php │ ├── an_ES.php │ ├── anp.php │ ├── anp_IN.php │ ├── ar.php │ ├── ar_AE.php │ ├── ar_BH.php │ ├── ar_DJ.php │ ├── ar_DZ.php │ ├── ar_EG.php │ ├── ar_EH.php │ ├── ar_ER.php │ ├── ar_IL.php │ ├── ar_IN.php │ ├── ar_IQ.php │ ├── ar_JO.php │ ├── ar_KM.php │ ├── ar_KW.php │ ├── ar_LB.php │ ├── ar_LY.php │ ├── ar_MA.php │ ├── ar_MR.php │ ├── ar_OM.php │ ├── ar_PS.php │ ├── ar_QA.php │ ├── ar_SA.php │ ├── ar_SD.php │ ├── ar_SO.php │ ├── ar_SS.php │ ├── ar_SY.php │ ├── ar_Shakl.php │ ├── ar_TD.php │ ├── ar_TN.php │ ├── ar_YE.php │ ├── as.php │ ├── as_IN.php │ ├── asa.php │ ├── ast.php │ ├── ast_ES.php │ ├── ayc.php │ ├── ayc_PE.php │ ├── az.php │ ├── az_AZ.php │ ├── az_Cyrl.php │ ├── az_IR.php │ ├── az_Latn.php │ ├── bas.php │ ├── be.php │ ├── be_BY.php │ ├── be_BY@latin.php │ ├── bem.php │ ├── bem_ZM.php │ ├── ber.php │ ├── ber_DZ.php │ ├── ber_MA.php │ ├── bez.php │ ├── bg.php │ ├── bg_BG.php │ ├── bhb.php │ ├── bhb_IN.php │ ├── bho.php │ ├── bho_IN.php │ ├── bi.php │ ├── bi_VU.php │ ├── bm.php │ ├── bn.php │ ├── bn_BD.php │ ├── bn_IN.php │ ├── bo.php │ ├── bo_CN.php │ ├── bo_IN.php │ ├── br.php │ ├── br_FR.php │ ├── brx.php │ ├── brx_IN.php │ ├── bs.php │ ├── bs_BA.php │ ├── bs_Cyrl.php │ ├── bs_Latn.php │ ├── byn.php │ ├── byn_ER.php │ ├── ca.php │ ├── ca_AD.php │ ├── ca_ES.php │ ├── ca_ES_Valencia.php │ ├── ca_FR.php │ ├── ca_IT.php │ ├── ccp.php │ ├── ccp_IN.php │ ├── ce.php │ ├── ce_RU.php │ ├── cgg.php │ ├── chr.php │ ├── chr_US.php │ ├── ckb.php │ ├── cmn.php │ ├── cmn_TW.php │ ├── crh.php │ ├── crh_UA.php │ ├── cs.php │ ├── cs_CZ.php │ ├── csb.php │ ├── csb_PL.php │ ├── cu.php │ ├── cv.php │ ├── cv_RU.php │ ├── cy.php │ ├── cy_GB.php │ ├── da.php │ ├── da_DK.php │ ├── da_GL.php │ ├── dav.php │ ├── de.php │ ├── de_AT.php │ ├── de_BE.php │ ├── de_CH.php │ ├── de_DE.php │ ├── de_IT.php │ ├── de_LI.php │ ├── de_LU.php │ ├── dje.php │ ├── doi.php │ ├── doi_IN.php │ ├── dsb.php │ ├── dsb_DE.php │ ├── dua.php │ ├── dv.php │ ├── dv_MV.php │ ├── dyo.php │ ├── dz.php │ ├── dz_BT.php │ ├── ebu.php │ ├── ee.php │ ├── ee_TG.php │ ├── el.php │ ├── el_CY.php │ ├── el_GR.php │ ├── en.php │ ├── en_001.php │ ├── en_150.php │ ├── en_AG.php │ ├── en_AI.php │ ├── en_AS.php │ ├── en_AT.php │ ├── en_AU.php │ ├── en_BB.php │ ├── en_BE.php │ ├── en_BI.php │ ├── en_BM.php │ ├── en_BS.php │ ├── en_BW.php │ ├── en_BZ.php │ ├── en_CA.php │ ├── en_CC.php │ ├── en_CH.php │ ├── en_CK.php │ ├── en_CM.php │ ├── en_CX.php │ ├── en_CY.php │ ├── en_DE.php │ ├── en_DG.php │ ├── en_DK.php │ ├── en_DM.php │ ├── en_ER.php │ ├── en_FI.php │ ├── en_FJ.php │ ├── en_FK.php │ ├── en_FM.php │ ├── en_GB.php │ ├── en_GD.php │ ├── en_GG.php │ ├── en_GH.php │ ├── en_GI.php │ ├── en_GM.php │ ├── en_GU.php │ ├── en_GY.php │ ├── en_HK.php │ ├── en_IE.php │ ├── en_IL.php │ ├── en_IM.php │ ├── en_IN.php │ ├── en_IO.php │ ├── en_ISO.php │ ├── en_JE.php │ ├── en_JM.php │ ├── en_KE.php │ ├── en_KI.php │ ├── en_KN.php │ ├── en_KY.php │ ├── en_LC.php │ ├── en_LR.php │ ├── en_LS.php │ ├── en_MG.php │ ├── en_MH.php │ ├── en_MO.php │ ├── en_MP.php │ ├── en_MS.php │ ├── en_MT.php │ ├── en_MU.php │ ├── en_MW.php │ ├── en_MY.php │ ├── en_NA.php │ ├── en_NF.php │ ├── en_NG.php │ ├── en_NL.php │ ├── en_NR.php │ ├── en_NU.php │ ├── en_NZ.php │ ├── en_PG.php │ ├── en_PH.php │ ├── en_PK.php │ ├── en_PN.php │ ├── en_PR.php │ ├── en_PW.php │ ├── en_RW.php │ ├── en_SB.php │ ├── en_SC.php │ ├── en_SD.php │ ├── en_SE.php │ ├── en_SG.php │ ├── en_SH.php │ ├── en_SI.php │ ├── en_SL.php │ ├── en_SS.php │ ├── en_SX.php │ ├── en_SZ.php │ ├── en_TC.php │ ├── en_TK.php │ ├── en_TO.php │ ├── en_TT.php │ ├── en_TV.php │ ├── en_TZ.php │ ├── en_UG.php │ ├── en_UM.php │ ├── en_US.php │ ├── en_US_Posix.php │ ├── en_VC.php │ ├── en_VG.php │ ├── en_VI.php │ ├── en_VU.php │ ├── en_WS.php │ ├── en_ZA.php │ ├── en_ZM.php │ ├── en_ZW.php │ ├── eo.php │ ├── es.php │ ├── es_419.php │ ├── es_AR.php │ ├── es_BO.php │ ├── es_BR.php │ ├── es_BZ.php │ ├── es_CL.php │ ├── es_CO.php │ ├── es_CR.php │ ├── es_CU.php │ ├── es_DO.php │ ├── es_EA.php │ ├── es_EC.php │ ├── es_ES.php │ ├── es_GQ.php │ ├── es_GT.php │ ├── es_HN.php │ ├── es_IC.php │ ├── es_MX.php │ ├── es_NI.php │ ├── es_PA.php │ ├── es_PE.php │ ├── es_PH.php │ ├── es_PR.php │ ├── es_PY.php │ ├── es_SV.php │ ├── es_US.php │ ├── es_UY.php │ ├── es_VE.php │ ├── et.php │ ├── et_EE.php │ ├── eu.php │ ├── eu_ES.php │ ├── ewo.php │ ├── fa.php │ ├── fa_AF.php │ ├── fa_IR.php │ ├── ff.php │ ├── ff_CM.php │ ├── ff_GN.php │ ├── ff_MR.php │ ├── ff_SN.php │ ├── fi.php │ ├── fi_FI.php │ ├── fil.php │ ├── fil_PH.php │ ├── fo.php │ ├── fo_DK.php │ ├── fo_FO.php │ ├── fr.php │ ├── fr_BE.php │ ├── fr_BF.php │ ├── fr_BI.php │ ├── fr_BJ.php │ ├── fr_BL.php │ ├── fr_CA.php │ ├── fr_CD.php │ ├── fr_CF.php │ ├── fr_CG.php │ ├── fr_CH.php │ ├── fr_CI.php │ ├── fr_CM.php │ ├── fr_DJ.php │ ├── fr_DZ.php │ ├── fr_FR.php │ ├── fr_GA.php │ ├── fr_GF.php │ ├── fr_GN.php │ ├── fr_GP.php │ ├── fr_GQ.php │ ├── fr_HT.php │ ├── fr_KM.php │ ├── fr_LU.php │ ├── fr_MA.php │ ├── fr_MC.php │ ├── fr_MF.php │ ├── fr_MG.php │ ├── fr_ML.php │ ├── fr_MQ.php │ ├── fr_MR.php │ ├── fr_MU.php │ ├── fr_NC.php │ ├── fr_NE.php │ ├── fr_PF.php │ ├── fr_PM.php │ ├── fr_RE.php │ ├── fr_RW.php │ ├── fr_SC.php │ ├── fr_SN.php │ ├── fr_SY.php │ ├── fr_TD.php │ ├── fr_TG.php │ ├── fr_TN.php │ ├── fr_VU.php │ ├── fr_WF.php │ ├── fr_YT.php │ ├── fur.php │ ├── fur_IT.php │ ├── fy.php │ ├── fy_DE.php │ ├── fy_NL.php │ ├── ga.php │ ├── ga_IE.php │ ├── gd.php │ ├── gd_GB.php │ ├── gez.php │ ├── gez_ER.php │ ├── gez_ET.php │ ├── gl.php │ ├── gl_ES.php │ ├── gom.php │ ├── gom_Latn.php │ ├── gsw.php │ ├── gsw_CH.php │ ├── gsw_FR.php │ ├── gsw_LI.php │ ├── gu.php │ ├── gu_IN.php │ ├── guz.php │ ├── gv.php │ ├── gv_GB.php │ ├── ha.php │ ├── ha_GH.php │ ├── ha_NE.php │ ├── ha_NG.php │ ├── hak.php │ ├── hak_TW.php │ ├── haw.php │ ├── he.php │ ├── he_IL.php │ ├── hi.php │ ├── hi_IN.php │ ├── hif.php │ ├── hif_FJ.php │ ├── hne.php │ ├── hne_IN.php │ ├── hr.php │ ├── hr_BA.php │ ├── hr_HR.php │ ├── hsb.php │ ├── hsb_DE.php │ ├── ht.php │ ├── ht_HT.php │ ├── hu.php │ ├── hu_HU.php │ ├── hy.php │ ├── hy_AM.php │ ├── i18n.php │ ├── ia.php │ ├── ia_FR.php │ ├── id.php │ ├── id_ID.php │ ├── ig.php │ ├── ig_NG.php │ ├── ii.php │ ├── ik.php │ ├── ik_CA.php │ ├── in.php │ ├── is.php │ ├── is_IS.php │ ├── it.php │ ├── it_CH.php │ ├── it_IT.php │ ├── it_SM.php │ ├── it_VA.php │ ├── iu.php │ ├── iu_CA.php │ ├── iw.php │ ├── ja.php │ ├── ja_JP.php │ ├── jgo.php │ ├── jmc.php │ ├── jv.php │ ├── ka.php │ ├── ka_GE.php │ ├── kab.php │ ├── kab_DZ.php │ ├── kam.php │ ├── kde.php │ ├── kea.php │ ├── khq.php │ ├── ki.php │ ├── kk.php │ ├── kk_KZ.php │ ├── kkj.php │ ├── kl.php │ ├── kl_GL.php │ ├── kln.php │ ├── km.php │ ├── km_KH.php │ ├── kn.php │ ├── kn_IN.php │ ├── ko.php │ ├── ko_KP.php │ ├── ko_KR.php │ ├── kok.php │ ├── kok_IN.php │ ├── ks.php │ ├── ks_IN.php │ ├── ks_IN@devanagari.php │ ├── ksb.php │ ├── ksf.php │ ├── ksh.php │ ├── ku.php │ ├── ku_TR.php │ ├── kw.php │ ├── kw_GB.php │ ├── ky.php │ ├── ky_KG.php │ ├── lag.php │ ├── lb.php │ ├── lb_LU.php │ ├── lg.php │ ├── lg_UG.php │ ├── li.php │ ├── li_NL.php │ ├── lij.php │ ├── lij_IT.php │ ├── lkt.php │ ├── ln.php │ ├── ln_AO.php │ ├── ln_CD.php │ ├── ln_CF.php │ ├── ln_CG.php │ ├── lo.php │ ├── lo_LA.php │ ├── lrc.php │ ├── lrc_IQ.php │ ├── lt.php │ ├── lt_LT.php │ ├── lu.php │ ├── luo.php │ ├── luy.php │ ├── lv.php │ ├── lv_LV.php │ ├── lzh.php │ ├── lzh_TW.php │ ├── mag.php │ ├── mag_IN.php │ ├── mai.php │ ├── mai_IN.php │ ├── mas.php │ ├── mas_TZ.php │ ├── mer.php │ ├── mfe.php │ ├── mfe_MU.php │ ├── mg.php │ ├── mg_MG.php │ ├── mgh.php │ ├── mgo.php │ ├── mhr.php │ ├── mhr_RU.php │ ├── mi.php │ ├── mi_NZ.php │ ├── miq.php │ ├── miq_NI.php │ ├── mjw.php │ ├── mjw_IN.php │ ├── mk.php │ ├── mk_MK.php │ ├── ml.php │ ├── ml_IN.php │ ├── mn.php │ ├── mn_MN.php │ ├── mni.php │ ├── mni_IN.php │ ├── mo.php │ ├── mr.php │ ├── mr_IN.php │ ├── ms.php │ ├── ms_BN.php │ ├── ms_MY.php │ ├── ms_SG.php │ ├── mt.php │ ├── mt_MT.php │ ├── mua.php │ ├── my.php │ ├── my_MM.php │ ├── mzn.php │ ├── nan.php │ ├── nan_TW.php │ ├── nan_TW@latin.php │ ├── naq.php │ ├── nb.php │ ├── nb_NO.php │ ├── nb_SJ.php │ ├── nd.php │ ├── nds.php │ ├── nds_DE.php │ ├── nds_NL.php │ ├── ne.php │ ├── ne_IN.php │ ├── ne_NP.php │ ├── nhn.php │ ├── nhn_MX.php │ ├── niu.php │ ├── niu_NU.php │ ├── nl.php │ ├── nl_AW.php │ ├── nl_BE.php │ ├── nl_BQ.php │ ├── nl_CW.php │ ├── nl_NL.php │ ├── nl_SR.php │ ├── nl_SX.php │ ├── nmg.php │ ├── nn.php │ ├── nn_NO.php │ ├── nnh.php │ ├── no.php │ ├── nr.php │ ├── nr_ZA.php │ ├── nso.php │ ├── nso_ZA.php │ ├── nus.php │ ├── nyn.php │ ├── oc.php │ ├── oc_FR.php │ ├── om.php │ ├── om_ET.php │ ├── om_KE.php │ ├── or.php │ ├── or_IN.php │ ├── os.php │ ├── os_RU.php │ ├── pa.php │ ├── pa_Arab.php │ ├── pa_Guru.php │ ├── pa_IN.php │ ├── pa_PK.php │ ├── pap.php │ ├── pap_AW.php │ ├── pap_CW.php │ ├── pl.php │ ├── pl_PL.php │ ├── prg.php │ ├── ps.php │ ├── ps_AF.php │ ├── pt.php │ ├── pt_AO.php │ ├── pt_BR.php │ ├── pt_CH.php │ ├── pt_CV.php │ ├── pt_GQ.php │ ├── pt_GW.php │ ├── pt_LU.php │ ├── pt_MO.php │ ├── pt_MZ.php │ ├── pt_PT.php │ ├── pt_ST.php │ ├── pt_TL.php │ ├── qu.php │ ├── qu_BO.php │ ├── qu_EC.php │ ├── quz.php │ ├── quz_PE.php │ ├── raj.php │ ├── raj_IN.php │ ├── rm.php │ ├── rn.php │ ├── ro.php │ ├── ro_MD.php │ ├── ro_RO.php │ ├── rof.php │ ├── ru.php │ ├── ru_BY.php │ ├── ru_KG.php │ ├── ru_KZ.php │ ├── ru_MD.php │ ├── ru_RU.php │ ├── ru_UA.php │ ├── rw.php │ ├── rw_RW.php │ ├── rwk.php │ ├── sa.php │ ├── sa_IN.php │ ├── sah.php │ ├── sah_RU.php │ ├── saq.php │ ├── sat.php │ ├── sat_IN.php │ ├── sbp.php │ ├── sc.php │ ├── sc_IT.php │ ├── sd.php │ ├── sd_IN.php │ ├── sd_IN@devanagari.php │ ├── se.php │ ├── se_FI.php │ ├── se_NO.php │ ├── se_SE.php │ ├── seh.php │ ├── ses.php │ ├── sg.php │ ├── sgs.php │ ├── sgs_LT.php │ ├── sh.php │ ├── shi.php │ ├── shi_Latn.php │ ├── shi_Tfng.php │ ├── shn.php │ ├── shn_MM.php │ ├── shs.php │ ├── shs_CA.php │ ├── si.php │ ├── si_LK.php │ ├── sid.php │ ├── sid_ET.php │ ├── sk.php │ ├── sk_SK.php │ ├── sl.php │ ├── sl_SI.php │ ├── sm.php │ ├── sm_WS.php │ ├── smn.php │ ├── sn.php │ ├── so.php │ ├── so_DJ.php │ ├── so_ET.php │ ├── so_KE.php │ ├── so_SO.php │ ├── sq.php │ ├── sq_AL.php │ ├── sq_MK.php │ ├── sq_XK.php │ ├── sr.php │ ├── sr_Cyrl.php │ ├── sr_Cyrl_BA.php │ ├── sr_Cyrl_ME.php │ ├── sr_Cyrl_XK.php │ ├── sr_Latn.php │ ├── sr_Latn_BA.php │ ├── sr_Latn_ME.php │ ├── sr_Latn_XK.php │ ├── sr_ME.php │ ├── sr_RS.php │ ├── sr_RS@latin.php │ ├── ss.php │ ├── ss_ZA.php │ ├── st.php │ ├── st_ZA.php │ ├── sv.php │ ├── sv_AX.php │ ├── sv_FI.php │ ├── sv_SE.php │ ├── sw.php │ ├── sw_CD.php │ ├── sw_KE.php │ ├── sw_TZ.php │ ├── sw_UG.php │ ├── szl.php │ ├── szl_PL.php │ ├── ta.php │ ├── ta_IN.php │ ├── ta_LK.php │ ├── ta_MY.php │ ├── ta_SG.php │ ├── tcy.php │ ├── tcy_IN.php │ ├── te.php │ ├── te_IN.php │ ├── teo.php │ ├── teo_KE.php │ ├── tet.php │ ├── tg.php │ ├── tg_TJ.php │ ├── th.php │ ├── th_TH.php │ ├── the.php │ ├── the_NP.php │ ├── ti.php │ ├── ti_ER.php │ ├── ti_ET.php │ ├── tig.php │ ├── tig_ER.php │ ├── tk.php │ ├── tk_TM.php │ ├── tl.php │ ├── tl_PH.php │ ├── tlh.php │ ├── tn.php │ ├── tn_ZA.php │ ├── to.php │ ├── to_TO.php │ ├── tpi.php │ ├── tpi_PG.php │ ├── tr.php │ ├── tr_CY.php │ ├── tr_TR.php │ ├── ts.php │ ├── ts_ZA.php │ ├── tt.php │ ├── tt_RU.php │ ├── tt_RU@iqtelif.php │ ├── twq.php │ ├── tzl.php │ ├── tzm.php │ ├── tzm_Latn.php │ ├── ug.php │ ├── ug_CN.php │ ├── uk.php │ ├── uk_UA.php │ ├── unm.php │ ├── unm_US.php │ ├── ur.php │ ├── ur_IN.php │ ├── ur_PK.php │ ├── uz.php │ ├── uz_Arab.php │ ├── uz_Cyrl.php │ ├── uz_Latn.php │ ├── uz_UZ.php │ ├── uz_UZ@cyrillic.php │ ├── vai.php │ ├── vai_Latn.php │ ├── vai_Vaii.php │ ├── ve.php │ ├── ve_ZA.php │ ├── vi.php │ ├── vi_VN.php │ ├── vo.php │ ├── vun.php │ ├── wa.php │ ├── wa_BE.php │ ├── wae.php │ ├── wae_CH.php │ ├── wal.php │ ├── wal_ET.php │ ├── wo.php │ ├── wo_SN.php │ ├── xh.php │ ├── xh_ZA.php │ ├── xog.php │ ├── yav.php │ ├── yi.php │ ├── yi_US.php │ ├── yo.php │ ├── yo_BJ.php │ ├── yo_NG.php │ ├── yue.php │ ├── yue_HK.php │ ├── yue_Hans.php │ ├── yue_Hant.php │ ├── yuw.php │ ├── yuw_PG.php │ ├── zgh.php │ ├── zh.php │ ├── zh_CN.php │ ├── zh_HK.php │ ├── zh_Hans.php │ ├── zh_Hans_HK.php │ ├── zh_Hans_MO.php │ ├── zh_Hans_SG.php │ ├── zh_Hant.php │ ├── zh_Hant_HK.php │ ├── zh_Hant_MO.php │ ├── zh_Hant_TW.php │ ├── zh_MO.php │ ├── zh_SG.php │ ├── zh_TW.php │ ├── zh_YUE.php │ ├── zu.php │ └── zu_ZA.php │ ├── Language.php │ ├── Laravel │ └── ServiceProvider.php │ ├── List │ ├── languages.php │ └── regions.php │ ├── MessageFormatter │ └── MessageFormatterMapper.php │ ├── PHPStan │ ├── AbstractMacro.php │ ├── Macro.php │ ├── MacroExtension.php │ └── MacroScanner.php │ ├── Traits │ ├── Boundaries.php │ ├── Cast.php │ ├── Comparison.php │ ├── Converter.php │ ├── Creator.php │ ├── Date.php │ ├── DeprecatedProperties.php │ ├── Difference.php │ ├── IntervalRounding.php │ ├── IntervalStep.php │ ├── Localization.php │ ├── Macro.php │ ├── MagicParameter.php │ ├── Mixin.php │ ├── Modifiers.php │ ├── Mutability.php │ ├── ObjectInitialisation.php │ ├── Options.php │ ├── Rounding.php │ ├── Serialization.php │ ├── Test.php │ ├── Timestamp.php │ ├── ToStringFormat.php │ ├── Units.php │ └── Week.php │ ├── Translator.php │ ├── TranslatorImmutable.php │ └── TranslatorStrongTypeInterface.php ├── predis └── predis │ ├── autoload.php │ ├── bin │ └── create-command-test │ └── src │ ├── Autoloader.php │ ├── Client.php │ ├── ClientContextInterface.php │ ├── ClientException.php │ ├── ClientInterface.php │ ├── Cluster │ ├── ClusterStrategy.php │ ├── Distributor │ │ ├── DistributorInterface.php │ │ ├── EmptyRingException.php │ │ ├── HashRing.php │ │ └── KetamaRing.php │ ├── Hash │ │ ├── CRC16.php │ │ ├── HashGeneratorInterface.php │ │ └── PhpiredisCRC16.php │ ├── PredisStrategy.php │ ├── RedisStrategy.php │ ├── SlotMap.php │ └── StrategyInterface.php │ ├── Collection │ └── Iterator │ │ ├── CursorBasedIterator.php │ │ ├── HashKey.php │ │ ├── Keyspace.php │ │ ├── ListKey.php │ │ ├── SetKey.php │ │ └── SortedSetKey.php │ ├── Command │ ├── Argument │ │ ├── ArrayableArgument.php │ │ ├── Geospatial │ │ │ ├── AbstractBy.php │ │ │ ├── ByBox.php │ │ │ ├── ByInterface.php │ │ │ ├── ByRadius.php │ │ │ ├── FromInterface.php │ │ │ ├── FromLonLat.php │ │ │ └── FromMember.php │ │ └── Server │ │ │ ├── LimitInterface.php │ │ │ ├── LimitOffsetCount.php │ │ │ └── To.php │ ├── Command.php │ ├── CommandInterface.php │ ├── Factory.php │ ├── FactoryInterface.php │ ├── PrefixableCommandInterface.php │ ├── Processor │ │ ├── KeyPrefixProcessor.php │ │ ├── ProcessorChain.php │ │ └── ProcessorInterface.php │ ├── RawCommand.php │ ├── RawFactory.php │ ├── Redis │ │ ├── APPEND.php │ │ ├── AUTH.php │ │ ├── AbstractCommand │ │ │ └── BZPOPBase.php │ │ ├── BGREWRITEAOF.php │ │ ├── BGSAVE.php │ │ ├── BITCOUNT.php │ │ ├── BITFIELD.php │ │ ├── BITOP.php │ │ ├── BITPOS.php │ │ ├── BLMOVE.php │ │ ├── BLMPOP.php │ │ ├── BLPOP.php │ │ ├── BRPOP.php │ │ ├── BRPOPLPUSH.php │ │ ├── BZMPOP.php │ │ ├── BZPOPMAX.php │ │ ├── BZPOPMIN.php │ │ ├── CLIENT.php │ │ ├── COMMAND.php │ │ ├── CONFIG.php │ │ ├── COPY.php │ │ ├── Container │ │ │ ├── AbstractContainer.php │ │ │ ├── ContainerFactory.php │ │ │ ├── ContainerInterface.php │ │ │ └── FunctionContainer.php │ │ ├── DBSIZE.php │ │ ├── DECR.php │ │ ├── DECRBY.php │ │ ├── DEL.php │ │ ├── DISCARD.php │ │ ├── DUMP.php │ │ ├── ECHO_.php │ │ ├── EVALSHA.php │ │ ├── EVALSHA_RO.php │ │ ├── EVAL_.php │ │ ├── EVAL_RO.php │ │ ├── EXEC.php │ │ ├── EXISTS.php │ │ ├── EXPIRE.php │ │ ├── EXPIREAT.php │ │ ├── EXPIRETIME.php │ │ ├── FAILOVER.php │ │ ├── FCALL.php │ │ ├── FLUSHALL.php │ │ ├── FLUSHDB.php │ │ ├── FUNCTIONS.php │ │ ├── GEOADD.php │ │ ├── GEODIST.php │ │ ├── GEOHASH.php │ │ ├── GEOPOS.php │ │ ├── GEORADIUS.php │ │ ├── GEORADIUSBYMEMBER.php │ │ ├── GEOSEARCH.php │ │ ├── GEOSEARCHSTORE.php │ │ ├── GET.php │ │ ├── GETBIT.php │ │ ├── GETDEL.php │ │ ├── GETEX.php │ │ ├── GETRANGE.php │ │ ├── GETSET.php │ │ ├── HDEL.php │ │ ├── HEXISTS.php │ │ ├── HGET.php │ │ ├── HGETALL.php │ │ ├── HINCRBY.php │ │ ├── HINCRBYFLOAT.php │ │ ├── HKEYS.php │ │ ├── HLEN.php │ │ ├── HMGET.php │ │ ├── HMSET.php │ │ ├── HRANDFIELD.php │ │ ├── HSCAN.php │ │ ├── HSET.php │ │ ├── HSETNX.php │ │ ├── HSTRLEN.php │ │ ├── HVALS.php │ │ ├── INCR.php │ │ ├── INCRBY.php │ │ ├── INCRBYFLOAT.php │ │ ├── INFO.php │ │ ├── KEYS.php │ │ ├── LASTSAVE.php │ │ ├── LCS.php │ │ ├── LINDEX.php │ │ ├── LINSERT.php │ │ ├── LLEN.php │ │ ├── LMOVE.php │ │ ├── LMPOP.php │ │ ├── LPOP.php │ │ ├── LPUSH.php │ │ ├── LPUSHX.php │ │ ├── LRANGE.php │ │ ├── LREM.php │ │ ├── LSET.php │ │ ├── LTRIM.php │ │ ├── MGET.php │ │ ├── MIGRATE.php │ │ ├── MONITOR.php │ │ ├── MOVE.php │ │ ├── MSET.php │ │ ├── MSETNX.php │ │ ├── MULTI.php │ │ ├── OBJECT_.php │ │ ├── PERSIST.php │ │ ├── PEXPIRE.php │ │ ├── PEXPIREAT.php │ │ ├── PEXPIRETIME.php │ │ ├── PFADD.php │ │ ├── PFCOUNT.php │ │ ├── PFMERGE.php │ │ ├── PING.php │ │ ├── PSETEX.php │ │ ├── PSUBSCRIBE.php │ │ ├── PTTL.php │ │ ├── PUBLISH.php │ │ ├── PUBSUB.php │ │ ├── PUNSUBSCRIBE.php │ │ ├── QUIT.php │ │ ├── RANDOMKEY.php │ │ ├── RENAME.php │ │ ├── RENAMENX.php │ │ ├── RESTORE.php │ │ ├── RPOP.php │ │ ├── RPOPLPUSH.php │ │ ├── RPUSH.php │ │ ├── RPUSHX.php │ │ ├── SADD.php │ │ ├── SAVE.php │ │ ├── SCAN.php │ │ ├── SCARD.php │ │ ├── SCRIPT.php │ │ ├── SDIFF.php │ │ ├── SDIFFSTORE.php │ │ ├── SELECT.php │ │ ├── SENTINEL.php │ │ ├── SET.php │ │ ├── SETBIT.php │ │ ├── SETEX.php │ │ ├── SETNX.php │ │ ├── SETRANGE.php │ │ ├── SHUTDOWN.php │ │ ├── SINTER.php │ │ ├── SINTERCARD.php │ │ ├── SINTERSTORE.php │ │ ├── SISMEMBER.php │ │ ├── SLAVEOF.php │ │ ├── SLOWLOG.php │ │ ├── SMEMBERS.php │ │ ├── SMISMEMBER.php │ │ ├── SMOVE.php │ │ ├── SORT.php │ │ ├── SORT_RO.php │ │ ├── SPOP.php │ │ ├── SRANDMEMBER.php │ │ ├── SREM.php │ │ ├── SSCAN.php │ │ ├── STRLEN.php │ │ ├── SUBSCRIBE.php │ │ ├── SUBSTR.php │ │ ├── SUNION.php │ │ ├── SUNIONSTORE.php │ │ ├── TIME.php │ │ ├── TOUCH.php │ │ ├── TTL.php │ │ ├── TYPE.php │ │ ├── UNSUBSCRIBE.php │ │ ├── UNWATCH.php │ │ ├── WATCH.php │ │ ├── XADD.php │ │ ├── XDEL.php │ │ ├── XLEN.php │ │ ├── XRANGE.php │ │ ├── XREVRANGE.php │ │ ├── XTRIM.php │ │ ├── ZADD.php │ │ ├── ZCARD.php │ │ ├── ZCOUNT.php │ │ ├── ZDIFF.php │ │ ├── ZDIFFSTORE.php │ │ ├── ZINCRBY.php │ │ ├── ZINTER.php │ │ ├── ZINTERCARD.php │ │ ├── ZINTERSTORE.php │ │ ├── ZLEXCOUNT.php │ │ ├── ZMPOP.php │ │ ├── ZMSCORE.php │ │ ├── ZPOPMAX.php │ │ ├── ZPOPMIN.php │ │ ├── ZRANDMEMBER.php │ │ ├── ZRANGE.php │ │ ├── ZRANGEBYLEX.php │ │ ├── ZRANGEBYSCORE.php │ │ ├── ZRANGESTORE.php │ │ ├── ZRANK.php │ │ ├── ZREM.php │ │ ├── ZREMRANGEBYLEX.php │ │ ├── ZREMRANGEBYRANK.php │ │ ├── ZREMRANGEBYSCORE.php │ │ ├── ZREVRANGE.php │ │ ├── ZREVRANGEBYLEX.php │ │ ├── ZREVRANGEBYSCORE.php │ │ ├── ZREVRANK.php │ │ ├── ZSCAN.php │ │ ├── ZSCORE.php │ │ ├── ZUNION.php │ │ └── ZUNIONSTORE.php │ ├── RedisFactory.php │ ├── ScriptCommand.php │ ├── Strategy │ │ ├── ContainerCommands │ │ │ └── Functions │ │ │ │ ├── DeleteStrategy.php │ │ │ │ └── LoadStrategy.php │ │ ├── StrategyResolverInterface.php │ │ ├── SubcommandStrategyInterface.php │ │ └── SubcommandStrategyResolver.php │ └── Traits │ │ ├── Aggregate.php │ │ ├── BitByte.php │ │ ├── By │ │ ├── ByArgument.php │ │ ├── ByLexByScore.php │ │ └── GeoBy.php │ │ ├── Count.php │ │ ├── DB.php │ │ ├── Expire │ │ └── ExpireOptions.php │ │ ├── From │ │ └── GeoFrom.php │ │ ├── Get │ │ └── Get.php │ │ ├── Keys.php │ │ ├── LeftRight.php │ │ ├── Limit │ │ ├── Limit.php │ │ └── LimitObject.php │ │ ├── MinMaxModifier.php │ │ ├── Replace.php │ │ ├── Rev.php │ │ ├── Sorting.php │ │ ├── Storedist.php │ │ ├── Timeout.php │ │ ├── To │ │ └── ServerTo.php │ │ ├── Weights.php │ │ └── With │ │ ├── WithCoord.php │ │ ├── WithDist.php │ │ ├── WithHash.php │ │ ├── WithScores.php │ │ └── WithValues.php │ ├── CommunicationException.php │ ├── Configuration │ ├── Option │ │ ├── Aggregate.php │ │ ├── CRC16.php │ │ ├── Cluster.php │ │ ├── Commands.php │ │ ├── Connections.php │ │ ├── Exceptions.php │ │ ├── Prefix.php │ │ └── Replication.php │ ├── OptionInterface.php │ ├── Options.php │ └── OptionsInterface.php │ ├── Connection │ ├── AbstractConnection.php │ ├── AggregateConnectionInterface.php │ ├── Cluster │ │ ├── ClusterInterface.php │ │ ├── PredisCluster.php │ │ └── RedisCluster.php │ ├── CompositeConnectionInterface.php │ ├── CompositeStreamConnection.php │ ├── ConnectionException.php │ ├── ConnectionInterface.php │ ├── Factory.php │ ├── FactoryInterface.php │ ├── NodeConnectionInterface.php │ ├── Parameters.php │ ├── ParametersInterface.php │ ├── PhpiredisSocketConnection.php │ ├── PhpiredisStreamConnection.php │ ├── Replication │ │ ├── MasterSlaveReplication.php │ │ ├── ReplicationInterface.php │ │ └── SentinelReplication.php │ ├── StreamConnection.php │ └── WebdisConnection.php │ ├── Monitor │ └── Consumer.php │ ├── NotSupportedException.php │ ├── Pipeline │ ├── Atomic.php │ ├── ConnectionErrorProof.php │ ├── FireAndForget.php │ └── Pipeline.php │ ├── PredisException.php │ ├── Protocol │ ├── ProtocolException.php │ ├── ProtocolProcessorInterface.php │ ├── RequestSerializerInterface.php │ ├── ResponseReaderInterface.php │ └── Text │ │ ├── CompositeProtocolProcessor.php │ │ ├── Handler │ │ ├── BulkResponse.php │ │ ├── ErrorResponse.php │ │ ├── IntegerResponse.php │ │ ├── MultiBulkResponse.php │ │ ├── ResponseHandlerInterface.php │ │ ├── StatusResponse.php │ │ └── StreamableMultiBulkResponse.php │ │ ├── ProtocolProcessor.php │ │ ├── RequestSerializer.php │ │ └── ResponseReader.php │ ├── PubSub │ ├── AbstractConsumer.php │ ├── Consumer.php │ └── DispatcherLoop.php │ ├── Replication │ ├── MissingMasterException.php │ ├── ReplicationStrategy.php │ └── RoleException.php │ ├── Response │ ├── Error.php │ ├── ErrorInterface.php │ ├── Iterator │ │ ├── MultiBulk.php │ │ ├── MultiBulkIterator.php │ │ └── MultiBulkTuple.php │ ├── ResponseInterface.php │ ├── ServerException.php │ └── Status.php │ ├── Session │ └── Handler.php │ └── Transaction │ ├── AbortedMultiExecException.php │ ├── MultiExec.php │ └── MultiExecState.php ├── psr ├── container │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── event-dispatcher │ └── src │ │ ├── EventDispatcherInterface.php │ │ ├── ListenerProviderInterface.php │ │ └── StoppableEventInterface.php ├── http-client │ └── src │ │ ├── ClientExceptionInterface.php │ │ ├── ClientInterface.php │ │ ├── NetworkExceptionInterface.php │ │ └── RequestExceptionInterface.php ├── http-factory │ └── src │ │ ├── RequestFactoryInterface.php │ │ ├── ResponseFactoryInterface.php │ │ ├── ServerRequestFactoryInterface.php │ │ ├── StreamFactoryInterface.php │ │ ├── UploadedFileFactoryInterface.php │ │ └── UriFactoryInterface.php └── http-message │ └── src │ ├── MessageInterface.php │ ├── RequestInterface.php │ ├── ResponseInterface.php │ ├── ServerRequestInterface.php │ ├── StreamInterface.php │ ├── UploadedFileInterface.php │ └── UriInterface.php ├── ralouphie └── getallheaders │ └── src │ └── getallheaders.php ├── ramsey ├── collection │ └── src │ │ ├── AbstractArray.php │ │ ├── AbstractCollection.php │ │ ├── AbstractSet.php │ │ ├── ArrayInterface.php │ │ ├── Collection.php │ │ ├── CollectionInterface.php │ │ ├── DoubleEndedQueue.php │ │ ├── DoubleEndedQueueInterface.php │ │ ├── Exception │ │ ├── CollectionException.php │ │ ├── CollectionMismatchException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidPropertyOrMethod.php │ │ ├── NoSuchElementException.php │ │ ├── OutOfBoundsException.php │ │ └── UnsupportedOperationException.php │ │ ├── GenericArray.php │ │ ├── Map │ │ ├── AbstractMap.php │ │ ├── AbstractTypedMap.php │ │ ├── AssociativeArrayMap.php │ │ ├── MapInterface.php │ │ ├── NamedParameterMap.php │ │ ├── TypedMap.php │ │ └── TypedMapInterface.php │ │ ├── Queue.php │ │ ├── QueueInterface.php │ │ ├── Set.php │ │ ├── Sort.php │ │ └── Tool │ │ ├── TypeTrait.php │ │ ├── ValueExtractorTrait.php │ │ └── ValueToStringTrait.php └── uuid │ └── src │ ├── BinaryUtils.php │ ├── Builder │ ├── BuilderCollection.php │ ├── DefaultUuidBuilder.php │ ├── DegradedUuidBuilder.php │ ├── FallbackBuilder.php │ └── UuidBuilderInterface.php │ ├── Codec │ ├── CodecInterface.php │ ├── GuidStringCodec.php │ ├── OrderedTimeCodec.php │ ├── StringCodec.php │ ├── TimestampFirstCombCodec.php │ └── TimestampLastCombCodec.php │ ├── Converter │ ├── Number │ │ ├── BigNumberConverter.php │ │ ├── DegradedNumberConverter.php │ │ └── GenericNumberConverter.php │ ├── NumberConverterInterface.php │ ├── Time │ │ ├── BigNumberTimeConverter.php │ │ ├── DegradedTimeConverter.php │ │ ├── GenericTimeConverter.php │ │ ├── PhpTimeConverter.php │ │ └── UnixTimeConverter.php │ └── TimeConverterInterface.php │ ├── DegradedUuid.php │ ├── DeprecatedUuidInterface.php │ ├── DeprecatedUuidMethodsTrait.php │ ├── Exception │ ├── BuilderNotFoundException.php │ ├── DateTimeException.php │ ├── DceSecurityException.php │ ├── InvalidArgumentException.php │ ├── InvalidBytesException.php │ ├── InvalidUuidStringException.php │ ├── NameException.php │ ├── NodeException.php │ ├── RandomSourceException.php │ ├── TimeSourceException.php │ ├── UnableToBuildUuidException.php │ ├── UnsupportedOperationException.php │ └── UuidExceptionInterface.php │ ├── FeatureSet.php │ ├── Fields │ ├── FieldsInterface.php │ └── SerializableFieldsTrait.php │ ├── Generator │ ├── CombGenerator.php │ ├── DceSecurityGenerator.php │ ├── DceSecurityGeneratorInterface.php │ ├── DefaultNameGenerator.php │ ├── DefaultTimeGenerator.php │ ├── NameGeneratorFactory.php │ ├── NameGeneratorInterface.php │ ├── PeclUuidNameGenerator.php │ ├── PeclUuidRandomGenerator.php │ ├── PeclUuidTimeGenerator.php │ ├── RandomBytesGenerator.php │ ├── RandomGeneratorFactory.php │ ├── RandomGeneratorInterface.php │ ├── RandomLibAdapter.php │ ├── TimeGeneratorFactory.php │ ├── TimeGeneratorInterface.php │ └── UnixTimeGenerator.php │ ├── Guid │ ├── Fields.php │ ├── Guid.php │ └── GuidBuilder.php │ ├── Lazy │ └── LazyUuidFromString.php │ ├── Math │ ├── BrickMathCalculator.php │ ├── CalculatorInterface.php │ └── RoundingMode.php │ ├── Nonstandard │ ├── Fields.php │ ├── Uuid.php │ ├── UuidBuilder.php │ └── UuidV6.php │ ├── Provider │ ├── Dce │ │ └── SystemDceSecurityProvider.php │ ├── DceSecurityProviderInterface.php │ ├── Node │ │ ├── FallbackNodeProvider.php │ │ ├── NodeProviderCollection.php │ │ ├── RandomNodeProvider.php │ │ ├── StaticNodeProvider.php │ │ └── SystemNodeProvider.php │ ├── NodeProviderInterface.php │ ├── Time │ │ ├── FixedTimeProvider.php │ │ └── SystemTimeProvider.php │ └── TimeProviderInterface.php │ ├── Rfc4122 │ ├── Fields.php │ ├── FieldsInterface.php │ ├── MaxTrait.php │ ├── MaxUuid.php │ ├── NilTrait.php │ ├── NilUuid.php │ ├── TimeTrait.php │ ├── UuidBuilder.php │ ├── UuidInterface.php │ ├── UuidV1.php │ ├── UuidV2.php │ ├── UuidV3.php │ ├── UuidV4.php │ ├── UuidV5.php │ ├── UuidV6.php │ ├── UuidV7.php │ ├── UuidV8.php │ ├── Validator.php │ ├── VariantTrait.php │ └── VersionTrait.php │ ├── Type │ ├── Decimal.php │ ├── Hexadecimal.php │ ├── Integer.php │ ├── NumberInterface.php │ ├── Time.php │ └── TypeInterface.php │ ├── Uuid.php │ ├── UuidFactory.php │ ├── UuidFactoryInterface.php │ ├── UuidInterface.php │ ├── Validator │ ├── GenericValidator.php │ └── ValidatorInterface.php │ └── functions.php └── symfony ├── console ├── Application.php ├── Attribute │ └── AsCommand.php ├── CI │ └── GithubActionReporter.php ├── Color.php ├── Command │ ├── Command.php │ ├── CompleteCommand.php │ ├── DumpCompletionCommand.php │ ├── HelpCommand.php │ ├── LazyCommand.php │ ├── ListCommand.php │ ├── LockableTrait.php │ └── SignalableCommandInterface.php ├── CommandLoader │ ├── CommandLoaderInterface.php │ ├── ContainerCommandLoader.php │ └── FactoryCommandLoader.php ├── Completion │ ├── CompletionInput.php │ ├── CompletionSuggestions.php │ ├── Output │ │ ├── BashCompletionOutput.php │ │ ├── CompletionOutputInterface.php │ │ ├── FishCompletionOutput.php │ │ └── ZshCompletionOutput.php │ └── Suggestion.php ├── ConsoleEvents.php ├── Cursor.php ├── DependencyInjection │ └── AddConsoleCommandPass.php ├── Descriptor │ ├── ApplicationDescription.php │ ├── Descriptor.php │ ├── DescriptorInterface.php │ ├── JsonDescriptor.php │ ├── MarkdownDescriptor.php │ ├── TextDescriptor.php │ └── XmlDescriptor.php ├── Event │ ├── ConsoleCommandEvent.php │ ├── ConsoleErrorEvent.php │ ├── ConsoleEvent.php │ ├── ConsoleSignalEvent.php │ └── ConsoleTerminateEvent.php ├── EventListener │ └── ErrorListener.php ├── Exception │ ├── CommandNotFoundException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── InvalidOptionException.php │ ├── LogicException.php │ ├── MissingInputException.php │ ├── NamespaceNotFoundException.php │ └── RuntimeException.php ├── Formatter │ ├── NullOutputFormatter.php │ ├── NullOutputFormatterStyle.php │ ├── OutputFormatter.php │ ├── OutputFormatterInterface.php │ ├── OutputFormatterStyle.php │ ├── OutputFormatterStyleInterface.php │ ├── OutputFormatterStyleStack.php │ └── WrappableOutputFormatterInterface.php ├── Helper │ ├── DebugFormatterHelper.php │ ├── DescriptorHelper.php │ ├── Dumper.php │ ├── FormatterHelper.php │ ├── Helper.php │ ├── HelperInterface.php │ ├── HelperSet.php │ ├── InputAwareHelper.php │ ├── OutputWrapper.php │ ├── ProcessHelper.php │ ├── ProgressBar.php │ ├── ProgressIndicator.php │ ├── QuestionHelper.php │ ├── SymfonyQuestionHelper.php │ ├── Table.php │ ├── TableCell.php │ ├── TableCellStyle.php │ ├── TableRows.php │ ├── TableSeparator.php │ └── TableStyle.php ├── Input │ ├── ArgvInput.php │ ├── ArrayInput.php │ ├── Input.php │ ├── InputArgument.php │ ├── InputAwareInterface.php │ ├── InputDefinition.php │ ├── InputInterface.php │ ├── InputOption.php │ ├── StreamableInputInterface.php │ └── StringInput.php ├── Logger │ └── ConsoleLogger.php ├── Output │ ├── AnsiColorMode.php │ ├── BufferedOutput.php │ ├── ConsoleOutput.php │ ├── ConsoleOutputInterface.php │ ├── ConsoleSectionOutput.php │ ├── NullOutput.php │ ├── Output.php │ ├── OutputInterface.php │ ├── StreamOutput.php │ └── TrimmedBufferOutput.php ├── Question │ ├── ChoiceQuestion.php │ ├── ConfirmationQuestion.php │ └── Question.php ├── Resources │ ├── bin │ │ └── hiddeninput.exe │ ├── completion.bash │ ├── completion.fish │ └── completion.zsh ├── SignalRegistry │ └── SignalRegistry.php ├── SingleCommandApplication.php ├── Style │ ├── OutputStyle.php │ ├── StyleInterface.php │ └── SymfonyStyle.php ├── Terminal.php └── Tester │ ├── ApplicationTester.php │ ├── CommandCompletionTester.php │ ├── CommandTester.php │ ├── Constraint │ └── CommandIsSuccessful.php │ └── TesterTrait.php ├── deprecation-contracts └── function.php ├── event-dispatcher-contracts ├── Event.php └── EventDispatcherInterface.php ├── event-dispatcher ├── Attribute │ └── AsEventListener.php ├── Debug │ ├── TraceableEventDispatcher.php │ └── WrappedListener.php ├── DependencyInjection │ ├── AddEventAliasesPass.php │ └── RegisterListenersPass.php ├── EventDispatcher.php ├── EventDispatcherInterface.php ├── EventSubscriberInterface.php ├── GenericEvent.php └── ImmutableEventDispatcher.php ├── http-foundation ├── AcceptHeader.php ├── AcceptHeaderItem.php ├── BinaryFileResponse.php ├── ChainRequestMatcher.php ├── Cookie.php ├── Exception │ ├── BadRequestException.php │ ├── ConflictingHeadersException.php │ ├── JsonException.php │ ├── RequestExceptionInterface.php │ ├── SessionNotFoundException.php │ └── SuspiciousOperationException.php ├── ExpressionRequestMatcher.php ├── File │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── CannotWriteFileException.php │ │ ├── ExtensionFileException.php │ │ ├── FileException.php │ │ ├── FileNotFoundException.php │ │ ├── FormSizeFileException.php │ │ ├── IniSizeFileException.php │ │ ├── NoFileException.php │ │ ├── NoTmpDirFileException.php │ │ ├── PartialFileException.php │ │ ├── UnexpectedTypeException.php │ │ └── UploadException.php │ ├── File.php │ ├── Stream.php │ └── UploadedFile.php ├── FileBag.php ├── HeaderBag.php ├── HeaderUtils.php ├── InputBag.php ├── IpUtils.php ├── JsonResponse.php ├── ParameterBag.php ├── RateLimiter │ ├── AbstractRequestRateLimiter.php │ ├── PeekableRequestRateLimiterInterface.php │ └── RequestRateLimiterInterface.php ├── RedirectResponse.php ├── Request.php ├── RequestMatcher.php ├── RequestMatcher │ ├── AttributesRequestMatcher.php │ ├── ExpressionRequestMatcher.php │ ├── HostRequestMatcher.php │ ├── IpsRequestMatcher.php │ ├── IsJsonRequestMatcher.php │ ├── MethodRequestMatcher.php │ ├── PathRequestMatcher.php │ ├── PortRequestMatcher.php │ └── SchemeRequestMatcher.php ├── RequestMatcherInterface.php ├── RequestStack.php ├── Response.php ├── ResponseHeaderBag.php ├── ServerBag.php ├── Session │ ├── Attribute │ │ ├── AttributeBag.php │ │ └── AttributeBagInterface.php │ ├── Flash │ │ ├── AutoExpireFlashBag.php │ │ ├── FlashBag.php │ │ └── FlashBagInterface.php │ ├── FlashBagAwareSessionInterface.php │ ├── Session.php │ ├── SessionBagInterface.php │ ├── SessionBagProxy.php │ ├── SessionFactory.php │ ├── SessionFactoryInterface.php │ ├── SessionInterface.php │ ├── SessionUtils.php │ └── Storage │ │ ├── Handler │ │ ├── AbstractSessionHandler.php │ │ ├── IdentityMarshaller.php │ │ ├── MarshallingSessionHandler.php │ │ ├── MemcachedSessionHandler.php │ │ ├── MigratingSessionHandler.php │ │ ├── MongoDbSessionHandler.php │ │ ├── NativeFileSessionHandler.php │ │ ├── NullSessionHandler.php │ │ ├── PdoSessionHandler.php │ │ ├── RedisSessionHandler.php │ │ ├── SessionHandlerFactory.php │ │ └── StrictSessionHandler.php │ │ ├── MetadataBag.php │ │ ├── MockArraySessionStorage.php │ │ ├── MockFileSessionStorage.php │ │ ├── MockFileSessionStorageFactory.php │ │ ├── NativeSessionStorage.php │ │ ├── NativeSessionStorageFactory.php │ │ ├── PhpBridgeSessionStorage.php │ │ ├── PhpBridgeSessionStorageFactory.php │ │ ├── Proxy │ │ ├── AbstractProxy.php │ │ └── SessionHandlerProxy.php │ │ ├── SessionStorageFactoryInterface.php │ │ └── SessionStorageInterface.php ├── StreamedResponse.php └── UrlHelper.php ├── mime ├── Address.php ├── BodyRendererInterface.php ├── CharacterStream.php ├── Crypto │ ├── DkimOptions.php │ ├── DkimSigner.php │ ├── SMime.php │ ├── SMimeEncrypter.php │ └── SMimeSigner.php ├── DependencyInjection │ └── AddMimeTypeGuesserPass.php ├── DraftEmail.php ├── Email.php ├── Encoder │ ├── AddressEncoderInterface.php │ ├── Base64ContentEncoder.php │ ├── Base64Encoder.php │ ├── Base64MimeHeaderEncoder.php │ ├── ContentEncoderInterface.php │ ├── EightBitContentEncoder.php │ ├── EncoderInterface.php │ ├── IdnAddressEncoder.php │ ├── MimeHeaderEncoderInterface.php │ ├── QpContentEncoder.php │ ├── QpEncoder.php │ ├── QpMimeHeaderEncoder.php │ └── Rfc2231Encoder.php ├── Exception │ ├── AddressEncoderException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ ├── RfcComplianceException.php │ └── RuntimeException.php ├── FileBinaryMimeTypeGuesser.php ├── FileinfoMimeTypeGuesser.php ├── Header │ ├── AbstractHeader.php │ ├── DateHeader.php │ ├── HeaderInterface.php │ ├── Headers.php │ ├── IdentificationHeader.php │ ├── MailboxHeader.php │ ├── MailboxListHeader.php │ ├── ParameterizedHeader.php │ ├── PathHeader.php │ └── UnstructuredHeader.php ├── HtmlToTextConverter │ ├── DefaultHtmlToTextConverter.php │ ├── HtmlToTextConverterInterface.php │ └── LeagueHtmlToMarkdownConverter.php ├── Message.php ├── MessageConverter.php ├── MimeTypeGuesserInterface.php ├── MimeTypes.php ├── MimeTypesInterface.php ├── Part │ ├── AbstractMultipartPart.php │ ├── AbstractPart.php │ ├── DataPart.php │ ├── File.php │ ├── MessagePart.php │ ├── Multipart │ │ ├── AlternativePart.php │ │ ├── DigestPart.php │ │ ├── FormDataPart.php │ │ ├── MixedPart.php │ │ └── RelatedPart.php │ ├── SMimePart.php │ └── TextPart.php ├── RawMessage.php └── Resources │ └── bin │ └── update_mime_types.php ├── polyfill-ctype ├── Ctype.php ├── bootstrap.php └── bootstrap80.php ├── polyfill-intl-grapheme ├── Grapheme.php ├── bootstrap.php └── bootstrap80.php ├── polyfill-intl-idn ├── Idn.php ├── Info.php ├── Resources │ └── unidata │ │ ├── DisallowedRanges.php │ │ ├── Regex.php │ │ ├── deviation.php │ │ ├── disallowed.php │ │ ├── disallowed_STD3_mapped.php │ │ ├── disallowed_STD3_valid.php │ │ ├── ignored.php │ │ ├── mapped.php │ │ └── virama.php ├── bootstrap.php └── bootstrap80.php ├── polyfill-intl-normalizer ├── Normalizer.php ├── Resources │ ├── stubs │ │ └── Normalizer.php │ └── unidata │ │ ├── canonicalComposition.php │ │ ├── canonicalDecomposition.php │ │ ├── combiningClass.php │ │ └── compatibilityDecomposition.php ├── bootstrap.php └── bootstrap80.php ├── polyfill-mbstring ├── Mbstring.php ├── Resources │ └── unidata │ │ ├── lowerCase.php │ │ ├── titleCaseRegexp.php │ │ └── upperCase.php ├── bootstrap.php └── bootstrap80.php ├── polyfill-php72 ├── Php72.php └── bootstrap.php ├── polyfill-php80 ├── Php80.php ├── PhpToken.php ├── Resources │ └── stubs │ │ ├── Attribute.php │ │ ├── PhpToken.php │ │ ├── Stringable.php │ │ ├── UnhandledMatchError.php │ │ └── ValueError.php └── bootstrap.php ├── service-contracts ├── Attribute │ ├── Required.php │ └── SubscribedService.php ├── ResetInterface.php ├── ServiceLocatorTrait.php ├── ServiceProviderInterface.php ├── ServiceSubscriberInterface.php └── ServiceSubscriberTrait.php ├── string ├── AbstractString.php ├── AbstractUnicodeString.php ├── ByteString.php ├── CodePointString.php ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php ├── Inflector │ ├── EnglishInflector.php │ ├── FrenchInflector.php │ └── InflectorInterface.php ├── LazyString.php ├── Resources │ ├── data │ │ ├── wcswidth_table_wide.php │ │ └── wcswidth_table_zero.php │ └── functions.php ├── Slugger │ ├── AsciiSlugger.php │ └── SluggerInterface.php └── UnicodeString.php ├── translation-contracts ├── LocaleAwareInterface.php ├── TranslatableInterface.php ├── TranslatorInterface.php └── TranslatorTrait.php └── translation ├── Catalogue ├── AbstractOperation.php ├── MergeOperation.php ├── OperationInterface.php └── TargetOperation.php ├── CatalogueMetadataAwareInterface.php ├── Command ├── TranslationPullCommand.php ├── TranslationPushCommand.php ├── TranslationTrait.php └── XliffLintCommand.php ├── DataCollector └── TranslationDataCollector.php ├── DataCollectorTranslator.php ├── DependencyInjection ├── TranslationDumperPass.php ├── TranslationExtractorPass.php ├── TranslatorPass.php └── TranslatorPathsPass.php ├── Dumper ├── CsvFileDumper.php ├── DumperInterface.php ├── FileDumper.php ├── IcuResFileDumper.php ├── IniFileDumper.php ├── JsonFileDumper.php ├── MoFileDumper.php ├── PhpFileDumper.php ├── PoFileDumper.php ├── QtFileDumper.php ├── XliffFileDumper.php └── YamlFileDumper.php ├── Exception ├── ExceptionInterface.php ├── IncompleteDsnException.php ├── InvalidArgumentException.php ├── InvalidResourceException.php ├── LogicException.php ├── MissingRequiredOptionException.php ├── NotFoundResourceException.php ├── ProviderException.php ├── ProviderExceptionInterface.php ├── RuntimeException.php └── UnsupportedSchemeException.php ├── Extractor ├── AbstractFileExtractor.php ├── ChainExtractor.php ├── ExtractorInterface.php ├── PhpAstExtractor.php ├── PhpExtractor.php ├── PhpStringTokenParser.php └── Visitor │ ├── AbstractVisitor.php │ ├── ConstraintVisitor.php │ ├── TransMethodVisitor.php │ └── TranslatableMessageVisitor.php ├── Formatter ├── IntlFormatter.php ├── IntlFormatterInterface.php ├── MessageFormatter.php └── MessageFormatterInterface.php ├── IdentityTranslator.php ├── Loader ├── ArrayLoader.php ├── CsvFileLoader.php ├── FileLoader.php ├── IcuDatFileLoader.php ├── IcuResFileLoader.php ├── IniFileLoader.php ├── JsonFileLoader.php ├── LoaderInterface.php ├── MoFileLoader.php ├── PhpFileLoader.php ├── PoFileLoader.php ├── QtFileLoader.php ├── XliffFileLoader.php └── YamlFileLoader.php ├── LocaleSwitcher.php ├── LoggingTranslator.php ├── MessageCatalogue.php ├── MessageCatalogueInterface.php ├── MetadataAwareInterface.php ├── Provider ├── AbstractProviderFactory.php ├── Dsn.php ├── FilteringProvider.php ├── NullProvider.php ├── NullProviderFactory.php ├── ProviderFactoryInterface.php ├── ProviderInterface.php ├── TranslationProviderCollection.php └── TranslationProviderCollectionFactory.php ├── PseudoLocalizationTranslator.php ├── Reader ├── TranslationReader.php └── TranslationReaderInterface.php ├── Resources ├── bin │ └── translation-status.php ├── functions.php └── schemas │ ├── xliff-core-1.2-transitional.xsd │ ├── xliff-core-2.0.xsd │ └── xml.xsd ├── TranslatableMessage.php ├── Translator.php ├── TranslatorBag.php ├── TranslatorBagInterface.php ├── Util ├── ArrayConverter.php └── XliffUtils.php └── Writer ├── TranslationWriter.php └── TranslationWriterInterface.php /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.php] 13 | indent_size = 4 14 | 15 | [*.md,*.txt] 16 | trim_trailing_whitespace = false 17 | insert_final_newline = false 18 | 19 | [composer.json] 20 | indent_size = 4 21 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/lib/chunky.php']); 14 | 15 | Kirby::plugin('dgtlone/kirby-chunky', [ 16 | 'options' => [ 17 | 'chunk_size' => null, 18 | ], 19 | 'api' => array( 20 | 'routes' => \DGTLONE\Chunky::apiRoutes(), 21 | ) 22 | ]); 23 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Kirby Chunky 4 | * 5 | * @version 1.0.0 6 | * @link https://github.com 7 | * @license MIT 8 | * @author DGTL.ONE 9 | */ 10 | 11 | import upload from "./forms/upload.vue"; 12 | 13 | panel.plugin('dgtlone/kirby-chunky', { 14 | components: { 15 | 'k-upload': upload, 16 | }, 17 | }); -------------------------------------------------------------------------------- /vendor/ankitpokhrel/tus-php/bin/tus: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | add(new ExpirationCommand()); 16 | 17 | $app->run(); 18 | -------------------------------------------------------------------------------- /vendor/ankitpokhrel/tus-php/src/Exception/ConnectionException.php: -------------------------------------------------------------------------------- 1 | */ 15 | use CarbonTypeConverter; 16 | } 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Exceptions/BadMethodCallException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Carbon\Exceptions; 13 | 14 | interface BadMethodCallException extends Exception 15 | { 16 | // 17 | } 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Exceptions/Exception.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Carbon\Exceptions; 13 | 14 | interface Exception 15 | { 16 | // 17 | } 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Carbon\Exceptions; 13 | 14 | interface InvalidArgumentException extends Exception 15 | { 16 | // 17 | } 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Carbon\Exceptions; 13 | 14 | interface RuntimeException extends Exception 15 | { 16 | // 17 | } 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/aa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/aa_DJ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/af.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/agr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/agr_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ak.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ak_GH.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/am.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/am_ET.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/an.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/an_ES.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/anp.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/anp_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_DJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_EH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_ER.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_IL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_KM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_MR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_SO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_TD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/as.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/as_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ast.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ayc.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ayc_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bem.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bem_ZM.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ber.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ber_DZ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/bg.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bhb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bhb_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bho.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bho_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bi_VU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/bo.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/br.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/brx.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/brx_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/bs.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bs_Latn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/bs.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/byn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/byn_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_AD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ca.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ca.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ca.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_IT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ca.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ccp_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ccp.php', [ 13 | 'weekend' => [0, 0], 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ce.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ce_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/chr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/chr_US.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cmn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/cmn_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/crh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/crh_UA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/cs.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/csb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/csb_PL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/cv.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/cy.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/da.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/de_DE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org 15 | */ 16 | return require __DIR__.'/de.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/de_IT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Matthias Dieter Wallno:fer libc-locales@sourceware.org 15 | */ 16 | return require __DIR__.'/de.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/de_LI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/de.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/doi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/doi_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/dsb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/dsb_DE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/dz.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/dz_BT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_001.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_150.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_AI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_AS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_AT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_DE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_DG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_DM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_ER.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_IM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_IO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_JE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_JM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_LC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_LR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_LS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_RW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 6, 14 | 'weekend' => [5, 6], 15 | ]); 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_UG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_UM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_US.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_US_Posix.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_WS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_ZW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_BR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/es.php', [ 13 | 'first_day_of_week' => 0, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_BZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/es.php', [ 13 | 'first_day_of_week' => 0, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_CU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/es.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_EA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/es.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - RAP bug-glibc-locales@gnu.org 15 | */ 16 | return require __DIR__.'/es.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/es.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_IC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/es.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/et.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/eu.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fa.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ff_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ff.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ff_GN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ff.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ff_SN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Pular-Fulfulde.org Ibrahima Sarr admin@pulaar-fulfulde.org 15 | */ 16 | return require __DIR__.'/ff.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fi.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fil.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/fil_PH.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fo.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/fr.php', [ 13 | 'meridiem' => ['mat.', 'soir'], 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_HT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_KM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/fr.php', [ 13 | 'first_day_of_week' => 6, 14 | 'weekend' => [5, 6], 15 | ]); 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_ML.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_NC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_NE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_PF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_PM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_RE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_RW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_SC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_SN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_TG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_WF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_YT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fur.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/fur_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ga.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gd.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gez.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/gez_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gom.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/gom_Latn.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gsw.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gu.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gv.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/gv_GB.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha_GH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ha.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha_NE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ha.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ha.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hak.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hak_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/he.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/hi.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hif.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hif_FJ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hne.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hne_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/hr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hsb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hsb_DE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ht.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ht_HT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/hu.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ia.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ia_FR.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/id.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ig.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ig_NG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ik.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ik_CA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/in.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/id.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/is.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it_IT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - RAP bug-glibc-locales@gnu.org 15 | */ 16 | return require __DIR__.'/it.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it_SM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/it.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it_VA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/it.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/iu.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/iu_CA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ja.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/jgo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ka.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kab.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kab_DZ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/kk.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kkj.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kl.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kl_GL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/km.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/kn.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ko_KP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ko.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ko.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kok.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kok_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ks.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ks_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ku.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kw_GB.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ky.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lb.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lg.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/lg_UG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/li.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/li_NL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lij.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/lij_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ln_CD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Ubuntu René Manassé GALEKWA renemanasse@gmail.com 15 | */ 16 | return require __DIR__.'/ln.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lo.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/lrc.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lv.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lzh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/lzh_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mag.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mag_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mai.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mai_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mas_TZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/mas.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mfe.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mfe_MU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mg.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mg_MG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mhr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mhr_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mi.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/miq.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/miq_NI.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mjw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mjw_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mk.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ml.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mn.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mni.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mni_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ro.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ms_MY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Josh Soref 15 | * - Azri Jamil 16 | * - JD Isaacks 17 | */ 18 | return require __DIR__.'/ms.php'; 19 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/my.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nan.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nan_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nb.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nds.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nds_DE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ne.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nhn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nhn_MX.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/niu.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/niu_NU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_BQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_CW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_SR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_SX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nn.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nr_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nso.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nso_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/oc.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/om.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/om_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/om.php', [ 13 | 'day_of_first_week_of_year' => 0, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/or.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/or_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/os.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/os_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pa_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Guo Xiang Tan 15 | * - Josh Soref 16 | * - Ash 17 | * - harpreetkhalsagtbit 18 | */ 19 | return require __DIR__.'/pa.php'; 20 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pap_AW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - information from native speaker Pablo Saratxaga pablo@mandrakesoft.com 15 | */ 16 | return require __DIR__.'/pap.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pap_CW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - information from native speaker Pablo Saratxaga pablo@mandrakesoft.com 15 | */ 16 | return require __DIR__.'/pap.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ps.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_AO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_CV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_GW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_LU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_MZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/pt.php', [ 13 | 'first_day_of_week' => 0, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_ST.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_TL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/qu_BO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/qu.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/qu_EC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/qu.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/quz.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/quz_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/raj.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/raj_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ro.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_BY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_KG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_KZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_MD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/rw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/rw_RW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sa_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sah.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sah_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sat.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sat_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sc.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sc_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/se.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/se_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/se.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sgs.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sgs_LT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/shi_Tfng.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/shi.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/shn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/shn_MM.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/shs.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/shs_CA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/si.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sid.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sid_ET.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sk.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sl.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sm.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sm_WS.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/so_ET.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Ge'ez Frontier Foundation locales@geez.org 15 | */ 16 | return require __DIR__.'/so.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/so_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Ge'ez Frontier Foundation locales@geez.org 15 | */ 16 | return require __DIR__.'/so.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/so_SO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Ge'ez Frontier Foundation locales@geez.org 15 | */ 16 | return require __DIR__.'/so.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sq.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sr_Latn_ME.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_RS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - sr_YU, sr_CS locale Danilo Segan bug-glibc-locales@gnu.org 15 | */ 16 | return require __DIR__.'/sr_Cyrl.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ss.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/st.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/st_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sv.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sv.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sw_CD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/sw.php', [ 13 | 'formats' => [ 14 | 'L' => 'DD/MM/YYYY', 15 | 'LL' => 'D MMM YYYY', 16 | ], 17 | ]); 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sw_UG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/sw.php', [ 13 | 'formats' => [ 14 | 'L' => 'DD/MM/YYYY', 15 | 'LL' => 'D MMM YYYY', 16 | ], 17 | ]); 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/szl.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/szl_PL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tcy.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tcy_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/te.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/teo_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/teo.php', [ 13 | 'first_day_of_week' => 0, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/tg.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/th.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/the.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/the_NP.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ti.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ti_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tig.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tig_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tk.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tk_TM.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tl_PH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - François B 15 | * - Ian De La Cruz 16 | * - JD Isaacks 17 | */ 18 | return require __DIR__.'/tl.php'; 19 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tn_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/to.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/to_TO.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tpi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tpi_PG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/tr.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ts.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ts_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tt.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tt_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/twq.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ses.php', [ 13 | 'meridiem' => ['Subbaahi', 'Zaarikay b'], 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ug_CN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Kunal Marwaha 15 | * - Alim Boyaq 16 | */ 17 | return require __DIR__.'/ug.php'; 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/uk.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/unm.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/unm_US.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vai_Vaii.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/vai.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ve.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ve_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/vi.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/wa_BE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wae.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/wae_CH.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wal.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/wal_ET.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/wo_SN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/xh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/xh_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/yi_US.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/yo.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yue.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/yue_HK.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yue_Hans.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yue_Hant.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yuw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/yuw_PG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant_HK.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_SG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_TW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant_TW.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zu.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/zu_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/predis/predis/autoload.php: -------------------------------------------------------------------------------- 1 | 'ss', 5 | 962 => 'σ', 6 | 8204 => '', 7 | 8205 => '', 8 | ); 9 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) { 13 | class PhpToken extends Symfony\Polyfill\Php80\PhpToken 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80000) { 13 | class UnhandledMatchError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | if (\PHP_VERSION_ID < 80000) { 13 | class ValueError extends Error 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/string/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | interface ExceptionInterface extends \Throwable 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/string/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/symfony/string/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\String\Exception; 13 | 14 | class RuntimeException extends \RuntimeException implements ExceptionInterface 15 | { 16 | } 17 | --------------------------------------------------------------------------------