├── .gitignore ├── vendor ├── psr │ ├── container │ │ ├── .gitignore │ │ └── src │ │ │ ├── NotFoundExceptionInterface.php │ │ │ └── ContainerExceptionInterface.php │ └── simple-cache │ │ ├── src │ │ ├── CacheException.php │ │ └── InvalidArgumentException.php │ │ └── .editorconfig ├── symfony │ ├── translation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ └── README.md │ ├── polyfill-php80 │ │ └── Resources │ │ │ └── stubs │ │ │ ├── ValueError.php │ │ │ ├── UnhandledMatchError.php │ │ │ ├── PhpToken.php │ │ │ └── Stringable.php │ └── css-selector │ │ └── CHANGELOG.md ├── voku │ ├── simple_html_dom │ │ ├── build │ │ │ └── composer.json │ │ └── .github │ │ │ ├── FUNDING.yml │ │ │ └── ISSUE_TEMPLATE.md │ └── html-min │ │ └── renovate.json ├── nesbot │ └── carbon │ │ ├── bin │ │ └── carbon.bat │ │ ├── extension.neon │ │ └── src │ │ └── Carbon │ │ ├── Lang │ │ ├── in.php │ │ ├── mo.php │ │ ├── af_ZA.php │ │ ├── ast_ES.php │ │ ├── bg_BG.php │ │ ├── bo_CN.php │ │ ├── br_FR.php │ │ ├── bs_BA.php │ │ ├── ca_ES.php │ │ ├── cs_CZ.php │ │ ├── cv_RU.php │ │ ├── cy_GB.php │ │ ├── da_DK.php │ │ ├── de_LI.php │ │ ├── en_AS.php │ │ ├── en_BS.php │ │ ├── en_BW.php │ │ ├── en_BZ.php │ │ ├── en_DM.php │ │ ├── en_GU.php │ │ ├── en_JM.php │ │ ├── en_KE.php │ │ ├── en_MH.php │ │ ├── en_MO.php │ │ ├── en_MT.php │ │ ├── en_PK.php │ │ ├── en_PR.php │ │ ├── en_TT.php │ │ ├── en_UM.php │ │ ├── en_US.php │ │ ├── en_VI.php │ │ ├── en_WS.php │ │ ├── en_ZW.php │ │ ├── et_EE.php │ │ ├── eu_ES.php │ │ ├── fa_IR.php │ │ ├── ff_CM.php │ │ ├── ff_GN.php │ │ ├── fi_FI.php │ │ ├── fo_FO.php │ │ ├── fr_BF.php │ │ ├── fr_BI.php │ │ ├── fr_BJ.php │ │ ├── fr_BL.php │ │ ├── fr_CD.php │ │ ├── fr_CF.php │ │ ├── fr_CG.php │ │ ├── fr_CI.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_MC.php │ │ ├── fr_MF.php │ │ ├── fr_MG.php │ │ ├── fr_ML.php │ │ ├── fr_MQ.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_TG.php │ │ ├── fr_WF.php │ │ ├── fr_YT.php │ │ ├── ga_IE.php │ │ ├── gd_GB.php │ │ ├── gl_ES.php │ │ ├── gsw_CH.php │ │ ├── gu_IN.php │ │ ├── ha_GH.php │ │ ├── ha_NE.php │ │ ├── ha_NG.php │ │ ├── he_IL.php │ │ ├── hi_IN.php │ │ ├── hr_HR.php │ │ ├── hu_HU.php │ │ ├── id_ID.php │ │ ├── is_IS.php │ │ ├── it_SM.php │ │ ├── it_VA.php │ │ ├── ja_JP.php │ │ ├── ka_GE.php │ │ ├── kk_KZ.php │ │ ├── km_KH.php │ │ ├── kn_IN.php │ │ ├── ko_KR.php │ │ ├── ku_TR.php │ │ ├── ky_KG.php │ │ ├── lb_LU.php │ │ ├── lo_LA.php │ │ ├── lt_LT.php │ │ ├── lv_LV.php │ │ ├── mi_NZ.php │ │ ├── mk_MK.php │ │ ├── ml_IN.php │ │ ├── mn_MN.php │ │ ├── mr_IN.php │ │ ├── mt_MT.php │ │ ├── my_MM.php │ │ ├── nb_NO.php │ │ ├── ne_NP.php │ │ ├── nl_BQ.php │ │ ├── nl_CW.php │ │ ├── nl_SR.php │ │ ├── nl_SX.php │ │ ├── nn_NO.php │ │ ├── oc_FR.php │ │ ├── om_ET.php │ │ ├── pl_PL.php │ │ ├── ps_AF.php │ │ ├── pt_AO.php │ │ ├── pt_CH.php │ │ ├── pt_CV.php │ │ ├── pt_GQ.php │ │ ├── pt_GW.php │ │ ├── pt_LU.php │ │ ├── pt_ST.php │ │ ├── pt_TL.php │ │ ├── ro_RO.php │ │ ├── ru_BY.php │ │ ├── ru_KG.php │ │ ├── ru_KZ.php │ │ ├── ru_MD.php │ │ ├── ru_RU.php │ │ ├── se_NO.php │ │ ├── se_SE.php │ │ ├── shi_Tfng.php │ │ ├── si_LK.php │ │ ├── sk_SK.php │ │ ├── sl_SI.php │ │ ├── sq_AL.php │ │ ├── sr_Latn.php │ │ ├── ss_ZA.php │ │ ├── sv_FI.php │ │ ├── sv_SE.php │ │ ├── te_IN.php │ │ ├── tg_TJ.php │ │ ├── th_TH.php │ │ ├── tr_TR.php │ │ ├── uk_UA.php │ │ ├── vai_Vaii.php │ │ ├── vi_VN.php │ │ ├── yo_NG.php │ │ ├── en_US_Posix.php │ │ ├── sr_ME.php │ │ ├── sr_RS@latin.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── zh_HK.php │ │ ├── zh_TW.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.php │ │ ├── zh_Hant_TW.php │ │ ├── jgo.php │ │ ├── kkj.php │ │ ├── ar_DJ.php │ │ ├── ar_EH.php │ │ ├── ar_ER.php │ │ ├── ar_IL.php │ │ ├── ar_KM.php │ │ ├── ar_MR.php │ │ ├── ar_PS.php │ │ ├── ar_SO.php │ │ ├── ar_TD.php │ │ ├── bs_Latn.php │ │ ├── ca_AD.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── lrc_IQ.php │ │ ├── ca_ES_Valencia.php │ │ ├── ccp_IN.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── en_AI.php │ │ ├── en_AT.php │ │ ├── en_BB.php │ │ ├── en_BE.php │ │ ├── en_BI.php │ │ ├── en_BM.php │ │ ├── en_CC.php │ │ ├── en_CH.php │ │ ├── en_CK.php │ │ ├── en_CM.php │ │ ├── en_CX.php │ │ ├── en_DE.php │ │ ├── en_DG.php │ │ ├── en_ER.php │ │ ├── en_FI.php │ │ ├── en_FJ.php │ │ ├── en_FK.php │ │ ├── en_FM.php │ │ ├── en_GD.php │ │ ├── en_GG.php │ │ ├── en_GH.php │ │ ├── en_GI.php │ │ ├── en_GM.php │ │ ├── en_GY.php │ │ ├── en_IM.php │ │ ├── en_IO.php │ │ ├── en_JE.php │ │ ├── en_KI.php │ │ ├── en_KN.php │ │ ├── en_KY.php │ │ ├── en_LC.php │ │ ├── en_LR.php │ │ ├── en_LS.php │ │ ├── en_MG.php │ │ ├── en_MP.php │ │ ├── en_MS.php │ │ ├── en_MU.php │ │ ├── en_MW.php │ │ ├── en_MY.php │ │ ├── en_NA.php │ │ ├── en_NF.php │ │ ├── en_NL.php │ │ ├── en_NR.php │ │ ├── en_NU.php │ │ ├── en_PG.php │ │ ├── en_PN.php │ │ ├── en_PW.php │ │ ├── en_RW.php │ │ ├── en_SB.php │ │ ├── en_SC.php │ │ ├── en_SE.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_TV.php │ │ ├── en_TZ.php │ │ ├── en_UG.php │ │ ├── en_VC.php │ │ ├── en_VG.php │ │ ├── en_VU.php │ │ ├── es_BR.php │ │ ├── es_BZ.php │ │ ├── es_CU.php │ │ ├── es_EA.php │ │ ├── es_GQ.php │ │ ├── es_IC.php │ │ ├── ko_KP.php │ │ ├── mas_TZ.php │ │ ├── pt_MZ.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── teo_KE.php │ │ ├── aa.php │ │ ├── ak.php │ │ ├── am.php │ │ ├── an.php │ │ ├── as.php │ │ ├── bi.php │ │ ├── ce.php │ │ ├── dz.php │ │ ├── es_ES.php │ │ ├── fr_CM.php │ │ ├── gv.php │ │ ├── ht.php │ │ ├── ia.php │ │ ├── ig.php │ │ ├── ik.php │ │ ├── it_IT.php │ │ ├── iu.php │ │ ├── kl.php │ │ ├── ks.php │ │ ├── kw.php │ │ ├── lg.php │ │ ├── li.php │ │ ├── mg.php │ │ ├── nr.php │ │ ├── om_KE.php │ │ ├── or.php │ │ ├── os.php │ │ ├── rw.php │ │ ├── sa.php │ │ ├── sc.php │ │ ├── sm.php │ │ ├── st.php │ │ ├── ti.php │ │ ├── tk.php │ │ ├── tn.php │ │ ├── to.php │ │ ├── ts.php │ │ ├── tt.php │ │ ├── ug_CN.php │ │ ├── ve.php │ │ ├── wa.php │ │ ├── wo.php │ │ ├── xh.php │ │ ├── yi.php │ │ ├── zu.php │ │ ├── agr.php │ │ ├── anp.php │ │ ├── ayc.php │ │ ├── bem.php │ │ ├── ber.php │ │ ├── bhb.php │ │ ├── bho.php │ │ ├── brx.php │ │ ├── byn.php │ │ ├── chr.php │ │ ├── cmn.php │ │ ├── crh.php │ │ ├── csb.php │ │ ├── doi.php │ │ ├── dsb.php │ │ ├── fil.php │ │ ├── fur.php │ │ ├── gez.php │ │ ├── gom.php │ │ ├── hak.php │ │ ├── hif.php │ │ ├── hne.php │ │ ├── hsb.php │ │ ├── kab.php │ │ ├── kok.php │ │ ├── lij.php │ │ ├── lzh.php │ │ ├── mag.php │ │ ├── mai.php │ │ ├── mfe.php │ │ ├── mhr.php │ │ ├── miq.php │ │ ├── mjw.php │ │ ├── mni.php │ │ ├── nan.php │ │ ├── nds.php │ │ ├── nhn.php │ │ ├── niu.php │ │ ├── nso.php │ │ ├── quz.php │ │ ├── raj.php │ │ ├── sah.php │ │ ├── sat.php │ │ ├── sgs.php │ │ ├── shn.php │ │ ├── shs.php │ │ ├── sid.php │ │ ├── szl.php │ │ ├── tcy.php │ │ ├── the.php │ │ ├── tig.php │ │ ├── tpi.php │ │ └── unm.php │ │ └── Exceptions │ │ └── Exception.php ├── illuminate │ ├── contracts │ │ ├── Queue │ │ │ ├── ShouldQueue.php │ │ │ ├── ShouldBeUnique.php │ │ │ ├── ShouldBeEncrypted.php │ │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ │ ├── ClearableQueue.php │ │ │ ├── Factory.php │ │ │ └── EntityResolver.php │ │ ├── Database │ │ │ ├── Events │ │ │ │ └── MigrationEvent.php │ │ │ ├── Query │ │ │ │ └── Builder.php │ │ │ └── Eloquent │ │ │ │ └── Builder.php │ │ ├── Validation │ │ │ ├── ImplicitRule.php │ │ │ ├── ValidatesWhenResolved.php │ │ │ ├── DataAwareRule.php │ │ │ ├── UncompromisedVerifier.php │ │ │ └── ValidatorAwareRule.php │ │ ├── Auth │ │ │ ├── Middleware │ │ │ │ └── AuthenticatesRequests.php │ │ │ ├── PasswordBrokerFactory.php │ │ │ └── Access │ │ │ │ └── Authorizable.php │ │ ├── Session │ │ │ └── Middleware │ │ │ │ └── AuthenticatesSessions.php │ │ ├── Broadcasting │ │ │ ├── ShouldBroadcastNow.php │ │ │ ├── Factory.php │ │ │ └── ShouldBroadcast.php │ │ ├── Cache │ │ │ ├── LockTimeoutException.php │ │ │ └── Factory.php │ │ ├── Redis │ │ │ ├── LimiterTimeoutException.php │ │ │ └── Factory.php │ │ ├── Filesystem │ │ │ ├── LockTimeoutException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── Cloud.php │ │ │ └── Factory.php │ │ ├── Encryption │ │ │ ├── DecryptException.php │ │ │ └── EncryptException.php │ │ ├── Support │ │ │ ├── ValidatedData.php │ │ │ ├── Htmlable.php │ │ │ ├── Renderable.php │ │ │ ├── DeferrableProvider.php │ │ │ ├── MessageProvider.php │ │ │ ├── Jsonable.php │ │ │ ├── Arrayable.php │ │ │ ├── DeferringDisplayableValue.php │ │ │ └── Responsable.php │ │ ├── Container │ │ │ ├── BindingResolutionException.php │ │ │ └── CircularDependencyException.php │ │ ├── Mail │ │ │ ├── Attachable.php │ │ │ └── Factory.php │ │ ├── Translation │ │ │ └── HasLocalePreference.php │ │ ├── Foundation │ │ │ └── ExceptionRenderer.php │ │ ├── View │ │ │ └── Engine.php │ │ └── Pipeline │ │ │ └── Hub.php │ ├── collections │ │ └── ItemNotFoundException.php │ ├── container │ │ └── EntryNotFoundException.php │ └── bus │ │ └── PrunableBatchRepository.php ├── bin │ └── carbon.bat ├── composer │ └── autoload_namespaces.php └── doctrine │ └── inflector │ ├── lib │ └── Doctrine │ │ └── Inflector │ │ ├── WordInflector.php │ │ └── NoopWordInflector.php │ └── phpstan.neon.dist └── .github └── FUNDING.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /kirby 2 | .idea 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://a.paddle.com/v2/click/1129/52467?link=1170'] 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/voku/simple_html_dom/build/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require-dev": { 3 | "voku/php-readme-helper": "~0.6" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/bin/carbon.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/carbon 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /vendor/illuminate/contracts/Queue/ShouldQueue.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/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/psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at http://editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | indent_size = 4 9 | indent_style = space 10 | end_of_line = lf 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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_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/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_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_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_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_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_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_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_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_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_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_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_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_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/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/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/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_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_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/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/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/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/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/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/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/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/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/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_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/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/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/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/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_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/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/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/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/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/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/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/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/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/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/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/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/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/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_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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/illuminate/contracts/Cache/Factory.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/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@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/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/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_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/psr/simple-cache/src/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 | 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/illuminate/contracts/Filesystem/Factory.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | public function toArray(); 17 | } 18 | -------------------------------------------------------------------------------- /vendor/illuminate/contracts/Validation/UncompromisedVerifier.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/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/illuminate/contracts/Auth/PasswordBrokerFactory.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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_PS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/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/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_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/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/doctrine/inflector/phpstan.neon.dist: -------------------------------------------------------------------------------- 1 | includes: 2 | - vendor/phpstan/phpstan-phpunit/extension.neon 3 | - vendor/phpstan/phpstan-phpunit/rules.neon 4 | - vendor/phpstan/phpstan-strict-rules/rules.neon 5 | 6 | parameters: 7 | level: 7 8 | paths: 9 | - lib 10 | - tests 11 | 12 | excludes_analyse: 13 | - %rootDir%/../../../tests/Doctrine/Tests/Common/* 14 | -------------------------------------------------------------------------------- /vendor/illuminate/contracts/Pipeline/Hub.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/illuminate/contracts/Broadcasting/ShouldBroadcast.php: -------------------------------------------------------------------------------- 1 | 7 | * 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/illuminate/contracts/Auth/Access/Authorizable.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/illuminate/bus/PrunableBatchRepository.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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_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_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_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_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_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_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_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_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_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_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_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_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_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/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_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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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 | --------------------------------------------------------------------------------