├── vendor ├── psr │ ├── log │ │ ├── .gitignore │ │ └── Psr │ │ │ └── Log │ │ │ ├── InvalidArgumentException.php │ │ │ └── LoggerAwareInterface.php │ ├── container │ │ ├── .gitignore │ │ ├── README.md │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ └── NotFoundExceptionInterface.php │ └── simple-cache │ │ ├── src │ │ ├── CacheException.php │ │ └── InvalidArgumentException.php │ │ └── .editorconfig ├── symfony │ ├── finder │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ ├── .dot │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ └── .gitignore │ ├── translation │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── extractor │ │ │ │ ├── resource.format.engine │ │ │ │ └── this.is.a.template.format.engine │ │ │ │ ├── malformed.json │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── resources.dump.json │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── messages_linear.yml │ │ │ │ ├── valid.csv │ │ │ │ ├── messages.yml │ │ │ │ ├── resources.php │ │ │ │ ├── resources.csv │ │ │ │ ├── plurals.mo │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ ├── empty-translation.mo │ │ │ │ ├── plurals.po │ │ │ │ ├── fuzzy-translations.po │ │ │ │ ├── escaped-id.po │ │ │ │ ├── escaped-id-plurals.po │ │ │ │ └── non-valid.xlf │ │ └── .gitignore │ └── debug │ │ ├── .gitignore │ │ └── Tests │ │ ├── Fixtures │ │ ├── Throwing.php │ │ ├── PEARClass.php │ │ ├── notPsr0Bis.php │ │ ├── reallyNotPsr0.php │ │ ├── casemismatch.php │ │ ├── psr4 │ │ │ └── Psr4CaseMismatch.php │ │ ├── ClassAlias.php │ │ ├── InternalTrait.php │ │ ├── NonDeprecatedInterface.php │ │ ├── InternalInterface.php │ │ ├── DeprecatedClass.php │ │ ├── AnnotatedClass.php │ │ ├── DeprecatedInterface.php │ │ ├── InternalClass.php │ │ └── ExtendedFinalMethod.php │ │ └── Fixtures2 │ │ └── RequiredTwice.php ├── bin │ └── carbon ├── nesbot │ └── carbon │ │ ├── bin │ │ └── carbon.bat │ │ └── src │ │ └── Carbon │ │ └── Lang │ │ ├── af_ZA.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 │ │ ├── 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 │ │ ├── mo.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 │ │ ├── si_LK.php │ │ ├── sk_SK.php │ │ ├── sl_SI.php │ │ ├── sq_AL.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 │ │ ├── vi_VN.php │ │ ├── yo_NG.php │ │ ├── gsw_CH.php │ │ ├── shi_Tfng.php │ │ ├── sr_Latn.php │ │ ├── vai_Vaii.php │ │ ├── en_US_Posix.php │ │ ├── sr_ME.php │ │ ├── sr_RS@latin.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.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 │ │ ├── ca_AD.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── jgo.php │ │ ├── kkj.php │ │ ├── bs_Latn.php │ │ ├── lrc_IQ.php │ │ ├── ca_ES_Valencia.php │ │ ├── ccp_IN.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 │ │ ├── pt_MZ.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── mas_TZ.php │ │ ├── teo_KE.php │ │ ├── fr_CM.php │ │ ├── om_KE.php │ │ ├── zh_Hans.php │ │ ├── zh_Hant.php │ │ ├── es_ES.php │ │ ├── it_IT.php │ │ ├── twq.php │ │ ├── aa.php │ │ ├── agr.php │ │ ├── ak.php │ │ ├── am.php │ │ ├── an.php │ │ ├── anp.php │ │ ├── as.php │ │ ├── ast.php │ │ ├── ayc.php │ │ ├── bem.php │ │ ├── ber.php │ │ ├── bhb.php │ │ ├── bho.php │ │ ├── bi.php │ │ ├── brx.php │ │ ├── byn.php │ │ ├── ce.php │ │ ├── chr.php │ │ ├── cmn.php │ │ ├── crh.php │ │ ├── csb.php │ │ ├── doi.php │ │ ├── dsb.php │ │ ├── dz.php │ │ ├── fil.php │ │ ├── fur.php │ │ ├── gez.php │ │ ├── gom.php │ │ ├── gv.php │ │ ├── hak.php │ │ ├── hif.php │ │ ├── hne.php │ │ ├── hsb.php │ │ ├── ht.php │ │ ├── ia.php │ │ ├── ig.php │ │ ├── ik.php │ │ ├── iu.php │ │ ├── kab.php │ │ ├── kl.php │ │ ├── kok.php │ │ ├── ks.php │ │ ├── kw.php │ │ ├── lg.php │ │ ├── li.php │ │ ├── lij.php │ │ ├── lzh.php │ │ ├── mag.php │ │ ├── mai.php │ │ ├── mfe.php │ │ ├── mg.php │ │ ├── mhr.php │ │ ├── miq.php │ │ ├── mjw.php │ │ ├── mni.php │ │ ├── nan.php │ │ ├── nds.php │ │ ├── nhn.php │ │ ├── niu.php │ │ ├── nr.php │ │ ├── nso.php │ │ ├── or.php │ │ ├── os.php │ │ ├── quz.php │ │ ├── raj.php │ │ ├── rw.php │ │ ├── sa.php │ │ ├── sah.php │ │ ├── sat.php │ │ ├── sc.php │ │ ├── sgs.php │ │ ├── shn.php │ │ ├── shs.php │ │ ├── sid.php │ │ ├── sm.php │ │ ├── so.php │ │ ├── st.php │ │ ├── szl.php │ │ ├── tcy.php │ │ ├── the.php │ │ └── ti.php ├── illuminate │ ├── contracts │ │ ├── Queue │ │ │ ├── ShouldQueue.php │ │ │ ├── Factory.php │ │ │ └── EntityResolver.php │ │ ├── Database │ │ │ └── Events │ │ │ │ └── MigrationEvent.php │ │ ├── Validation │ │ │ ├── ImplicitRule.php │ │ │ └── ValidatesWhenResolved.php │ │ ├── Broadcasting │ │ │ ├── ShouldBroadcastNow.php │ │ │ ├── Factory.php │ │ │ └── ShouldBroadcast.php │ │ ├── Cache │ │ │ ├── LockTimeoutException.php │ │ │ └── Factory.php │ │ ├── Redis │ │ │ ├── LimiterTimeoutException.php │ │ │ └── Factory.php │ │ ├── Filesystem │ │ │ ├── FileExistsException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── Cloud.php │ │ │ └── Factory.php │ │ ├── Encryption │ │ │ ├── DecryptException.php │ │ │ └── EncryptException.php │ │ ├── Support │ │ │ ├── Arrayable.php │ │ │ ├── Htmlable.php │ │ │ ├── Renderable.php │ │ │ ├── DeferrableProvider.php │ │ │ ├── MessageProvider.php │ │ │ ├── Jsonable.php │ │ │ └── Responsable.php │ │ ├── Container │ │ │ └── BindingResolutionException.php │ │ ├── Translation │ │ │ └── HasLocalePreference.php │ │ ├── Auth │ │ │ ├── PasswordBrokerFactory.php │ │ │ └── Access │ │ │ │ └── Authorizable.php │ │ ├── View │ │ │ └── Engine.php │ │ ├── Bus │ │ │ └── QueueingDispatcher.php │ │ └── Pipeline │ │ │ └── Hub.php │ ├── support │ │ ├── Carbon.php │ │ └── Traits │ │ │ └── Tappable.php │ └── container │ │ └── EntryNotFoundException.php ├── autoload.php ├── composer │ └── autoload_namespaces.php └── doctrine │ └── inflector │ └── README.md ├── .editorconfig ├── src └── View │ └── Factory.php └── index.php /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/carbon: -------------------------------------------------------------------------------- 1 | ../nesbot/carbon/bin/carbon -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/extractor/resource.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/extractor/this.is.a.template.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.dump.json: -------------------------------------------------------------------------------- 1 | {"foo":"\u0022bar\u0022"} -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/Throwing.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/af.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/bg.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/bo.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/br.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/bs.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ca.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/cs.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/cv.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/cy.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/da.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/de.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/et.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/eu.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fa.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ff.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ff.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fi.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fo.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ga.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/gd.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/gl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/gu.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ha.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ha.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ha.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/he.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/hi.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/hr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/hu.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/id.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/is.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/it.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/it.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ja.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ka.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/kk.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/km.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/kn.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ko.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ku.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ky.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/lb.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/lo.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/lt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/lv.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/mi.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/mk.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ml.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/mn.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ro.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/mr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/mt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/my.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/nb.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ne.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/nn.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/oc.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/om.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ps.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ro.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/se.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/se.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/si.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sk.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sl.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sq.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/ss.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sv.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sv.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/te.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/tg.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/th.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/tr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/uk.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/vi.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/yo.php'; 12 | -------------------------------------------------------------------------------- /vendor/illuminate/contracts/Broadcasting/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 | return require __DIR__.'/gsw.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/shi.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/vai.php'; 12 | -------------------------------------------------------------------------------- /vendor/psr/container/src/ContainerExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sr_Latn_ME.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/sr.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /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 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /vendor/psr/container/src/NotFoundExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/jgo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kkj.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/bs.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/lrc.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/illuminate/contracts/Bus/QueueingDispatcher.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ccp.php', [ 12 | 'weekend' => [0, 0], 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ko.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/pt.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/qu.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/qu.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/mas.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/teo.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | [ 10 | 'template' => function (App $kirby, string $name, string $type = 'html', string $defaultType = 'html') { 11 | return new Template($name, $type, $defaultType); 12 | } 13 | ] 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/illuminate/support/Traits/Tappable.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/fr.php', [ 12 | 'meridiem' => ['mat.', 'soir'], 13 | ]); 14 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/om.php', [ 12 | 'day_of_first_week_of_year' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_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 | return array_replace_recursive(require __DIR__.'/zh_HK.php', [ 12 | 'meridiem' => ['上午', '下午'], 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_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 | return array_replace_recursive(require __DIR__.'/zh_TW.php', [ 12 | 'meridiem' => ['上午', '下午'], 13 | ]); 14 | -------------------------------------------------------------------------------- /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/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/twq.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ses.php', [ 12 | 'meridiem' => ['Subbaahi', 'Zaarikay b'], 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/non-valid.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /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/agr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/agr_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ak.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ak_GH.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/am.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/am_ET.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/an.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/an_ES.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/anp.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/anp_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/as.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/as_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ast.php: -------------------------------------------------------------------------------- 1 | 7 | * 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__.'/ast_ES.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/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/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/ce.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ce_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/chr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/chr_US.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cmn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/cmn_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/crh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/crh_UA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/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/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/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/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/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/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/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/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/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/kok.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kok_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ks.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ks_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/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/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/mg.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mg_MG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mhr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mhr_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/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/nr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nr_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nso.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nso_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/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/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/rw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/rw_RW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sa_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sah.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sah_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sat.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sat_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sc.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sc_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/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/sm.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /** 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sm_WS.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/so.php: -------------------------------------------------------------------------------- 1 | 7 | * 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__.'/so_DJ.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/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/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 | --------------------------------------------------------------------------------