├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── Dockerfile2 ├── README.assets ├── image1.png ├── image10.png ├── image11.png ├── image12.png ├── image13.png ├── image14.png ├── image15.png ├── image16.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png ├── image7.png ├── image8.png ├── image9.png └── logo.png ├── README.md ├── app ├── composer.json ├── composer.lock ├── config │ └── config.ini ├── index.php ├── navigator.php ├── test │ ├── Calculator.php │ └── CalculatorTest.php └── vendor │ ├── autoload.php │ ├── bin │ ├── .phpunit.result.cache │ ├── carbon │ ├── php-parse │ ├── phpunit │ └── pscss │ ├── carbonphp │ └── carbon-doctrine-types │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Carbon │ │ └── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.php │ ├── citco │ └── carbon │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ └── Carbon.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── myclabs │ └── deep-copy │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ └── ci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── ChainableFilter.php │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── ArrayObjectFilter.php │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── nesbot │ └── carbon │ │ ├── .phpstorm.meta.php │ │ ├── LICENSE │ │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── extension.neon │ │ ├── lazy │ │ └── Carbon │ │ │ ├── MessageFormatter │ │ │ ├── MessageFormatterMapperStrongType.php │ │ │ └── MessageFormatterMapperWeakType.php │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ │ ├── readme.md │ │ ├── sponsors.php │ │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonPeriodImmutable.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Exceptions │ │ ├── BadComparisonUnitException.php │ │ ├── BadFluentConstructorException.php │ │ ├── BadFluentSetterException.php │ │ ├── BadMethodCallException.php │ │ ├── EndLessPeriodException.php │ │ ├── Exception.php │ │ ├── ImmutableException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCastException.php │ │ ├── InvalidDateException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidIntervalException.php │ │ ├── InvalidPeriodDateException.php │ │ ├── InvalidPeriodParameterException.php │ │ ├── InvalidTimeZoneException.php │ │ ├── InvalidTypeException.php │ │ ├── NotACarbonClassException.php │ │ ├── NotAPeriodException.php │ │ ├── NotLocaleAwareException.php │ │ ├── OutOfRangeException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── UnitException.php │ │ ├── UnitNotConfiguredException.php │ │ ├── UnknownGetterException.php │ │ ├── UnknownMethodException.php │ │ ├── UnknownSetterException.php │ │ ├── UnknownUnitException.php │ │ └── UnreachableException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang │ │ ├── aa.php │ │ ├── aa_DJ.php │ │ ├── aa_ER.php │ │ ├── aa_ER@saaho.php │ │ ├── aa_ET.php │ │ ├── af.php │ │ ├── af_NA.php │ │ ├── af_ZA.php │ │ ├── agq.php │ │ ├── agr.php │ │ ├── agr_PE.php │ │ ├── ak.php │ │ ├── ak_GH.php │ │ ├── am.php │ │ ├── am_ET.php │ │ ├── an.php │ │ ├── an_ES.php │ │ ├── anp.php │ │ ├── anp_IN.php │ │ ├── ar.php │ │ ├── ar_AE.php │ │ ├── ar_BH.php │ │ ├── ar_DJ.php │ │ ├── ar_DZ.php │ │ ├── ar_EG.php │ │ ├── ar_EH.php │ │ ├── ar_ER.php │ │ ├── ar_IL.php │ │ ├── ar_IN.php │ │ ├── ar_IQ.php │ │ ├── ar_JO.php │ │ ├── ar_KM.php │ │ ├── ar_KW.php │ │ ├── ar_LB.php │ │ ├── ar_LY.php │ │ ├── ar_MA.php │ │ ├── ar_MR.php │ │ ├── ar_OM.php │ │ ├── ar_PS.php │ │ ├── ar_QA.php │ │ ├── ar_SA.php │ │ ├── ar_SD.php │ │ ├── ar_SO.php │ │ ├── ar_SS.php │ │ ├── ar_SY.php │ │ ├── ar_Shakl.php │ │ ├── ar_TD.php │ │ ├── ar_TN.php │ │ ├── ar_YE.php │ │ ├── as.php │ │ ├── as_IN.php │ │ ├── asa.php │ │ ├── ast.php │ │ ├── ast_ES.php │ │ ├── ayc.php │ │ ├── ayc_PE.php │ │ ├── az.php │ │ ├── az_AZ.php │ │ ├── az_Cyrl.php │ │ ├── az_IR.php │ │ ├── az_Latn.php │ │ ├── bas.php │ │ ├── be.php │ │ ├── be_BY.php │ │ ├── be_BY@latin.php │ │ ├── bem.php │ │ ├── bem_ZM.php │ │ ├── ber.php │ │ ├── ber_DZ.php │ │ ├── ber_MA.php │ │ ├── bez.php │ │ ├── bg.php │ │ ├── bg_BG.php │ │ ├── bhb.php │ │ ├── bhb_IN.php │ │ ├── bho.php │ │ ├── bho_IN.php │ │ ├── bi.php │ │ ├── bi_VU.php │ │ ├── bm.php │ │ ├── bn.php │ │ ├── bn_BD.php │ │ ├── bn_IN.php │ │ ├── bo.php │ │ ├── bo_CN.php │ │ ├── bo_IN.php │ │ ├── br.php │ │ ├── br_FR.php │ │ ├── brx.php │ │ ├── brx_IN.php │ │ ├── bs.php │ │ ├── bs_BA.php │ │ ├── bs_Cyrl.php │ │ ├── bs_Latn.php │ │ ├── byn.php │ │ ├── byn_ER.php │ │ ├── ca.php │ │ ├── ca_AD.php │ │ ├── ca_ES.php │ │ ├── ca_ES_Valencia.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── ccp.php │ │ ├── ccp_IN.php │ │ ├── ce.php │ │ ├── ce_RU.php │ │ ├── cgg.php │ │ ├── chr.php │ │ ├── chr_US.php │ │ ├── ckb.php │ │ ├── cmn.php │ │ ├── cmn_TW.php │ │ ├── crh.php │ │ ├── crh_UA.php │ │ ├── cs.php │ │ ├── cs_CZ.php │ │ ├── csb.php │ │ ├── csb_PL.php │ │ ├── cu.php │ │ ├── cv.php │ │ ├── cv_RU.php │ │ ├── cy.php │ │ ├── cy_GB.php │ │ ├── da.php │ │ ├── da_DK.php │ │ ├── da_GL.php │ │ ├── dav.php │ │ ├── de.php │ │ ├── de_AT.php │ │ ├── de_BE.php │ │ ├── de_CH.php │ │ ├── de_DE.php │ │ ├── de_IT.php │ │ ├── de_LI.php │ │ ├── de_LU.php │ │ ├── dje.php │ │ ├── doi.php │ │ ├── doi_IN.php │ │ ├── dsb.php │ │ ├── dsb_DE.php │ │ ├── dua.php │ │ ├── dv.php │ │ ├── dv_MV.php │ │ ├── dyo.php │ │ ├── dz.php │ │ ├── dz_BT.php │ │ ├── ebu.php │ │ ├── ee.php │ │ ├── ee_TG.php │ │ ├── el.php │ │ ├── el_CY.php │ │ ├── el_GR.php │ │ ├── en.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── en_AG.php │ │ ├── en_AI.php │ │ ├── en_AS.php │ │ ├── en_AT.php │ │ ├── en_AU.php │ │ ├── en_BB.php │ │ ├── en_BE.php │ │ ├── en_BI.php │ │ ├── en_BM.php │ │ ├── en_BS.php │ │ ├── en_BW.php │ │ ├── en_BZ.php │ │ ├── en_CA.php │ │ ├── en_CC.php │ │ ├── en_CH.php │ │ ├── en_CK.php │ │ ├── en_CM.php │ │ ├── en_CX.php │ │ ├── en_CY.php │ │ ├── en_DE.php │ │ ├── en_DG.php │ │ ├── en_DK.php │ │ ├── en_DM.php │ │ ├── en_ER.php │ │ ├── en_FI.php │ │ ├── en_FJ.php │ │ ├── en_FK.php │ │ ├── en_FM.php │ │ ├── en_GB.php │ │ ├── en_GD.php │ │ ├── en_GG.php │ │ ├── en_GH.php │ │ ├── en_GI.php │ │ ├── en_GM.php │ │ ├── en_GU.php │ │ ├── en_GY.php │ │ ├── en_HK.php │ │ ├── en_IE.php │ │ ├── en_IL.php │ │ ├── en_IM.php │ │ ├── en_IN.php │ │ ├── en_IO.php │ │ ├── en_ISO.php │ │ ├── en_JE.php │ │ ├── en_JM.php │ │ ├── en_KE.php │ │ ├── en_KI.php │ │ ├── en_KN.php │ │ ├── en_KY.php │ │ ├── en_LC.php │ │ ├── en_LR.php │ │ ├── en_LS.php │ │ ├── en_MG.php │ │ ├── en_MH.php │ │ ├── en_MO.php │ │ ├── en_MP.php │ │ ├── en_MS.php │ │ ├── en_MT.php │ │ ├── en_MU.php │ │ ├── en_MW.php │ │ ├── en_MY.php │ │ ├── en_NA.php │ │ ├── en_NF.php │ │ ├── en_NG.php │ │ ├── en_NL.php │ │ ├── en_NR.php │ │ ├── en_NU.php │ │ ├── en_NZ.php │ │ ├── en_PG.php │ │ ├── en_PH.php │ │ ├── en_PK.php │ │ ├── en_PN.php │ │ ├── en_PR.php │ │ ├── en_PW.php │ │ ├── en_RW.php │ │ ├── en_SB.php │ │ ├── en_SC.php │ │ ├── en_SD.php │ │ ├── en_SE.php │ │ ├── en_SG.php │ │ ├── en_SH.php │ │ ├── en_SI.php │ │ ├── en_SL.php │ │ ├── en_SS.php │ │ ├── en_SX.php │ │ ├── en_SZ.php │ │ ├── en_TC.php │ │ ├── en_TK.php │ │ ├── en_TO.php │ │ ├── en_TT.php │ │ ├── en_TV.php │ │ ├── en_TZ.php │ │ ├── en_UG.php │ │ ├── en_UM.php │ │ ├── en_US.php │ │ ├── en_US_Posix.php │ │ ├── en_VC.php │ │ ├── en_VG.php │ │ ├── en_VI.php │ │ ├── en_VU.php │ │ ├── en_WS.php │ │ ├── en_ZA.php │ │ ├── en_ZM.php │ │ ├── en_ZW.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── es_419.php │ │ ├── es_AR.php │ │ ├── es_BO.php │ │ ├── es_BR.php │ │ ├── es_BZ.php │ │ ├── es_CL.php │ │ ├── es_CO.php │ │ ├── es_CR.php │ │ ├── es_CU.php │ │ ├── es_DO.php │ │ ├── es_EA.php │ │ ├── es_EC.php │ │ ├── es_ES.php │ │ ├── es_GQ.php │ │ ├── es_GT.php │ │ ├── es_HN.php │ │ ├── es_IC.php │ │ ├── es_MX.php │ │ ├── es_NI.php │ │ ├── es_PA.php │ │ ├── es_PE.php │ │ ├── es_PH.php │ │ ├── es_PR.php │ │ ├── es_PY.php │ │ ├── es_SV.php │ │ ├── es_US.php │ │ ├── es_UY.php │ │ ├── es_VE.php │ │ ├── et.php │ │ ├── et_EE.php │ │ ├── eu.php │ │ ├── eu_ES.php │ │ ├── ewo.php │ │ ├── fa.php │ │ ├── fa_AF.php │ │ ├── fa_IR.php │ │ ├── ff.php │ │ ├── ff_CM.php │ │ ├── ff_GN.php │ │ ├── ff_MR.php │ │ ├── ff_SN.php │ │ ├── fi.php │ │ ├── fi_FI.php │ │ ├── fil.php │ │ ├── fil_PH.php │ │ ├── fo.php │ │ ├── fo_DK.php │ │ ├── fo_FO.php │ │ ├── fr.php │ │ ├── fr_BE.php │ │ ├── fr_BF.php │ │ ├── fr_BI.php │ │ ├── fr_BJ.php │ │ ├── fr_BL.php │ │ ├── fr_CA.php │ │ ├── fr_CD.php │ │ ├── fr_CF.php │ │ ├── fr_CG.php │ │ ├── fr_CH.php │ │ ├── fr_CI.php │ │ ├── fr_CM.php │ │ ├── fr_DJ.php │ │ ├── fr_DZ.php │ │ ├── fr_FR.php │ │ ├── fr_GA.php │ │ ├── fr_GF.php │ │ ├── fr_GN.php │ │ ├── fr_GP.php │ │ ├── fr_GQ.php │ │ ├── fr_HT.php │ │ ├── fr_KM.php │ │ ├── fr_LU.php │ │ ├── fr_MA.php │ │ ├── fr_MC.php │ │ ├── fr_MF.php │ │ ├── fr_MG.php │ │ ├── fr_ML.php │ │ ├── fr_MQ.php │ │ ├── fr_MR.php │ │ ├── fr_MU.php │ │ ├── fr_NC.php │ │ ├── fr_NE.php │ │ ├── fr_PF.php │ │ ├── fr_PM.php │ │ ├── fr_RE.php │ │ ├── fr_RW.php │ │ ├── fr_SC.php │ │ ├── fr_SN.php │ │ ├── fr_SY.php │ │ ├── fr_TD.php │ │ ├── fr_TG.php │ │ ├── fr_TN.php │ │ ├── fr_VU.php │ │ ├── fr_WF.php │ │ ├── fr_YT.php │ │ ├── fur.php │ │ ├── fur_IT.php │ │ ├── fy.php │ │ ├── fy_DE.php │ │ ├── fy_NL.php │ │ ├── ga.php │ │ ├── ga_IE.php │ │ ├── gd.php │ │ ├── gd_GB.php │ │ ├── gez.php │ │ ├── gez_ER.php │ │ ├── gez_ET.php │ │ ├── gl.php │ │ ├── gl_ES.php │ │ ├── gom.php │ │ ├── gom_Latn.php │ │ ├── gsw.php │ │ ├── gsw_CH.php │ │ ├── gsw_FR.php │ │ ├── gsw_LI.php │ │ ├── gu.php │ │ ├── gu_IN.php │ │ ├── guz.php │ │ ├── gv.php │ │ ├── gv_GB.php │ │ ├── ha.php │ │ ├── ha_GH.php │ │ ├── ha_NE.php │ │ ├── ha_NG.php │ │ ├── hak.php │ │ ├── hak_TW.php │ │ ├── haw.php │ │ ├── he.php │ │ ├── he_IL.php │ │ ├── hi.php │ │ ├── hi_IN.php │ │ ├── hif.php │ │ ├── hif_FJ.php │ │ ├── hne.php │ │ ├── hne_IN.php │ │ ├── hr.php │ │ ├── hr_BA.php │ │ ├── hr_HR.php │ │ ├── hsb.php │ │ ├── hsb_DE.php │ │ ├── ht.php │ │ ├── ht_HT.php │ │ ├── hu.php │ │ ├── hu_HU.php │ │ ├── hy.php │ │ ├── hy_AM.php │ │ ├── i18n.php │ │ ├── ia.php │ │ ├── ia_FR.php │ │ ├── id.php │ │ ├── id_ID.php │ │ ├── ig.php │ │ ├── ig_NG.php │ │ ├── ii.php │ │ ├── ik.php │ │ ├── ik_CA.php │ │ ├── in.php │ │ ├── is.php │ │ ├── is_IS.php │ │ ├── it.php │ │ ├── it_CH.php │ │ ├── it_IT.php │ │ ├── it_SM.php │ │ ├── it_VA.php │ │ ├── iu.php │ │ ├── iu_CA.php │ │ ├── iw.php │ │ ├── ja.php │ │ ├── ja_JP.php │ │ ├── jgo.php │ │ ├── jmc.php │ │ ├── jv.php │ │ ├── ka.php │ │ ├── ka_GE.php │ │ ├── kab.php │ │ ├── kab_DZ.php │ │ ├── kam.php │ │ ├── kde.php │ │ ├── kea.php │ │ ├── khq.php │ │ ├── ki.php │ │ ├── kk.php │ │ ├── kk_KZ.php │ │ ├── kkj.php │ │ ├── kl.php │ │ ├── kl_GL.php │ │ ├── kln.php │ │ ├── km.php │ │ ├── km_KH.php │ │ ├── kn.php │ │ ├── kn_IN.php │ │ ├── ko.php │ │ ├── ko_KP.php │ │ ├── ko_KR.php │ │ ├── kok.php │ │ ├── kok_IN.php │ │ ├── ks.php │ │ ├── ks_IN.php │ │ ├── ks_IN@devanagari.php │ │ ├── ksb.php │ │ ├── ksf.php │ │ ├── ksh.php │ │ ├── ku.php │ │ ├── ku_TR.php │ │ ├── kw.php │ │ ├── kw_GB.php │ │ ├── ky.php │ │ ├── ky_KG.php │ │ ├── lag.php │ │ ├── lb.php │ │ ├── lb_LU.php │ │ ├── lg.php │ │ ├── lg_UG.php │ │ ├── li.php │ │ ├── li_NL.php │ │ ├── lij.php │ │ ├── lij_IT.php │ │ ├── lkt.php │ │ ├── ln.php │ │ ├── ln_AO.php │ │ ├── ln_CD.php │ │ ├── ln_CF.php │ │ ├── ln_CG.php │ │ ├── lo.php │ │ ├── lo_LA.php │ │ ├── lrc.php │ │ ├── lrc_IQ.php │ │ ├── lt.php │ │ ├── lt_LT.php │ │ ├── lu.php │ │ ├── luo.php │ │ ├── luy.php │ │ ├── lv.php │ │ ├── lv_LV.php │ │ ├── lzh.php │ │ ├── lzh_TW.php │ │ ├── mag.php │ │ ├── mag_IN.php │ │ ├── mai.php │ │ ├── mai_IN.php │ │ ├── mas.php │ │ ├── mas_TZ.php │ │ ├── mer.php │ │ ├── mfe.php │ │ ├── mfe_MU.php │ │ ├── mg.php │ │ ├── mg_MG.php │ │ ├── mgh.php │ │ ├── mgo.php │ │ ├── mhr.php │ │ ├── mhr_RU.php │ │ ├── mi.php │ │ ├── mi_NZ.php │ │ ├── miq.php │ │ ├── miq_NI.php │ │ ├── mjw.php │ │ ├── mjw_IN.php │ │ ├── mk.php │ │ ├── mk_MK.php │ │ ├── ml.php │ │ ├── ml_IN.php │ │ ├── mn.php │ │ ├── mn_MN.php │ │ ├── mni.php │ │ ├── mni_IN.php │ │ ├── mo.php │ │ ├── mr.php │ │ ├── mr_IN.php │ │ ├── ms.php │ │ ├── ms_BN.php │ │ ├── ms_MY.php │ │ ├── ms_SG.php │ │ ├── mt.php │ │ ├── mt_MT.php │ │ ├── mua.php │ │ ├── my.php │ │ ├── my_MM.php │ │ ├── mzn.php │ │ ├── nan.php │ │ ├── nan_TW.php │ │ ├── nan_TW@latin.php │ │ ├── naq.php │ │ ├── nb.php │ │ ├── nb_NO.php │ │ ├── nb_SJ.php │ │ ├── nd.php │ │ ├── nds.php │ │ ├── nds_DE.php │ │ ├── nds_NL.php │ │ ├── ne.php │ │ ├── ne_IN.php │ │ ├── ne_NP.php │ │ ├── nhn.php │ │ ├── nhn_MX.php │ │ ├── niu.php │ │ ├── niu_NU.php │ │ ├── nl.php │ │ ├── nl_AW.php │ │ ├── nl_BE.php │ │ ├── nl_BQ.php │ │ ├── nl_CW.php │ │ ├── nl_NL.php │ │ ├── nl_SR.php │ │ ├── nl_SX.php │ │ ├── nmg.php │ │ ├── nn.php │ │ ├── nn_NO.php │ │ ├── nnh.php │ │ ├── no.php │ │ ├── nr.php │ │ ├── nr_ZA.php │ │ ├── nso.php │ │ ├── nso_ZA.php │ │ ├── nus.php │ │ ├── nyn.php │ │ ├── oc.php │ │ ├── oc_FR.php │ │ ├── om.php │ │ ├── om_ET.php │ │ ├── om_KE.php │ │ ├── or.php │ │ ├── or_IN.php │ │ ├── os.php │ │ ├── os_RU.php │ │ ├── pa.php │ │ ├── pa_Arab.php │ │ ├── pa_Guru.php │ │ ├── pa_IN.php │ │ ├── pa_PK.php │ │ ├── pap.php │ │ ├── pap_AW.php │ │ ├── pap_CW.php │ │ ├── pl.php │ │ ├── pl_PL.php │ │ ├── prg.php │ │ ├── ps.php │ │ ├── ps_AF.php │ │ ├── pt.php │ │ ├── pt_AO.php │ │ ├── pt_BR.php │ │ ├── pt_CH.php │ │ ├── pt_CV.php │ │ ├── pt_GQ.php │ │ ├── pt_GW.php │ │ ├── pt_LU.php │ │ ├── pt_MO.php │ │ ├── pt_MZ.php │ │ ├── pt_PT.php │ │ ├── pt_ST.php │ │ ├── pt_TL.php │ │ ├── qu.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── quz.php │ │ ├── quz_PE.php │ │ ├── raj.php │ │ ├── raj_IN.php │ │ ├── rm.php │ │ ├── rn.php │ │ ├── ro.php │ │ ├── ro_MD.php │ │ ├── ro_RO.php │ │ ├── rof.php │ │ ├── ru.php │ │ ├── ru_BY.php │ │ ├── ru_KG.php │ │ ├── ru_KZ.php │ │ ├── ru_MD.php │ │ ├── ru_RU.php │ │ ├── ru_UA.php │ │ ├── rw.php │ │ ├── rw_RW.php │ │ ├── rwk.php │ │ ├── sa.php │ │ ├── sa_IN.php │ │ ├── sah.php │ │ ├── sah_RU.php │ │ ├── saq.php │ │ ├── sat.php │ │ ├── sat_IN.php │ │ ├── sbp.php │ │ ├── sc.php │ │ ├── sc_IT.php │ │ ├── sd.php │ │ ├── sd_IN.php │ │ ├── sd_IN@devanagari.php │ │ ├── se.php │ │ ├── se_FI.php │ │ ├── se_NO.php │ │ ├── se_SE.php │ │ ├── seh.php │ │ ├── ses.php │ │ ├── sg.php │ │ ├── sgs.php │ │ ├── sgs_LT.php │ │ ├── sh.php │ │ ├── shi.php │ │ ├── shi_Latn.php │ │ ├── shi_Tfng.php │ │ ├── shn.php │ │ ├── shn_MM.php │ │ ├── shs.php │ │ ├── shs_CA.php │ │ ├── si.php │ │ ├── si_LK.php │ │ ├── sid.php │ │ ├── sid_ET.php │ │ ├── sk.php │ │ ├── sk_SK.php │ │ ├── sl.php │ │ ├── sl_SI.php │ │ ├── sm.php │ │ ├── sm_WS.php │ │ ├── smn.php │ │ ├── sn.php │ │ ├── so.php │ │ ├── so_DJ.php │ │ ├── so_ET.php │ │ ├── so_KE.php │ │ ├── so_SO.php │ │ ├── sq.php │ │ ├── sq_AL.php │ │ ├── sq_MK.php │ │ ├── sq_XK.php │ │ ├── sr.php │ │ ├── sr_Cyrl.php │ │ ├── sr_Cyrl_BA.php │ │ ├── sr_Cyrl_ME.php │ │ ├── sr_Cyrl_XK.php │ │ ├── sr_Latn.php │ │ ├── sr_Latn_BA.php │ │ ├── sr_Latn_ME.php │ │ ├── sr_Latn_XK.php │ │ ├── sr_ME.php │ │ ├── sr_RS.php │ │ ├── sr_RS@latin.php │ │ ├── ss.php │ │ ├── ss_ZA.php │ │ ├── st.php │ │ ├── st_ZA.php │ │ ├── sv.php │ │ ├── sv_AX.php │ │ ├── sv_FI.php │ │ ├── sv_SE.php │ │ ├── sw.php │ │ ├── sw_CD.php │ │ ├── sw_KE.php │ │ ├── sw_TZ.php │ │ ├── sw_UG.php │ │ ├── szl.php │ │ ├── szl_PL.php │ │ ├── ta.php │ │ ├── ta_IN.php │ │ ├── ta_LK.php │ │ ├── ta_MY.php │ │ ├── ta_SG.php │ │ ├── tcy.php │ │ ├── tcy_IN.php │ │ ├── te.php │ │ ├── te_IN.php │ │ ├── teo.php │ │ ├── teo_KE.php │ │ ├── tet.php │ │ ├── tg.php │ │ ├── tg_TJ.php │ │ ├── th.php │ │ ├── th_TH.php │ │ ├── the.php │ │ ├── the_NP.php │ │ ├── ti.php │ │ ├── ti_ER.php │ │ ├── ti_ET.php │ │ ├── tig.php │ │ ├── tig_ER.php │ │ ├── tk.php │ │ ├── tk_TM.php │ │ ├── tl.php │ │ ├── tl_PH.php │ │ ├── tlh.php │ │ ├── tn.php │ │ ├── tn_ZA.php │ │ ├── to.php │ │ ├── to_TO.php │ │ ├── tpi.php │ │ ├── tpi_PG.php │ │ ├── tr.php │ │ ├── tr_CY.php │ │ ├── tr_TR.php │ │ ├── ts.php │ │ ├── ts_ZA.php │ │ ├── tt.php │ │ ├── tt_RU.php │ │ ├── tt_RU@iqtelif.php │ │ ├── twq.php │ │ ├── tzl.php │ │ ├── tzm.php │ │ ├── tzm_Latn.php │ │ ├── ug.php │ │ ├── ug_CN.php │ │ ├── uk.php │ │ ├── uk_UA.php │ │ ├── unm.php │ │ ├── unm_US.php │ │ ├── ur.php │ │ ├── ur_IN.php │ │ ├── ur_PK.php │ │ ├── uz.php │ │ ├── uz_Arab.php │ │ ├── uz_Cyrl.php │ │ ├── uz_Latn.php │ │ ├── uz_UZ.php │ │ ├── uz_UZ@cyrillic.php │ │ ├── vai.php │ │ ├── vai_Latn.php │ │ ├── vai_Vaii.php │ │ ├── ve.php │ │ ├── ve_ZA.php │ │ ├── vi.php │ │ ├── vi_VN.php │ │ ├── vo.php │ │ ├── vun.php │ │ ├── wa.php │ │ ├── wa_BE.php │ │ ├── wae.php │ │ ├── wae_CH.php │ │ ├── wal.php │ │ ├── wal_ET.php │ │ ├── wo.php │ │ ├── wo_SN.php │ │ ├── xh.php │ │ ├── xh_ZA.php │ │ ├── xog.php │ │ ├── yav.php │ │ ├── yi.php │ │ ├── yi_US.php │ │ ├── yo.php │ │ ├── yo_BJ.php │ │ ├── yo_NG.php │ │ ├── yue.php │ │ ├── yue_HK.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── yuw.php │ │ ├── yuw_PG.php │ │ ├── zgh.php │ │ ├── zh.php │ │ ├── zh_CN.php │ │ ├── zh_HK.php │ │ ├── zh_Hans.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.php │ │ ├── zh_Hant_TW.php │ │ ├── zh_MO.php │ │ ├── zh_SG.php │ │ ├── zh_TW.php │ │ ├── zh_YUE.php │ │ ├── zu.php │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel │ │ └── ServiceProvider.php │ │ ├── List │ │ ├── languages.php │ │ └── regions.php │ │ ├── MessageFormatter │ │ └── MessageFormatterMapper.php │ │ ├── PHPStan │ │ ├── AbstractMacro.php │ │ ├── Macro.php │ │ ├── MacroExtension.php │ │ └── MacroScanner.php │ │ ├── Traits │ │ ├── Boundaries.php │ │ ├── Cast.php │ │ ├── Comparison.php │ │ ├── Converter.php │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── DeprecatedProperties.php │ │ ├── Difference.php │ │ ├── IntervalRounding.php │ │ ├── IntervalStep.php │ │ ├── Localization.php │ │ ├── Macro.php │ │ ├── MagicParameter.php │ │ ├── Mixin.php │ │ ├── Modifiers.php │ │ ├── Mutability.php │ │ ├── ObjectInitialisation.php │ │ ├── Options.php │ │ ├── Rounding.php │ │ ├── Serialization.php │ │ ├── Test.php │ │ ├── Timestamp.php │ │ ├── ToStringFormat.php │ │ ├── Units.php │ │ └── Week.php │ │ ├── Translator.php │ │ ├── TranslatorImmutable.php │ │ └── TranslatorStrongTypeInterface.php │ ├── nikic │ └── php-parser │ │ ├── .php-cs-fixer.dist.php │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── lib │ │ └── PhpParser │ │ │ ├── Builder.php │ │ │ ├── Builder │ │ │ ├── ClassConst.php │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ │ ├── BuilderFactory.php │ │ │ ├── BuilderHelpers.php │ │ │ ├── Comment.php │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ ├── ConstExprEvaluationException.php │ │ │ ├── ConstExprEvaluator.php │ │ │ ├── Error.php │ │ │ ├── ErrorHandler.php │ │ │ ├── ErrorHandler │ │ │ ├── Collecting.php │ │ │ └── Throwing.php │ │ │ ├── Internal │ │ │ ├── DiffElem.php │ │ │ ├── Differ.php │ │ │ ├── PrintableNewAnonClassNode.php │ │ │ ├── TokenPolyfill.php │ │ │ └── TokenStream.php │ │ │ ├── JsonDecoder.php │ │ │ ├── Lexer.php │ │ │ ├── Lexer │ │ │ ├── Emulative.php │ │ │ └── TokenEmulator │ │ │ │ ├── AttributeEmulator.php │ │ │ │ ├── EnumTokenEmulator.php │ │ │ │ ├── ExplicitOctalEmulator.php │ │ │ │ ├── KeywordEmulator.php │ │ │ │ ├── MatchTokenEmulator.php │ │ │ │ ├── NullsafeTokenEmulator.php │ │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ │ ├── ReverseEmulator.php │ │ │ │ └── TokenEmulator.php │ │ │ ├── Modifiers.php │ │ │ ├── NameContext.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ ├── Arg.php │ │ │ ├── ArrayItem.php │ │ │ ├── Attribute.php │ │ │ ├── AttributeGroup.php │ │ │ ├── ClosureUse.php │ │ │ ├── ComplexType.php │ │ │ ├── Const_.php │ │ │ ├── DeclareItem.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Array_.php │ │ │ │ ├── ArrowFunction.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignOp.php │ │ │ │ ├── AssignOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ └── ShiftRight.php │ │ │ │ ├── AssignRef.php │ │ │ │ ├── BinaryOp.php │ │ │ │ ├── BinaryOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ ├── Identical.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ ├── Smaller.php │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── CallLike.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cast │ │ │ │ │ ├── Array_.php │ │ │ │ │ ├── Bool_.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int_.php │ │ │ │ │ ├── Object_.php │ │ │ │ │ ├── String_.php │ │ │ │ │ └── Unset_.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone_.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── ConstFetch.php │ │ │ │ ├── Empty_.php │ │ │ │ ├── Error.php │ │ │ │ ├── ErrorSuppress.php │ │ │ │ ├── Eval_.php │ │ │ │ ├── Exit_.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── Include_.php │ │ │ │ ├── Instanceof_.php │ │ │ │ ├── Isset_.php │ │ │ │ ├── List_.php │ │ │ │ ├── Match_.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── New_.php │ │ │ │ ├── NullsafeMethodCall.php │ │ │ │ ├── NullsafePropertyFetch.php │ │ │ │ ├── PostDec.php │ │ │ │ ├── PostInc.php │ │ │ │ ├── PreDec.php │ │ │ │ ├── PreInc.php │ │ │ │ ├── Print_.php │ │ │ │ ├── PropertyFetch.php │ │ │ │ ├── ShellExec.php │ │ │ │ ├── StaticCall.php │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ ├── Ternary.php │ │ │ │ ├── Throw_.php │ │ │ │ ├── UnaryMinus.php │ │ │ │ ├── UnaryPlus.php │ │ │ │ ├── Variable.php │ │ │ │ ├── YieldFrom.php │ │ │ │ └── Yield_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Identifier.php │ │ │ ├── InterpolatedStringPart.php │ │ │ ├── IntersectionType.php │ │ │ ├── MatchArm.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── NullableType.php │ │ │ ├── Param.php │ │ │ ├── PropertyItem.php │ │ │ ├── Scalar.php │ │ │ ├── Scalar │ │ │ │ ├── DNumber.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ ├── Float_.php │ │ │ │ ├── Int_.php │ │ │ │ ├── InterpolatedString.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── MagicConst.php │ │ │ │ ├── MagicConst │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Dir.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ └── Trait_.php │ │ │ │ └── String_.php │ │ │ ├── StaticVar.php │ │ │ ├── Stmt.php │ │ │ ├── Stmt │ │ │ │ ├── Block.php │ │ │ │ ├── Break_.php │ │ │ │ ├── Case_.php │ │ │ │ ├── Catch_.php │ │ │ │ ├── ClassConst.php │ │ │ │ ├── ClassLike.php │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── Class_.php │ │ │ │ ├── Const_.php │ │ │ │ ├── Continue_.php │ │ │ │ ├── DeclareDeclare.php │ │ │ │ ├── Declare_.php │ │ │ │ ├── Do_.php │ │ │ │ ├── Echo_.php │ │ │ │ ├── ElseIf_.php │ │ │ │ ├── Else_.php │ │ │ │ ├── EnumCase.php │ │ │ │ ├── Enum_.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Finally_.php │ │ │ │ ├── For_.php │ │ │ │ ├── Foreach_.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Global_.php │ │ │ │ ├── Goto_.php │ │ │ │ ├── GroupUse.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If_.php │ │ │ │ ├── InlineHTML.php │ │ │ │ ├── Interface_.php │ │ │ │ ├── Label.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Nop.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyProperty.php │ │ │ │ ├── Return_.php │ │ │ │ ├── StaticVar.php │ │ │ │ ├── Static_.php │ │ │ │ ├── Switch_.php │ │ │ │ ├── TraitUse.php │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ ├── Alias.php │ │ │ │ │ └── Precedence.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── UseUse.php │ │ │ │ ├── Use_.php │ │ │ │ └── While_.php │ │ │ ├── UnionType.php │ │ │ ├── UseItem.php │ │ │ ├── VarLikeIdentifier.php │ │ │ └── VariadicPlaceholder.php │ │ │ ├── NodeAbstract.php │ │ │ ├── NodeDumper.php │ │ │ ├── NodeFinder.php │ │ │ ├── NodeTraverser.php │ │ │ ├── NodeTraverserInterface.php │ │ │ ├── NodeVisitor.php │ │ │ ├── NodeVisitor │ │ │ ├── CloningVisitor.php │ │ │ ├── CommentAnnotatingVisitor.php │ │ │ ├── FindingVisitor.php │ │ │ ├── FirstFindingVisitor.php │ │ │ ├── NameResolver.php │ │ │ ├── NodeConnectingVisitor.php │ │ │ └── ParentConnectingVisitor.php │ │ │ ├── NodeVisitorAbstract.php │ │ │ ├── Parser.php │ │ │ ├── Parser │ │ │ ├── Php7.php │ │ │ └── Php8.php │ │ │ ├── ParserAbstract.php │ │ │ ├── ParserFactory.php │ │ │ ├── PhpVersion.php │ │ │ ├── PrettyPrinter.php │ │ │ ├── PrettyPrinter │ │ │ └── Standard.php │ │ │ ├── PrettyPrinterAbstract.php │ │ │ ├── Token.php │ │ │ └── compatibility_tokens.php │ │ ├── phpstan-baseline.neon │ │ └── phpstan.neon.dist │ ├── phar-io │ ├── manifest │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── ManifestDocumentMapper.php │ │ │ ├── ManifestLoader.php │ │ │ ├── ManifestSerializer.php │ │ │ ├── exceptions │ │ │ ├── ElementCollectionException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidApplicationNameException.php │ │ │ ├── InvalidEmailException.php │ │ │ ├── InvalidUrlException.php │ │ │ ├── ManifestDocumentException.php │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ ├── ManifestDocumentMapperException.php │ │ │ ├── ManifestElementException.php │ │ │ └── ManifestLoaderException.php │ │ │ ├── values │ │ │ ├── Application.php │ │ │ ├── ApplicationName.php │ │ │ ├── Author.php │ │ │ ├── AuthorCollection.php │ │ │ ├── AuthorCollectionIterator.php │ │ │ ├── BundledComponent.php │ │ │ ├── BundledComponentCollection.php │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ ├── CopyrightInformation.php │ │ │ ├── Email.php │ │ │ ├── Extension.php │ │ │ ├── Library.php │ │ │ ├── License.php │ │ │ ├── Manifest.php │ │ │ ├── PhpExtensionRequirement.php │ │ │ ├── PhpVersionRequirement.php │ │ │ ├── Requirement.php │ │ │ ├── RequirementCollection.php │ │ │ ├── RequirementCollectionIterator.php │ │ │ ├── Type.php │ │ │ └── Url.php │ │ │ └── xml │ │ │ ├── AuthorElement.php │ │ │ ├── AuthorElementCollection.php │ │ │ ├── BundlesElement.php │ │ │ ├── ComponentElement.php │ │ │ ├── ComponentElementCollection.php │ │ │ ├── ContainsElement.php │ │ │ ├── CopyrightElement.php │ │ │ ├── ElementCollection.php │ │ │ ├── ExtElement.php │ │ │ ├── ExtElementCollection.php │ │ │ ├── ExtensionElement.php │ │ │ ├── LicenseElement.php │ │ │ ├── ManifestDocument.php │ │ │ ├── ManifestElement.php │ │ │ ├── PhpElement.php │ │ │ └── RequiresElement.php │ └── version │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BuildMetaData.php │ │ ├── PreReleaseSuffix.php │ │ ├── Version.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ ├── VersionNumber.php │ │ ├── constraints │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ └── VersionConstraint.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidPreReleaseSuffixException.php │ │ ├── InvalidVersionException.php │ │ ├── NoBuildMetaDataException.php │ │ ├── NoPreReleaseSuffixException.php │ │ └── UnsupportedVersionConstraintException.php │ ├── phpmailer │ └── phpmailer │ │ ├── .editorconfig │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-as.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-bn.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-mn.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-si.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ └── src │ │ ├── DSNConfigurator.php │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── OAuthTokenProvider.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── ChangeLog-10.1.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Data │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ └── RawCodeCoverageData.php │ │ │ ├── Driver │ │ │ ├── Driver.php │ │ │ ├── PcovDriver.php │ │ │ ├── Selector.php │ │ │ └── XdebugDriver.php │ │ │ ├── Exception │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ ├── Exception.php │ │ │ ├── FileCouldNotBeWrittenException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ ├── ParserException.php │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ ├── PcovNotAvailableException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ ├── TestIdMissingException.php │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ ├── WriteOperationFailedException.php │ │ │ ├── XdebugNotAvailableException.php │ │ │ ├── XdebugNotEnabledException.php │ │ │ └── XmlException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ ├── AbstractNode.php │ │ │ ├── Builder.php │ │ │ ├── CrapIndex.php │ │ │ ├── Directory.php │ │ │ ├── File.php │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html │ │ │ │ ├── Colors.php │ │ │ │ ├── CustomCssFile.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── octicons.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ ├── icons │ │ │ │ │ ├── file-code.svg │ │ │ │ │ └── file-directory.svg │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── popper.min.js │ │ │ │ │ ├── line.html.dist │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ └── paths.html.dist │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── Thresholds.php │ │ │ └── Xml │ │ │ │ ├── BuildInformation.php │ │ │ │ ├── Coverage.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Report.php │ │ │ │ ├── Source.php │ │ │ │ ├── Tests.php │ │ │ │ ├── Totals.php │ │ │ │ └── Unit.php │ │ │ ├── StaticAnalysis │ │ │ ├── CacheWarmer.php │ │ │ ├── CachingFileAnalyser.php │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ ├── FileAnalyser.php │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ └── ParsingFileAnalyser.php │ │ │ ├── TestSize │ │ │ ├── Known.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── Small.php │ │ │ ├── TestSize.php │ │ │ └── Unknown.php │ │ │ ├── TestStatus │ │ │ ├── Failure.php │ │ │ ├── Known.php │ │ │ ├── Success.php │ │ │ ├── TestStatus.php │ │ │ └── Unknown.php │ │ │ ├── Util │ │ │ ├── Filesystem.php │ │ │ └── Percentage.php │ │ │ └── Version.php │ ├── php-file-iterator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ExcludeIterator.php │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-invoker │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Invoker.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ └── TimeoutException.php │ ├── php-text-template │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Template.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── php-timer │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Duration.php │ │ │ ├── ResourceUsageFormatter.php │ │ │ ├── Timer.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── NoActiveTimerException.php │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-10.5.md │ │ ├── DEPRECATIONS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ ├── schema │ │ ├── 10.0.xsd │ │ ├── 8.5.xsd │ │ ├── 9.2.xsd │ │ └── 9.5.xsd │ │ └── src │ │ ├── Event │ │ ├── Dispatcher │ │ │ ├── CollectingDispatcher.php │ │ │ ├── DeferringDispatcher.php │ │ │ ├── DirectDispatcher.php │ │ │ ├── Dispatcher.php │ │ │ └── SubscribableDispatcher.php │ │ ├── Emitter │ │ │ ├── DispatchingEmitter.php │ │ │ └── Emitter.php │ │ ├── Events │ │ │ ├── Application │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ │ ├── Event.php │ │ │ ├── EventCollection.php │ │ │ ├── EventCollectionIterator.php │ │ │ ├── Test │ │ │ │ ├── Assertion │ │ │ │ │ ├── AssertionFailed.php │ │ │ │ │ ├── AssertionFailedSubscriber.php │ │ │ │ │ ├── AssertionSucceeded.php │ │ │ │ │ └── AssertionSucceededSubscriber.php │ │ │ │ ├── ComparatorRegistered.php │ │ │ │ ├── ComparatorRegisteredSubscriber.php │ │ │ │ ├── HookMethod │ │ │ │ │ ├── AfterLastTestMethodCalled.php │ │ │ │ │ ├── AfterLastTestMethodCalledSubscriber.php │ │ │ │ │ ├── AfterLastTestMethodFinished.php │ │ │ │ │ ├── AfterLastTestMethodFinishedSubscriber.php │ │ │ │ │ ├── AfterTestMethodCalled.php │ │ │ │ │ ├── AfterTestMethodCalledSubscriber.php │ │ │ │ │ ├── AfterTestMethodFinished.php │ │ │ │ │ ├── AfterTestMethodFinishedSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodCalled.php │ │ │ │ │ ├── BeforeFirstTestMethodCalledSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodErrored.php │ │ │ │ │ ├── BeforeFirstTestMethodErroredSubscriber.php │ │ │ │ │ ├── BeforeFirstTestMethodFinished.php │ │ │ │ │ ├── BeforeFirstTestMethodFinishedSubscriber.php │ │ │ │ │ ├── BeforeTestMethodCalled.php │ │ │ │ │ ├── BeforeTestMethodCalledSubscriber.php │ │ │ │ │ ├── BeforeTestMethodFinished.php │ │ │ │ │ ├── BeforeTestMethodFinishedSubscriber.php │ │ │ │ │ ├── PostConditionCalled.php │ │ │ │ │ ├── PostConditionCalledSubscriber.php │ │ │ │ │ ├── PostConditionFinished.php │ │ │ │ │ ├── PostConditionFinishedSubscriber.php │ │ │ │ │ ├── PreConditionCalled.php │ │ │ │ │ ├── PreConditionCalledSubscriber.php │ │ │ │ │ ├── PreConditionFinished.php │ │ │ │ │ └── PreConditionFinishedSubscriber.php │ │ │ │ ├── Issue │ │ │ │ │ ├── ConsideredRisky.php │ │ │ │ │ ├── ConsideredRiskySubscriber.php │ │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ │ ├── ErrorTriggered.php │ │ │ │ │ ├── ErrorTriggeredSubscriber.php │ │ │ │ │ ├── NoticeTriggered.php │ │ │ │ │ ├── NoticeTriggeredSubscriber.php │ │ │ │ │ ├── PhpDeprecationTriggered.php │ │ │ │ │ ├── PhpDeprecationTriggeredSubscriber.php │ │ │ │ │ ├── PhpNoticeTriggered.php │ │ │ │ │ ├── PhpNoticeTriggeredSubscriber.php │ │ │ │ │ ├── PhpWarningTriggered.php │ │ │ │ │ ├── PhpWarningTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitDeprecationTriggered.php │ │ │ │ │ ├── PhpunitDeprecationTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitErrorTriggered.php │ │ │ │ │ ├── PhpunitErrorTriggeredSubscriber.php │ │ │ │ │ ├── PhpunitWarningTriggered.php │ │ │ │ │ ├── PhpunitWarningTriggeredSubscriber.php │ │ │ │ │ ├── WarningTriggered.php │ │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ │ ├── Lifecycle │ │ │ │ │ ├── DataProviderMethodCalled.php │ │ │ │ │ ├── DataProviderMethodCalledSubscriber.php │ │ │ │ │ ├── DataProviderMethodFinished.php │ │ │ │ │ ├── DataProviderMethodFinishedSubscriber.php │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── PreparationFailed.php │ │ │ │ │ ├── PreparationFailedSubscriber.php │ │ │ │ │ ├── PreparationStarted.php │ │ │ │ │ ├── PreparationStartedSubscriber.php │ │ │ │ │ ├── Prepared.php │ │ │ │ │ └── PreparedSubscriber.php │ │ │ │ ├── Outcome │ │ │ │ │ ├── Errored.php │ │ │ │ │ ├── ErroredSubscriber.php │ │ │ │ │ ├── Failed.php │ │ │ │ │ ├── FailedSubscriber.php │ │ │ │ │ ├── MarkedIncomplete.php │ │ │ │ │ ├── MarkedIncompleteSubscriber.php │ │ │ │ │ ├── Passed.php │ │ │ │ │ ├── PassedSubscriber.php │ │ │ │ │ ├── Skipped.php │ │ │ │ │ └── SkippedSubscriber.php │ │ │ │ ├── PrintedUnexpectedOutput.php │ │ │ │ ├── PrintedUnexpectedOutputSubscriber.php │ │ │ │ └── TestDouble │ │ │ │ │ ├── MockObjectCreated.php │ │ │ │ │ ├── MockObjectCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForAbstractClassCreated.php │ │ │ │ │ ├── MockObjectForAbstractClassCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreated.php │ │ │ │ │ ├── MockObjectForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ │ │ ├── MockObjectForTraitCreated.php │ │ │ │ │ ├── MockObjectForTraitCreatedSubscriber.php │ │ │ │ │ ├── MockObjectFromWsdlCreated.php │ │ │ │ │ ├── MockObjectFromWsdlCreatedSubscriber.php │ │ │ │ │ ├── PartialMockObjectCreated.php │ │ │ │ │ ├── PartialMockObjectCreatedSubscriber.php │ │ │ │ │ ├── TestProxyCreated.php │ │ │ │ │ ├── TestProxyCreatedSubscriber.php │ │ │ │ │ ├── TestStubCreated.php │ │ │ │ │ ├── TestStubCreatedSubscriber.php │ │ │ │ │ ├── TestStubForIntersectionOfInterfacesCreated.php │ │ │ │ │ └── TestStubForIntersectionOfInterfacesCreatedSubscriber.php │ │ │ ├── TestRunner │ │ │ │ ├── BootstrapFinished.php │ │ │ │ ├── BootstrapFinishedSubscriber.php │ │ │ │ ├── Configured.php │ │ │ │ ├── ConfiguredSubscriber.php │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ ├── EventFacadeSealed.php │ │ │ │ ├── EventFacadeSealedSubscriber.php │ │ │ │ ├── ExecutionAborted.php │ │ │ │ ├── ExecutionAbortedSubscriber.php │ │ │ │ ├── ExecutionFinished.php │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStarted.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── ExtensionBootstrapped.php │ │ │ │ ├── ExtensionBootstrappedSubscriber.php │ │ │ │ ├── ExtensionLoadedFromPhar.php │ │ │ │ ├── ExtensionLoadedFromPharSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── GarbageCollectionDisabled.php │ │ │ │ ├── GarbageCollectionDisabledSubscriber.php │ │ │ │ ├── GarbageCollectionEnabled.php │ │ │ │ ├── GarbageCollectionEnabledSubscriber.php │ │ │ │ ├── GarbageCollectionTriggered.php │ │ │ │ ├── GarbageCollectionTriggeredSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ ├── StartedSubscriber.php │ │ │ │ ├── WarningTriggered.php │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ └── TestSuite │ │ │ │ ├── Filtered.php │ │ │ │ ├── FilteredSubscriber.php │ │ │ │ ├── Finished.php │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ ├── Loaded.php │ │ │ │ ├── LoadedSubscriber.php │ │ │ │ ├── Skipped.php │ │ │ │ ├── SkippedSubscriber.php │ │ │ │ ├── Sorted.php │ │ │ │ ├── SortedSubscriber.php │ │ │ │ ├── Started.php │ │ │ │ └── StartedSubscriber.php │ │ ├── Exception │ │ │ ├── EventAlreadyAssignedException.php │ │ │ ├── EventFacadeIsSealedException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidEventException.php │ │ │ ├── InvalidSubscriberException.php │ │ │ ├── MapError.php │ │ │ ├── MoreThanOneDataSetFromDataProviderException.php │ │ │ ├── NoComparisonFailureException.php │ │ │ ├── NoDataSetFromDataProviderException.php │ │ │ ├── NoPreviousThrowableException.php │ │ │ ├── NoTestCaseObjectOnCallStackException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SubscriberTypeAlreadyRegisteredException.php │ │ │ ├── UnknownEventException.php │ │ │ ├── UnknownEventTypeException.php │ │ │ ├── UnknownSubscriberException.php │ │ │ └── UnknownSubscriberTypeException.php │ │ ├── Facade.php │ │ ├── Subscriber.php │ │ ├── Tracer.php │ │ ├── TypeMap.php │ │ └── Value │ │ │ ├── ClassMethod.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── ComparisonFailureBuilder.php │ │ │ ├── Runtime │ │ │ ├── OperatingSystem.php │ │ │ ├── PHP.php │ │ │ ├── PHPUnit.php │ │ │ └── Runtime.php │ │ │ ├── Telemetry │ │ │ ├── Duration.php │ │ │ ├── GarbageCollectorStatus.php │ │ │ ├── GarbageCollectorStatusProvider.php │ │ │ ├── HRTime.php │ │ │ ├── Info.php │ │ │ ├── MemoryMeter.php │ │ │ ├── MemoryUsage.php │ │ │ ├── Php81GarbageCollectorStatusProvider.php │ │ │ ├── Php83GarbageCollectorStatusProvider.php │ │ │ ├── Snapshot.php │ │ │ ├── StopWatch.php │ │ │ ├── System.php │ │ │ ├── SystemMemoryMeter.php │ │ │ ├── SystemStopWatch.php │ │ │ └── SystemStopWatchWithOffset.php │ │ │ ├── Test │ │ │ ├── Phpt.php │ │ │ ├── Test.php │ │ │ ├── TestCollection.php │ │ │ ├── TestCollectionIterator.php │ │ │ ├── TestData │ │ │ │ ├── DataFromDataProvider.php │ │ │ │ ├── DataFromTestDependency.php │ │ │ │ ├── TestData.php │ │ │ │ ├── TestDataCollection.php │ │ │ │ └── TestDataCollectionIterator.php │ │ │ ├── TestDox.php │ │ │ ├── TestDoxBuilder.php │ │ │ ├── TestMethod.php │ │ │ └── TestMethodBuilder.php │ │ │ ├── TestSuite │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteBuilder.php │ │ │ ├── TestSuiteForTestClass.php │ │ │ ├── TestSuiteForTestMethodWithDataProvider.php │ │ │ └── TestSuiteWithName.php │ │ │ ├── Throwable.php │ │ │ └── ThrowableBuilder.php │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── Attributes │ │ │ ├── After.php │ │ │ ├── AfterClass.php │ │ │ ├── BackupGlobals.php │ │ │ ├── BackupStaticProperties.php │ │ │ ├── Before.php │ │ │ ├── BeforeClass.php │ │ │ ├── CodeCoverageIgnore.php │ │ │ ├── CoversClass.php │ │ │ ├── CoversFunction.php │ │ │ ├── CoversNothing.php │ │ │ ├── DataProvider.php │ │ │ ├── DataProviderExternal.php │ │ │ ├── Depends.php │ │ │ ├── DependsExternal.php │ │ │ ├── DependsExternalUsingDeepClone.php │ │ │ ├── DependsExternalUsingShallowClone.php │ │ │ ├── DependsOnClass.php │ │ │ ├── DependsOnClassUsingDeepClone.php │ │ │ ├── DependsOnClassUsingShallowClone.php │ │ │ ├── DependsUsingDeepClone.php │ │ │ ├── DependsUsingShallowClone.php │ │ │ ├── DoesNotPerformAssertions.php │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ ├── Group.php │ │ │ ├── IgnoreClassForCodeCoverage.php │ │ │ ├── IgnoreDeprecations.php │ │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ │ ├── IgnoreMethodForCodeCoverage.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── PostCondition.php │ │ │ ├── PreCondition.php │ │ │ ├── PreserveGlobalState.php │ │ │ ├── RequiresFunction.php │ │ │ ├── RequiresMethod.php │ │ │ ├── RequiresOperatingSystem.php │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ ├── RequiresPhp.php │ │ │ ├── RequiresPhpExtension.php │ │ │ ├── RequiresPhpunit.php │ │ │ ├── RequiresSetting.php │ │ │ ├── RunClassInSeparateProcess.php │ │ │ ├── RunInSeparateProcess.php │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ ├── Small.php │ │ │ ├── Test.php │ │ │ ├── TestDox.php │ │ │ ├── TestWith.php │ │ │ ├── TestWithJson.php │ │ │ ├── Ticket.php │ │ │ ├── UsesClass.php │ │ │ ├── UsesFunction.php │ │ │ └── WithoutErrorHandler.php │ │ ├── Constraint │ │ │ ├── Boolean │ │ │ │ ├── IsFalse.php │ │ │ │ └── IsTrue.php │ │ │ ├── Callback.php │ │ │ ├── Cardinality │ │ │ │ ├── Count.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── LessThan.php │ │ │ │ └── SameSize.php │ │ │ ├── Constraint.php │ │ │ ├── Equality │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ └── IsEqualWithDelta.php │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessageIsOrContains.php │ │ │ │ └── ExceptionMessageMatchesRegularExpression.php │ │ │ ├── Filesystem │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── IsReadable.php │ │ │ │ └── IsWritable.php │ │ │ ├── IsAnything.php │ │ │ ├── IsIdentical.php │ │ │ ├── JsonMatches.php │ │ │ ├── Math │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsInfinite.php │ │ │ │ └── IsNan.php │ │ │ ├── Object │ │ │ │ ├── ObjectEquals.php │ │ │ │ └── ObjectHasProperty.php │ │ │ ├── Operator │ │ │ │ ├── BinaryOperator.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── Operator.php │ │ │ │ └── UnaryOperator.php │ │ │ ├── String │ │ │ │ ├── IsJson.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringEqualsStringIgnoringLineEndings.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ └── StringStartsWith.php │ │ │ ├── Traversable │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── IsList.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ └── Type │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsNull.php │ │ │ │ └── IsType.php │ │ ├── DataProviderTestSuite.php │ │ ├── Exception │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── EmptyStringException.php │ │ │ ├── Exception.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── GeneratorNotSupportedException.php │ │ │ ├── Incomplete │ │ │ │ ├── IncompleteTest.php │ │ │ │ └── IncompleteTestError.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── InvalidDataProviderException.php │ │ │ ├── InvalidDependencyException.php │ │ │ ├── NoChildTestSuiteException.php │ │ │ ├── ObjectEquals │ │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ │ └── ComparisonMethodDoesNotExistException.php │ │ │ ├── PhptAssertionFailedError.php │ │ │ ├── ProcessIsolationException.php │ │ │ ├── Skipped │ │ │ │ ├── SkippedTest.php │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ └── SkippedWithMessageException.php │ │ │ ├── UnknownClassOrInterfaceException.php │ │ │ └── UnknownTypeException.php │ │ ├── ExecutionOrderDependency.php │ │ ├── MockObject │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ ├── NeverReturningMethodException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Generator │ │ │ │ ├── Exception │ │ │ │ │ ├── ClassAlreadyExistsException.php │ │ │ │ │ ├── ClassIsEnumerationException.php │ │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ │ ├── ClassIsReadonlyException.php │ │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ │ ├── ReflectionException.php │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ │ ├── UnknownClassException.php │ │ │ │ │ ├── UnknownTraitException.php │ │ │ │ │ └── UnknownTypeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── MockClass.php │ │ │ │ ├── MockMethod.php │ │ │ │ ├── MockMethodSet.php │ │ │ │ ├── MockTrait.php │ │ │ │ ├── MockType.php │ │ │ │ ├── TemplateLoader.php │ │ │ │ └── templates │ │ │ │ │ ├── deprecation.tpl │ │ │ │ │ ├── doubled_method.tpl │ │ │ │ │ ├── doubled_static_method.tpl │ │ │ │ │ ├── intersection.tpl │ │ │ │ │ ├── proxied_method.tpl │ │ │ │ │ ├── test_double_class.tpl │ │ │ │ │ ├── trait_class.tpl │ │ │ │ │ ├── wsdl_class.tpl │ │ │ │ │ └── wsdl_method.tpl │ │ │ ├── MockBuilder.php │ │ │ └── Runtime │ │ │ │ ├── Api │ │ │ │ ├── DoubledCloneMethod.php │ │ │ │ ├── Method.php │ │ │ │ ├── MockObjectApi.php │ │ │ │ ├── ProxiedCloneMethod.php │ │ │ │ └── StubApi.php │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Interface │ │ │ │ ├── MockObject.php │ │ │ │ ├── MockObjectInternal.php │ │ │ │ ├── Stub.php │ │ │ │ └── StubInternal.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvocationHandler.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── MethodNameConstraint.php │ │ │ │ ├── ReturnValueGenerator.php │ │ │ │ ├── Rule │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── InvocationOrder.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── ParametersRule.php │ │ │ │ └── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ ├── ReturnValueMap.php │ │ │ │ └── Stub.php │ │ ├── Reorderable.php │ │ ├── SelfDescribing.php │ │ ├── Test.php │ │ ├── TestBuilder.php │ │ ├── TestCase.php │ │ ├── TestRunner.php │ │ ├── TestSize │ │ │ ├── Known.php │ │ │ ├── Large.php │ │ │ ├── Medium.php │ │ │ ├── Small.php │ │ │ ├── TestSize.php │ │ │ └── Unknown.php │ │ ├── TestStatus │ │ │ ├── Deprecation.php │ │ │ ├── Error.php │ │ │ ├── Failure.php │ │ │ ├── Incomplete.php │ │ │ ├── Known.php │ │ │ ├── Notice.php │ │ │ ├── Risky.php │ │ │ ├── Skipped.php │ │ │ ├── Success.php │ │ │ ├── TestStatus.php │ │ │ ├── Unknown.php │ │ │ └── Warning.php │ │ ├── TestSuite.php │ │ └── TestSuiteIterator.php │ │ ├── Logging │ │ ├── EventLogger.php │ │ ├── Exception.php │ │ ├── JUnit │ │ │ ├── JunitXmlLogger.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparationFailedSubscriber.php │ │ │ │ ├── TestPreparationStartedSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ ├── TeamCity │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ └── TeamCityLogger.php │ │ └── TestDox │ │ │ ├── HtmlRenderer.php │ │ │ ├── NamePrettifier.php │ │ │ ├── PlainTextRenderer.php │ │ │ └── TestResult │ │ │ ├── Subscriber │ │ │ ├── Subscriber.php │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ ├── TestErroredSubscriber.php │ │ │ ├── TestFailedSubscriber.php │ │ │ ├── TestFinishedSubscriber.php │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ ├── TestPassedSubscriber.php │ │ │ ├── TestPreparedSubscriber.php │ │ │ └── TestSkippedSubscriber.php │ │ │ ├── TestResult.php │ │ │ ├── TestResultCollection.php │ │ │ ├── TestResultCollectionIterator.php │ │ │ └── TestResultCollector.php │ │ ├── Metadata │ │ ├── After.php │ │ ├── AfterClass.php │ │ ├── Api │ │ │ ├── CodeCoverage.php │ │ │ ├── DataProvider.php │ │ │ ├── Dependencies.php │ │ │ ├── Groups.php │ │ │ ├── HookMethods.php │ │ │ └── Requirements.php │ │ ├── BackupGlobals.php │ │ ├── BackupStaticProperties.php │ │ ├── Before.php │ │ ├── BeforeClass.php │ │ ├── Covers.php │ │ ├── CoversClass.php │ │ ├── CoversDefaultClass.php │ │ ├── CoversFunction.php │ │ ├── CoversNothing.php │ │ ├── DataProvider.php │ │ ├── DependsOnClass.php │ │ ├── DependsOnMethod.php │ │ ├── DoesNotPerformAssertions.php │ │ ├── Exception │ │ │ ├── AnnotationsAreNotSupportedForInternalClassesException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidVersionRequirementException.php │ │ │ ├── NoVersionRequirementException.php │ │ │ └── ReflectionException.php │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ ├── Group.php │ │ ├── IgnoreClassForCodeCoverage.php │ │ ├── IgnoreDeprecations.php │ │ ├── IgnoreFunctionForCodeCoverage.php │ │ ├── IgnoreMethodForCodeCoverage.php │ │ ├── Metadata.php │ │ ├── MetadataCollection.php │ │ ├── MetadataCollectionIterator.php │ │ ├── Parser │ │ │ ├── Annotation │ │ │ │ ├── DocBlock.php │ │ │ │ └── Registry.php │ │ │ ├── AnnotationParser.php │ │ │ ├── AttributeParser.php │ │ │ ├── CachingParser.php │ │ │ ├── Parser.php │ │ │ ├── ParserChain.php │ │ │ └── Registry.php │ │ ├── PostCondition.php │ │ ├── PreCondition.php │ │ ├── PreserveGlobalState.php │ │ ├── RequiresFunction.php │ │ ├── RequiresMethod.php │ │ ├── RequiresOperatingSystem.php │ │ ├── RequiresOperatingSystemFamily.php │ │ ├── RequiresPhp.php │ │ ├── RequiresPhpExtension.php │ │ ├── RequiresPhpunit.php │ │ ├── RequiresSetting.php │ │ ├── RunClassInSeparateProcess.php │ │ ├── RunInSeparateProcess.php │ │ ├── RunTestsInSeparateProcesses.php │ │ ├── Test.php │ │ ├── TestDox.php │ │ ├── TestWith.php │ │ ├── Uses.php │ │ ├── UsesClass.php │ │ ├── UsesDefaultClass.php │ │ ├── UsesFunction.php │ │ ├── Version │ │ │ ├── ComparisonRequirement.php │ │ │ ├── ConstraintRequirement.php │ │ │ └── Requirement.php │ │ └── WithoutErrorHandler.php │ │ ├── Runner │ │ ├── Baseline │ │ │ ├── Baseline.php │ │ │ ├── Exception │ │ │ │ ├── CannotLoadBaselineException.php │ │ │ │ └── FileDoesNotHaveLineException.php │ │ │ ├── Generator.php │ │ │ ├── Issue.php │ │ │ ├── Reader.php │ │ │ ├── RelativePathCalculator.php │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ └── Writer.php │ │ ├── CodeCoverage.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ │ ├── ClassCannotBeFoundException.php │ │ │ ├── ClassDoesNotExtendTestCaseException.php │ │ │ ├── ClassIsAbstractException.php │ │ │ ├── DirectoryCannotBeCreatedException.php │ │ │ ├── ErrorException.php │ │ │ ├── Exception.php │ │ │ ├── FileDoesNotExistException.php │ │ │ ├── InvalidOrderException.php │ │ │ ├── InvalidPhptFileException.php │ │ │ ├── NoIgnoredEventException.php │ │ │ ├── ParameterDoesNotExistException.php │ │ │ ├── PhptExternalFileCannotBeLoadedException.php │ │ │ ├── ReflectionException.php │ │ │ └── UnsupportedPhptSectionException.php │ │ ├── Extension │ │ │ ├── Extension.php │ │ │ ├── ExtensionBootstrapper.php │ │ │ ├── Facade.php │ │ │ ├── ParameterCollection.php │ │ │ └── PharLoader.php │ │ ├── Filter │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ ├── Factory.php │ │ │ ├── GroupFilterIterator.php │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ ├── NameFilterIterator.php │ │ │ └── TestIdFilterIterator.php │ │ ├── GarbageCollection │ │ │ ├── GarbageCollectionHandler.php │ │ │ └── Subscriber │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ └── TestFinishedSubscriber.php │ │ ├── PhptTestCase.php │ │ ├── ResultCache │ │ │ ├── DefaultResultCache.php │ │ │ ├── NullResultCache.php │ │ │ ├── ResultCache.php │ │ │ ├── ResultCacheHandler.php │ │ │ └── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ ├── TestResult │ │ │ ├── Collector.php │ │ │ ├── Facade.php │ │ │ ├── Issue.php │ │ │ ├── PassedTests.php │ │ │ ├── Subscriber │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestRunnerTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestRunnerTriggeredWarningSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ ├── TestSuiteStartedSubscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ └── TestResult.php │ │ ├── TestSuiteLoader.php │ │ ├── TestSuiteSorter.php │ │ └── Version.php │ │ ├── TextUI │ │ ├── Application.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── Commands │ │ │ │ ├── AtLeastVersionCommand.php │ │ │ │ ├── GenerateConfigurationCommand.php │ │ │ │ ├── ListGroupsCommand.php │ │ │ │ ├── ListTestSuitesCommand.php │ │ │ │ ├── ListTestsAsTextCommand.php │ │ │ │ ├── ListTestsAsXmlCommand.php │ │ │ │ ├── MigrateConfigurationCommand.php │ │ │ │ ├── ShowHelpCommand.php │ │ │ │ ├── ShowVersionCommand.php │ │ │ │ ├── VersionCheckCommand.php │ │ │ │ └── WarmCodeCoverageCacheCommand.php │ │ │ └── Result.php │ │ ├── Configuration │ │ │ ├── Builder.php │ │ │ ├── Cli │ │ │ │ ├── Builder.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Exception.php │ │ │ │ └── XmlConfigurationFileFinder.php │ │ │ ├── CodeCoverageFilterRegistry.php │ │ │ ├── Configuration.php │ │ │ ├── Exception │ │ │ │ ├── CannotFindSchemaException.php │ │ │ │ ├── CodeCoverageReportNotConfiguredException.php │ │ │ │ ├── ConfigurationCannotBeBuiltException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FilterNotConfiguredException.php │ │ │ │ ├── IncludePathNotConfiguredException.php │ │ │ │ ├── LoggingNotConfiguredException.php │ │ │ │ ├── NoBaselineException.php │ │ │ │ ├── NoBootstrapException.php │ │ │ │ ├── NoCacheDirectoryException.php │ │ │ │ ├── NoCliArgumentException.php │ │ │ │ ├── NoConfigurationFileException.php │ │ │ │ ├── NoCoverageCacheDirectoryException.php │ │ │ │ ├── NoCustomCssFileException.php │ │ │ │ ├── NoDefaultTestSuiteException.php │ │ │ │ └── NoPharExtensionDirectoryException.php │ │ │ ├── Merger.php │ │ │ ├── PhpHandler.php │ │ │ ├── Registry.php │ │ │ ├── SourceFilter.php │ │ │ ├── SourceMapper.php │ │ │ ├── TestSuiteBuilder.php │ │ │ ├── Value │ │ │ │ ├── Constant.php │ │ │ │ ├── ConstantCollection.php │ │ │ │ ├── ConstantCollectionIterator.php │ │ │ │ ├── Directory.php │ │ │ │ ├── DirectoryCollection.php │ │ │ │ ├── DirectoryCollectionIterator.php │ │ │ │ ├── ExtensionBootstrap.php │ │ │ │ ├── ExtensionBootstrapCollection.php │ │ │ │ ├── ExtensionBootstrapCollectionIterator.php │ │ │ │ ├── File.php │ │ │ │ ├── FileCollection.php │ │ │ │ ├── FileCollectionIterator.php │ │ │ │ ├── FilterDirectory.php │ │ │ │ ├── FilterDirectoryCollection.php │ │ │ │ ├── FilterDirectoryCollectionIterator.php │ │ │ │ ├── Group.php │ │ │ │ ├── GroupCollection.php │ │ │ │ ├── GroupCollectionIterator.php │ │ │ │ ├── IniSetting.php │ │ │ │ ├── IniSettingCollection.php │ │ │ │ ├── IniSettingCollectionIterator.php │ │ │ │ ├── Php.php │ │ │ │ ├── Source.php │ │ │ │ ├── TestDirectory.php │ │ │ │ ├── TestDirectoryCollection.php │ │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ │ ├── TestFile.php │ │ │ │ ├── TestFileCollection.php │ │ │ │ ├── TestFileCollectionIterator.php │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestSuiteCollection.php │ │ │ │ ├── TestSuiteCollectionIterator.php │ │ │ │ ├── Variable.php │ │ │ │ ├── VariableCollection.php │ │ │ │ └── VariableCollectionIterator.php │ │ │ └── Xml │ │ │ │ ├── CodeCoverage │ │ │ │ ├── CodeCoverage.php │ │ │ │ └── Report │ │ │ │ │ ├── Clover.php │ │ │ │ │ ├── Cobertura.php │ │ │ │ │ ├── Crap4j.php │ │ │ │ │ ├── Html.php │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Text.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── DefaultConfiguration.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Groups.php │ │ │ │ ├── LoadedFromFileConfiguration.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Logging │ │ │ │ ├── Junit.php │ │ │ │ ├── Logging.php │ │ │ │ ├── TeamCity.php │ │ │ │ └── TestDox │ │ │ │ │ ├── Html.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Migration │ │ │ │ ├── MigrationBuilder.php │ │ │ │ ├── MigrationBuilderException.php │ │ │ │ ├── MigrationException.php │ │ │ │ ├── Migrations │ │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ │ ├── IntroduceCacheDirectoryAttribute.php │ │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ │ ├── LogToReportMigration.php │ │ │ │ │ ├── Migration.php │ │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ │ ├── MoveCoverageDirectoriesToSource.php │ │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ │ ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │ │ │ │ │ ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │ │ │ │ │ ├── RemoveCacheResultFileAttribute.php │ │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ │ ├── RemoveConversionToExceptionsAttributes.php │ │ │ │ │ ├── RemoveCoverageElementCacheDirectoryAttribute.php │ │ │ │ │ ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │ │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ │ ├── RemoveListeners.php │ │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ │ ├── RemoveLoggingElements.php │ │ │ │ │ ├── RemoveNoInteractionAttribute.php │ │ │ │ │ ├── RemovePrinterAttributes.php │ │ │ │ │ ├── RemoveTestDoxGroupsElement.php │ │ │ │ │ ├── RemoveTestSuiteLoaderAttributes.php │ │ │ │ │ ├── RemoveVerboseAttribute.php │ │ │ │ │ ├── RenameBackupStaticAttributesAttribute.php │ │ │ │ │ ├── RenameBeStrictAboutCoversAnnotationAttribute.php │ │ │ │ │ ├── RenameForceCoversAnnotationAttribute.php │ │ │ │ │ └── UpdateSchemaLocation.php │ │ │ │ ├── Migrator.php │ │ │ │ └── SnapshotNodeList.php │ │ │ │ ├── PHPUnit.php │ │ │ │ ├── SchemaDetector │ │ │ │ ├── FailedSchemaDetectionResult.php │ │ │ │ ├── SchemaDetectionResult.php │ │ │ │ ├── SchemaDetector.php │ │ │ │ └── SuccessfulSchemaDetectionResult.php │ │ │ │ ├── SchemaFinder.php │ │ │ │ ├── TestSuiteMapper.php │ │ │ │ └── Validator │ │ │ │ ├── ValidationResult.php │ │ │ │ └── Validator.php │ │ ├── Exception │ │ │ ├── DirectoryDoesNotExistException.php │ │ │ ├── Exception.php │ │ │ ├── ExtensionsNotConfiguredException.php │ │ │ ├── InvalidSocketException.php │ │ │ ├── ReflectionException.php │ │ │ ├── RuntimeException.php │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ └── TestFileNotFoundException.php │ │ ├── Help.php │ │ ├── Output │ │ │ ├── Default │ │ │ │ ├── ProgressPrinter │ │ │ │ │ ├── ProgressPrinter.php │ │ │ │ │ └── Subscriber │ │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ │ ├── TestRunnerExecutionStartedSubscriber.php │ │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ ├── ResultPrinter.php │ │ │ │ └── UnexpectedOutputPrinter.php │ │ │ ├── Facade.php │ │ │ ├── Printer │ │ │ │ ├── DefaultPrinter.php │ │ │ │ ├── NullPrinter.php │ │ │ │ └── Printer.php │ │ │ ├── SummaryPrinter.php │ │ │ └── TestDox │ │ │ │ └── ResultPrinter.php │ │ ├── ShellExitCodeCalculator.php │ │ ├── TestRunner.php │ │ └── TestSuiteFilterProcessor.php │ │ └── Util │ │ ├── Cloner.php │ │ ├── Color.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── InvalidDirectoryException.php │ │ ├── InvalidJsonException.php │ │ ├── InvalidVersionOperatorException.php │ │ ├── PhpProcessException.php │ │ └── XmlException.php │ │ ├── ExcludeList.php │ │ ├── Exporter.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── GlobalState.php │ │ ├── Json.php │ │ ├── PHP │ │ ├── AbstractPhpProcess.php │ │ ├── DefaultPhpProcess.php │ │ ├── Template │ │ │ ├── PhptTestCase.tpl │ │ │ ├── TestCaseClass.tpl │ │ │ └── TestCaseMethod.tpl │ │ └── WindowsPhpProcess.php │ │ ├── Reflection.php │ │ ├── Test.php │ │ ├── ThrowableToStringMapper.php │ │ ├── VersionComparisonOperator.php │ │ └── Xml │ │ ├── Loader.php │ │ └── Xml.php │ ├── psr │ └── clock │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── ClockInterface.php │ ├── scssphp │ └── scssphp │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ └── pscss │ │ ├── composer.json │ │ ├── scss.inc.php │ │ └── src │ │ ├── Base │ │ └── Range.php │ │ ├── Block.php │ │ ├── Block │ │ ├── AtRootBlock.php │ │ ├── CallableBlock.php │ │ ├── ContentBlock.php │ │ ├── DirectiveBlock.php │ │ ├── EachBlock.php │ │ ├── ElseBlock.php │ │ ├── ElseifBlock.php │ │ ├── ForBlock.php │ │ ├── IfBlock.php │ │ ├── MediaBlock.php │ │ ├── NestedPropertyBlock.php │ │ └── WhileBlock.php │ │ ├── Cache.php │ │ ├── Colors.php │ │ ├── CompilationResult.php │ │ ├── Compiler.php │ │ ├── Compiler │ │ ├── CachedResult.php │ │ └── Environment.php │ │ ├── Exception │ │ ├── CompilerException.php │ │ ├── ParserException.php │ │ ├── RangeException.php │ │ ├── SassException.php │ │ ├── SassScriptException.php │ │ └── ServerException.php │ │ ├── Formatter.php │ │ ├── Formatter │ │ ├── Compact.php │ │ ├── Compressed.php │ │ ├── Crunched.php │ │ ├── Debug.php │ │ ├── Expanded.php │ │ ├── Nested.php │ │ └── OutputBlock.php │ │ ├── Logger │ │ ├── LoggerInterface.php │ │ ├── QuietLogger.php │ │ └── StreamLogger.php │ │ ├── Node.php │ │ ├── Node │ │ └── Number.php │ │ ├── OutputStyle.php │ │ ├── Parser.php │ │ ├── SourceMap │ │ ├── Base64.php │ │ ├── Base64VLQ.php │ │ └── SourceMapGenerator.php │ │ ├── Type.php │ │ ├── Util.php │ │ ├── Util │ │ └── Path.php │ │ ├── ValueConverter.php │ │ ├── Version.php │ │ └── Warn.php │ ├── sebastian │ ├── cli-parser │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Parser.php │ │ │ └── exceptions │ │ │ ├── AmbiguousOptionException.php │ │ │ ├── Exception.php │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ └── UnknownOptionException.php │ ├── code-unit-reverse-lookup │ │ ├── .psalm │ │ │ ├── baseline.xml │ │ │ └── config.xml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Wizard.php │ ├── code-unit │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClassMethodUnit.php │ │ │ ├── ClassUnit.php │ │ │ ├── CodeUnit.php │ │ │ ├── CodeUnitCollection.php │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ ├── FileUnit.php │ │ │ ├── FunctionUnit.php │ │ │ ├── InterfaceMethodUnit.php │ │ │ ├── InterfaceUnit.php │ │ │ ├── Mapper.php │ │ │ ├── TraitMethodUnit.php │ │ │ ├── TraitUnit.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidCodeUnitException.php │ │ │ ├── NoTraitException.php │ │ │ └── ReflectionException.php │ ├── comparator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ ├── TypeComparator.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── complexity │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Calculator.php │ │ │ ├── Complexity │ │ │ ├── Complexity.php │ │ │ ├── ComplexityCollection.php │ │ │ └── ComplexityCollectionIterator.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── Visitor │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ ├── diff │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception │ │ │ ├── ConfigurationException.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ ├── environment │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CodeExporter.php │ │ │ ├── ExcludeList.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ ├── lines-of-code │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Counter.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── IllogicalValuesException.php │ │ │ ├── NegativeValueException.php │ │ │ └── RuntimeException.php │ │ │ ├── LineCountingVisitor.php │ │ │ └── LinesOfCode.php │ ├── object-enumerator │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ └── src │ │ │ └── Enumerator.php │ ├── object-reflector │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── ObjectReflector.php │ ├── recursion-context │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ │ └── Context.php │ ├── type │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── infection.json │ │ └── src │ │ │ ├── Parameter.php │ │ │ ├── ReflectionMapper.php │ │ │ ├── TypeName.php │ │ │ ├── exception │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ └── type │ │ │ ├── CallableType.php │ │ │ ├── FalseType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IntersectionType.php │ │ │ ├── IterableType.php │ │ │ ├── MixedType.php │ │ │ ├── NeverType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── StaticType.php │ │ │ ├── TrueType.php │ │ │ ├── Type.php │ │ │ ├── UnionType.php │ │ │ ├── UnknownType.php │ │ │ └── VoidType.php │ └── version │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── symfony │ ├── deprecation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── process │ │ ├── CHANGELOG.md │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessSignaledException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ ├── RunProcessFailedException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── Messenger │ │ │ ├── RunProcessContext.php │ │ │ ├── RunProcessMessage.php │ │ │ └── RunProcessMessageHandler.php │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── PhpSubprocess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ └── composer.json │ ├── translation-contracts │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ ├── TranslatableInterface.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json │ └── translation │ │ ├── CHANGELOG.md │ │ ├── Catalogue │ │ ├── AbstractOperation.php │ │ ├── MergeOperation.php │ │ ├── OperationInterface.php │ │ └── TargetOperation.php │ │ ├── CatalogueMetadataAwareInterface.php │ │ ├── Command │ │ ├── TranslationPullCommand.php │ │ ├── TranslationPushCommand.php │ │ ├── TranslationTrait.php │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ ├── DataCollectorTranslatorPass.php │ │ ├── LoggingTranslatorPass.php │ │ ├── TranslationDumperPass.php │ │ ├── TranslationExtractorPass.php │ │ ├── TranslatorPass.php │ │ └── TranslatorPathsPass.php │ │ ├── Dumper │ │ ├── CsvFileDumper.php │ │ ├── DumperInterface.php │ │ ├── FileDumper.php │ │ ├── IcuResFileDumper.php │ │ ├── IniFileDumper.php │ │ ├── JsonFileDumper.php │ │ ├── MoFileDumper.php │ │ ├── PhpFileDumper.php │ │ ├── PoFileDumper.php │ │ ├── QtFileDumper.php │ │ ├── XliffFileDumper.php │ │ └── YamlFileDumper.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── IncompleteDsnException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidResourceException.php │ │ ├── LogicException.php │ │ ├── MissingRequiredOptionException.php │ │ ├── NotFoundResourceException.php │ │ ├── ProviderException.php │ │ ├── ProviderExceptionInterface.php │ │ ├── RuntimeException.php │ │ └── UnsupportedSchemeException.php │ │ ├── Extractor │ │ ├── AbstractFileExtractor.php │ │ ├── ChainExtractor.php │ │ ├── ExtractorInterface.php │ │ ├── PhpAstExtractor.php │ │ ├── PhpExtractor.php │ │ ├── PhpStringTokenParser.php │ │ └── Visitor │ │ │ ├── AbstractVisitor.php │ │ │ ├── ConstraintVisitor.php │ │ │ ├── TransMethodVisitor.php │ │ │ └── TranslatableMessageVisitor.php │ │ ├── Formatter │ │ ├── IntlFormatter.php │ │ ├── IntlFormatterInterface.php │ │ ├── MessageFormatter.php │ │ └── MessageFormatterInterface.php │ │ ├── IdentityTranslator.php │ │ ├── LICENSE │ │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── CsvFileLoader.php │ │ ├── FileLoader.php │ │ ├── IcuDatFileLoader.php │ │ ├── IcuResFileLoader.php │ │ ├── IniFileLoader.php │ │ ├── JsonFileLoader.php │ │ ├── LoaderInterface.php │ │ ├── MoFileLoader.php │ │ ├── PhpFileLoader.php │ │ ├── PoFileLoader.php │ │ ├── QtFileLoader.php │ │ ├── XliffFileLoader.php │ │ └── YamlFileLoader.php │ │ ├── LocaleSwitcher.php │ │ ├── LoggingTranslator.php │ │ ├── MessageCatalogue.php │ │ ├── MessageCatalogueInterface.php │ │ ├── MetadataAwareInterface.php │ │ ├── Provider │ │ ├── AbstractProviderFactory.php │ │ ├── Dsn.php │ │ ├── FilteringProvider.php │ │ ├── NullProvider.php │ │ ├── NullProviderFactory.php │ │ ├── ProviderFactoryInterface.php │ │ ├── ProviderInterface.php │ │ ├── TranslationProviderCollection.php │ │ └── TranslationProviderCollectionFactory.php │ │ ├── PseudoLocalizationTranslator.php │ │ ├── README.md │ │ ├── Reader │ │ ├── TranslationReader.php │ │ └── TranslationReaderInterface.php │ │ ├── Resources │ │ ├── bin │ │ │ └── translation-status.php │ │ ├── data │ │ │ └── parents.json │ │ ├── functions.php │ │ └── schemas │ │ │ ├── xliff-core-1.2-transitional.xsd │ │ │ ├── xliff-core-2.0.xsd │ │ │ └── xml.xsd │ │ ├── Test │ │ ├── ProviderFactoryTestCase.php │ │ └── ProviderTestCase.php │ │ ├── TranslatableMessage.php │ │ ├── Translator.php │ │ ├── TranslatorBag.php │ │ ├── TranslatorBagInterface.php │ │ ├── Util │ │ ├── ArrayConverter.php │ │ └── XliffUtils.php │ │ ├── Writer │ │ ├── TranslationWriter.php │ │ └── TranslationWriterInterface.php │ │ └── composer.json │ ├── theseer │ └── tokenizer │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php │ ├── twbs │ └── bootstrap │ │ ├── .babelrc.js │ │ ├── .browserslistrc │ │ ├── .bundlewatch.config.json │ │ ├── .cspell.json │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.yml │ │ │ ├── config.yml │ │ │ └── feature_request.yml │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── SUPPORT.md │ │ ├── codeql │ │ │ └── codeql-config.yml │ │ ├── dependabot.yml │ │ ├── release-drafter.yml │ │ └── workflows │ │ │ ├── browserstack.yml │ │ │ ├── bundlewatch.yml │ │ │ ├── calibreapp-image-actions.yml │ │ │ ├── codeql.yml │ │ │ ├── cspell.yml │ │ │ ├── css.yml │ │ │ ├── docs.yml │ │ │ ├── issue-close-require.yml │ │ │ ├── issue-labeled.yml │ │ │ ├── js.yml │ │ │ ├── lint.yml │ │ │ ├── node-sass.yml │ │ │ └── release-notes.yml │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── .stylelintignore │ │ ├── .stylelintrc.json │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── build │ │ ├── banner.mjs │ │ ├── build-plugins.mjs │ │ ├── change-version.mjs │ │ ├── generate-sri.mjs │ │ ├── postcss.config.mjs │ │ ├── rollup.config.mjs │ │ ├── vnu-jar.mjs │ │ └── zip-examples.mjs │ │ ├── composer.json │ │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── hugo.yml │ │ ├── js │ │ ├── dist │ │ │ ├── alert.js │ │ │ ├── alert.js.map │ │ │ ├── base-component.js │ │ │ ├── base-component.js.map │ │ │ ├── button.js │ │ │ ├── button.js.map │ │ │ ├── carousel.js │ │ │ ├── carousel.js.map │ │ │ ├── collapse.js │ │ │ ├── collapse.js.map │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── data.js.map │ │ │ │ ├── event-handler.js │ │ │ │ ├── event-handler.js.map │ │ │ │ ├── manipulator.js │ │ │ │ ├── manipulator.js.map │ │ │ │ ├── selector-engine.js │ │ │ │ └── selector-engine.js.map │ │ │ ├── dropdown.js │ │ │ ├── dropdown.js.map │ │ │ ├── modal.js │ │ │ ├── modal.js.map │ │ │ ├── offcanvas.js │ │ │ ├── offcanvas.js.map │ │ │ ├── popover.js │ │ │ ├── popover.js.map │ │ │ ├── scrollspy.js │ │ │ ├── scrollspy.js.map │ │ │ ├── tab.js │ │ │ ├── tab.js.map │ │ │ ├── toast.js │ │ │ ├── toast.js.map │ │ │ ├── tooltip.js │ │ │ ├── tooltip.js.map │ │ │ └── util │ │ │ │ ├── backdrop.js │ │ │ │ ├── backdrop.js.map │ │ │ │ ├── component-functions.js │ │ │ │ ├── component-functions.js.map │ │ │ │ ├── config.js │ │ │ │ ├── config.js.map │ │ │ │ ├── focustrap.js │ │ │ │ ├── focustrap.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── sanitizer.js │ │ │ │ ├── sanitizer.js.map │ │ │ │ ├── scrollbar.js │ │ │ │ ├── scrollbar.js.map │ │ │ │ ├── swipe.js │ │ │ │ ├── swipe.js.map │ │ │ │ ├── template-factory.js │ │ │ │ └── template-factory.js.map │ │ ├── index.esm.js │ │ ├── index.umd.js │ │ ├── src │ │ │ ├── alert.js │ │ │ ├── base-component.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── event-handler.js │ │ │ │ ├── manipulator.js │ │ │ │ └── selector-engine.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── offcanvas.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── toast.js │ │ │ ├── tooltip.js │ │ │ └── util │ │ │ │ ├── backdrop.js │ │ │ │ ├── component-functions.js │ │ │ │ ├── config.js │ │ │ │ ├── focustrap.js │ │ │ │ ├── index.js │ │ │ │ ├── sanitizer.js │ │ │ │ ├── scrollbar.js │ │ │ │ ├── swipe.js │ │ │ │ └── template-factory.js │ │ └── tests │ │ │ ├── README.md │ │ │ ├── browsers.js │ │ │ ├── helpers │ │ │ └── fixture.js │ │ │ ├── integration │ │ │ ├── bundle-modularity.js │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ ├── rollup.bundle-modularity.js │ │ │ └── rollup.bundle.js │ │ │ ├── karma.conf.js │ │ │ ├── unit │ │ │ ├── alert.spec.js │ │ │ ├── base-component.spec.js │ │ │ ├── button.spec.js │ │ │ ├── carousel.spec.js │ │ │ ├── collapse.spec.js │ │ │ ├── dom │ │ │ │ ├── data.spec.js │ │ │ │ ├── event-handler.spec.js │ │ │ │ ├── manipulator.spec.js │ │ │ │ └── selector-engine.spec.js │ │ │ ├── dropdown.spec.js │ │ │ ├── jquery.spec.js │ │ │ ├── modal.spec.js │ │ │ ├── offcanvas.spec.js │ │ │ ├── popover.spec.js │ │ │ ├── scrollspy.spec.js │ │ │ ├── tab.spec.js │ │ │ ├── toast.spec.js │ │ │ ├── tooltip.spec.js │ │ │ └── util │ │ │ │ ├── backdrop.spec.js │ │ │ │ ├── component-functions.spec.js │ │ │ │ ├── config.spec.js │ │ │ │ ├── focustrap.spec.js │ │ │ │ ├── index.spec.js │ │ │ │ ├── sanitizer.spec.js │ │ │ │ ├── scrollbar.spec.js │ │ │ │ ├── swipe.spec.js │ │ │ │ └── template-factory.spec.js │ │ │ └── visual │ │ │ ├── alert.html │ │ │ ├── button.html │ │ │ ├── carousel.html │ │ │ ├── collapse.html │ │ │ ├── dropdown.html │ │ │ ├── input.html │ │ │ ├── modal.html │ │ │ ├── popover.html │ │ │ ├── scrollspy.html │ │ │ ├── tab.html │ │ │ ├── toast.html │ │ │ └── tooltip.html │ │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.nuspec │ │ ├── bootstrap.png │ │ └── bootstrap.sass.nuspec │ │ ├── package-lock.json │ │ ├── package.js │ │ ├── package.json │ │ ├── scss │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _containers.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _helpers.scss │ │ ├── _images.scss │ │ ├── _list-group.scss │ │ ├── _maps.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _placeholders.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables-dark.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap-utilities.scss │ │ ├── bootstrap.scss │ │ ├── forms │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _form-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _labels.scss │ │ │ └── _validation.scss │ │ ├── helpers │ │ │ ├── _clearfix.scss │ │ │ ├── _color-bg.scss │ │ │ ├── _colored-links.scss │ │ │ ├── _focus-ring.scss │ │ │ ├── _icon-link.scss │ │ │ ├── _position.scss │ │ │ ├── _ratio.scss │ │ │ ├── _stacks.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text-truncation.scss │ │ │ ├── _visually-hidden.scss │ │ │ └── _vr.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _backdrop.scss │ │ │ ├── _banner.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _color-mode.scss │ │ │ ├── _color-scheme.scss │ │ │ ├── _container.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _table-variants.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ ├── _utilities.scss │ │ │ └── _visually-hidden.scss │ │ ├── tests │ │ │ ├── jasmine.js │ │ │ ├── mixins │ │ │ │ ├── _color-modes.test.scss │ │ │ │ ├── _media-query-color-mode-full.test.scss │ │ │ │ └── _utilities.test.scss │ │ │ ├── sass-true │ │ │ │ ├── register.js │ │ │ │ └── runner.js │ │ │ └── utilities │ │ │ │ └── _api.test.scss │ │ ├── utilities │ │ │ └── _api.scss │ │ └── vendor │ │ │ └── _rfs.scss │ │ └── site │ │ ├── assets │ │ ├── js │ │ │ ├── application.js │ │ │ ├── code-examples.js │ │ │ ├── search.js │ │ │ ├── snippets.js │ │ │ └── vendor │ │ │ │ └── clipboard.min.js │ │ └── scss │ │ │ ├── _ads.scss │ │ │ ├── _anchor.scss │ │ │ ├── _brand.scss │ │ │ ├── _buttons.scss │ │ │ ├── _callouts.scss │ │ │ ├── _clipboard-js.scss │ │ │ ├── _colors.scss │ │ │ ├── _component-examples.scss │ │ │ ├── _content.scss │ │ │ ├── _footer.scss │ │ │ ├── _layout.scss │ │ │ ├── _masthead.scss │ │ │ ├── _navbar.scss │ │ │ ├── _placeholder-img.scss │ │ │ ├── _scrolling.scss │ │ │ ├── _search.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _skippy.scss │ │ │ ├── _syntax.scss │ │ │ ├── _toc.scss │ │ │ ├── _variables.scss │ │ │ └── docs.scss │ │ ├── content │ │ ├── 404.md │ │ └── docs │ │ │ ├── 5.3 │ │ │ ├── _index.html │ │ │ ├── about │ │ │ │ ├── brand.md │ │ │ │ ├── license.md │ │ │ │ ├── overview.md │ │ │ │ ├── team.md │ │ │ │ └── translations.md │ │ │ ├── components │ │ │ │ ├── accordion.md │ │ │ │ ├── alerts.md │ │ │ │ ├── badge.md │ │ │ │ ├── breadcrumb.md │ │ │ │ ├── button-group.md │ │ │ │ ├── buttons.md │ │ │ │ ├── card.md │ │ │ │ ├── carousel.md │ │ │ │ ├── close-button.md │ │ │ │ ├── collapse.md │ │ │ │ ├── dropdowns.md │ │ │ │ ├── list-group.md │ │ │ │ ├── modal.md │ │ │ │ ├── navbar.md │ │ │ │ ├── navs-tabs.md │ │ │ │ ├── offcanvas.md │ │ │ │ ├── pagination.md │ │ │ │ ├── placeholders.md │ │ │ │ ├── popovers.md │ │ │ │ ├── progress.md │ │ │ │ ├── scrollspy.md │ │ │ │ ├── spinners.md │ │ │ │ ├── toasts.md │ │ │ │ └── tooltips.md │ │ │ ├── content │ │ │ │ ├── figures.md │ │ │ │ ├── images.md │ │ │ │ ├── reboot.md │ │ │ │ ├── tables.md │ │ │ │ └── typography.md │ │ │ ├── customize │ │ │ │ ├── color-modes.md │ │ │ │ ├── color.md │ │ │ │ ├── components.md │ │ │ │ ├── css-variables.md │ │ │ │ ├── optimize.md │ │ │ │ ├── options.md │ │ │ │ ├── overview.md │ │ │ │ └── sass.md │ │ │ ├── docsref.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── album-rtl │ │ │ │ │ └── index.html │ │ │ │ ├── album │ │ │ │ │ └── index.html │ │ │ │ ├── badges │ │ │ │ │ ├── badges.css │ │ │ │ │ └── index.html │ │ │ │ ├── blog-rtl │ │ │ │ │ └── index.html │ │ │ │ ├── blog │ │ │ │ │ ├── blog.css │ │ │ │ │ ├── blog.rtl.css │ │ │ │ │ └── index.html │ │ │ │ ├── breadcrumbs │ │ │ │ │ ├── breadcrumbs.css │ │ │ │ │ └── index.html │ │ │ │ ├── buttons │ │ │ │ │ └── index.html │ │ │ │ ├── carousel-rtl │ │ │ │ │ └── index.html │ │ │ │ ├── carousel │ │ │ │ │ ├── carousel.css │ │ │ │ │ ├── carousel.rtl.css │ │ │ │ │ └── index.html │ │ │ │ ├── cheatsheet-rtl │ │ │ │ │ └── index.html │ │ │ │ ├── cheatsheet │ │ │ │ │ ├── cheatsheet.css │ │ │ │ │ ├── cheatsheet.js │ │ │ │ │ ├── cheatsheet.rtl.css │ │ │ │ │ └── index.html │ │ │ │ ├── checkout-rtl │ │ │ │ │ └── index.html │ │ │ │ ├── checkout │ │ │ │ │ ├── checkout.css │ │ │ │ │ ├── checkout.js │ │ │ │ │ └── index.html │ │ │ │ ├── cover │ │ │ │ │ ├── cover.css │ │ │ │ │ └── index.html │ │ │ │ ├── dashboard-rtl │ │ │ │ │ ├── dashboard.js │ │ │ │ │ └── index.html │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.css │ │ │ │ │ ├── dashboard.js │ │ │ │ │ ├── dashboard.rtl.css │ │ │ │ │ └── index.html │ │ │ │ ├── dropdowns │ │ │ │ │ ├── dropdowns.css │ │ │ │ │ └── index.html │ │ │ │ ├── features │ │ │ │ │ ├── features.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── unsplash-photo-1.jpg │ │ │ │ │ ├── unsplash-photo-2.jpg │ │ │ │ │ └── unsplash-photo-3.jpg │ │ │ │ ├── footers │ │ │ │ │ └── index.html │ │ │ │ ├── grid │ │ │ │ │ ├── grid.css │ │ │ │ │ └── index.html │ │ │ │ ├── headers │ │ │ │ │ ├── headers.css │ │ │ │ │ └── index.html │ │ │ │ ├── heroes │ │ │ │ │ ├── bootstrap-docs.png │ │ │ │ │ ├── bootstrap-themes.png │ │ │ │ │ ├── heroes.css │ │ │ │ │ └── index.html │ │ │ │ ├── jumbotron │ │ │ │ │ └── index.html │ │ │ │ ├── jumbotrons │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotrons.css │ │ │ │ ├── list-groups │ │ │ │ │ ├── index.html │ │ │ │ │ └── list-groups.css │ │ │ │ ├── masonry │ │ │ │ │ └── index.html │ │ │ │ ├── modals │ │ │ │ │ ├── index.html │ │ │ │ │ └── modals.css │ │ │ │ ├── navbar-bottom │ │ │ │ │ └── index.html │ │ │ │ ├── navbar-fixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-fixed.css │ │ │ │ ├── navbar-static │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-static.css │ │ │ │ ├── navbars-offcanvas │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbars-offcanvas.css │ │ │ │ ├── navbars │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbars.css │ │ │ │ ├── offcanvas-navbar │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offcanvas-navbar.css │ │ │ │ │ └── offcanvas-navbar.js │ │ │ │ ├── pricing │ │ │ │ │ ├── index.html │ │ │ │ │ └── pricing.css │ │ │ │ ├── product │ │ │ │ │ ├── index.html │ │ │ │ │ └── product.css │ │ │ │ ├── sidebars │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sidebars.css │ │ │ │ │ └── sidebars.js │ │ │ │ ├── sign-in │ │ │ │ │ ├── index.html │ │ │ │ │ └── sign-in.css │ │ │ │ ├── starter-template │ │ │ │ │ └── index.html │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ └── sticky-footer │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer.css │ │ │ ├── extend │ │ │ │ ├── approach.md │ │ │ │ └── icons.md │ │ │ ├── forms │ │ │ │ ├── checks-radios.md │ │ │ │ ├── floating-labels.md │ │ │ │ ├── form-control.md │ │ │ │ ├── input-group.md │ │ │ │ ├── layout.md │ │ │ │ ├── overview.md │ │ │ │ ├── range.md │ │ │ │ ├── select.md │ │ │ │ └── validation.md │ │ │ ├── getting-started │ │ │ │ ├── accessibility.md │ │ │ │ ├── best-practices.md │ │ │ │ ├── browsers-devices.md │ │ │ │ ├── contents.md │ │ │ │ ├── contribute.md │ │ │ │ ├── download.md │ │ │ │ ├── introduction.md │ │ │ │ ├── javascript.md │ │ │ │ ├── parcel.md │ │ │ │ ├── rfs.md │ │ │ │ ├── rtl.md │ │ │ │ ├── vite.md │ │ │ │ └── webpack.md │ │ │ ├── helpers │ │ │ │ ├── clearfix.md │ │ │ │ ├── color-background.md │ │ │ │ ├── colored-links.md │ │ │ │ ├── focus-ring.md │ │ │ │ ├── icon-link.md │ │ │ │ ├── position.md │ │ │ │ ├── ratio.md │ │ │ │ ├── stacks.md │ │ │ │ ├── stretched-link.md │ │ │ │ ├── text-truncation.md │ │ │ │ ├── vertical-rule.md │ │ │ │ └── visually-hidden.md │ │ │ ├── layout │ │ │ │ ├── breakpoints.md │ │ │ │ ├── columns.md │ │ │ │ ├── containers.md │ │ │ │ ├── css-grid.md │ │ │ │ ├── grid.md │ │ │ │ ├── gutters.md │ │ │ │ ├── utilities.md │ │ │ │ └── z-index.md │ │ │ ├── migration.md │ │ │ └── utilities │ │ │ │ ├── api.md │ │ │ │ ├── background.md │ │ │ │ ├── borders.md │ │ │ │ ├── colors.md │ │ │ │ ├── display.md │ │ │ │ ├── flex.md │ │ │ │ ├── float.md │ │ │ │ ├── interactions.md │ │ │ │ ├── link.md │ │ │ │ ├── object-fit.md │ │ │ │ ├── opacity.md │ │ │ │ ├── overflow.md │ │ │ │ ├── position.md │ │ │ │ ├── shadows.md │ │ │ │ ├── sizing.md │ │ │ │ ├── spacing.md │ │ │ │ ├── text.md │ │ │ │ ├── vertical-align.md │ │ │ │ ├── visibility.md │ │ │ │ └── z-index.md │ │ │ ├── _index.html │ │ │ └── versions.md │ │ ├── data │ │ ├── breakpoints.yml │ │ ├── colors.yml │ │ ├── core-team.yml │ │ ├── docs-versions.yml │ │ ├── examples.yml │ │ ├── grays.yml │ │ ├── icons.yml │ │ ├── plugins.yml │ │ ├── sidebar.yml │ │ ├── theme-colors.yml │ │ └── translations.yml │ │ ├── layouts │ │ ├── _default │ │ │ ├── 404.html │ │ │ ├── _markup │ │ │ │ └── render-heading.html │ │ │ ├── baseof.html │ │ │ ├── docs.html │ │ │ ├── examples.html │ │ │ ├── home.html │ │ │ ├── redirect.html │ │ │ └── single.html │ │ ├── alias.html │ │ ├── partials │ │ │ ├── ads.html │ │ │ ├── analytics.html │ │ │ ├── callouts │ │ │ │ ├── danger-async-methods.md │ │ │ │ ├── info-mediaqueries-breakpoints.md │ │ │ │ ├── info-npm-starter.md │ │ │ │ ├── info-prefersreducedmotion.md │ │ │ │ ├── info-sanitizer.md │ │ │ │ ├── warning-color-assistive-technologies.md │ │ │ │ ├── warning-data-bs-title-vs-title.md │ │ │ │ └── warning-input-support.md │ │ │ ├── docs-navbar.html │ │ │ ├── docs-sidebar.html │ │ │ ├── docs-versions.html │ │ │ ├── favicons.html │ │ │ ├── footer.html │ │ │ ├── guide-footer.md │ │ │ ├── header.html │ │ │ ├── home │ │ │ │ ├── components-utilities.html │ │ │ │ ├── css-variables.html │ │ │ │ ├── customize.html │ │ │ │ ├── get-started.html │ │ │ │ ├── icons.html │ │ │ │ ├── masthead.html │ │ │ │ ├── plugins.html │ │ │ │ └── themes.html │ │ │ ├── icons.html │ │ │ ├── icons │ │ │ │ ├── bootstrap-white-fill.svg │ │ │ │ ├── circle-square.svg │ │ │ │ ├── droplet-fill.svg │ │ │ │ ├── github.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── opencollective.svg │ │ │ │ └── twitter.svg │ │ │ ├── js-data-attributes.md │ │ │ ├── redirect.html │ │ │ ├── scripts.html │ │ │ ├── skippy.html │ │ │ ├── social.html │ │ │ ├── stylesheet.html │ │ │ └── table-content.html │ │ ├── robots.txt │ │ ├── shortcodes │ │ │ ├── added-in.html │ │ │ ├── bs-table.html │ │ │ ├── callout-deprecated-dark-variants.html │ │ │ ├── callout.html │ │ │ ├── deprecated-in.html │ │ │ ├── docsref.html │ │ │ ├── example.html │ │ │ ├── js-dismiss.html │ │ │ ├── js-docs.html │ │ │ ├── markdown.html │ │ │ ├── param.html │ │ │ ├── partial.html │ │ │ ├── placeholder.html │ │ │ ├── scss-docs.html │ │ │ ├── table.html │ │ │ └── year.html │ │ └── sitemap.xml │ │ └── static │ │ ├── CNAME │ │ ├── docs │ │ └── 5.3 │ │ │ └── assets │ │ │ ├── brand │ │ │ ├── bootstrap-logo-black.svg │ │ │ ├── bootstrap-logo-shadow.png │ │ │ ├── bootstrap-logo-white.svg │ │ │ ├── bootstrap-logo.svg │ │ │ └── bootstrap-social.png │ │ │ ├── img │ │ │ ├── bootstrap-icons.png │ │ │ ├── bootstrap-icons@2x.png │ │ │ ├── bootstrap-themes-collage.png │ │ │ ├── bootstrap-themes-collage@2x.png │ │ │ ├── bootstrap-themes.png │ │ │ ├── bootstrap-themes@2x.png │ │ │ ├── examples │ │ │ │ ├── album-rtl.png │ │ │ │ ├── album-rtl@2x.png │ │ │ │ ├── album.png │ │ │ │ ├── album@2x.png │ │ │ │ ├── badges.png │ │ │ │ ├── badges@2x.png │ │ │ │ ├── blog-rtl.png │ │ │ │ ├── blog-rtl@2x.png │ │ │ │ ├── blog.png │ │ │ │ ├── blog@2x.png │ │ │ │ ├── breadcrumbs.png │ │ │ │ ├── breadcrumbs@2x.png │ │ │ │ ├── buttons.png │ │ │ │ ├── buttons@2x.png │ │ │ │ ├── carousel-rtl.png │ │ │ │ ├── carousel-rtl@2x.png │ │ │ │ ├── carousel.png │ │ │ │ ├── carousel@2x.png │ │ │ │ ├── cheatsheet-rtl.png │ │ │ │ ├── cheatsheet-rtl@2x.png │ │ │ │ ├── cheatsheet.png │ │ │ │ ├── cheatsheet@2x.png │ │ │ │ ├── checkout-rtl.png │ │ │ │ ├── checkout-rtl@2x.png │ │ │ │ ├── checkout.png │ │ │ │ ├── checkout@2x.png │ │ │ │ ├── cover.png │ │ │ │ ├── cover@2x.png │ │ │ │ ├── dashboard-rtl.png │ │ │ │ ├── dashboard-rtl@2x.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── dashboard@2x.png │ │ │ │ ├── dropdowns.png │ │ │ │ ├── dropdowns@2x.png │ │ │ │ ├── features.png │ │ │ │ ├── features@2x.png │ │ │ │ ├── footers.png │ │ │ │ ├── footers@2x.png │ │ │ │ ├── grid.png │ │ │ │ ├── grid@2x.png │ │ │ │ ├── headers.png │ │ │ │ ├── headers@2x.png │ │ │ │ ├── heroes.png │ │ │ │ ├── heroes@2x.png │ │ │ │ ├── jumbotron.png │ │ │ │ ├── jumbotron@2x.png │ │ │ │ ├── jumbotrons.png │ │ │ │ ├── jumbotrons@2x.png │ │ │ │ ├── list-groups.png │ │ │ │ ├── list-groups@2x.png │ │ │ │ ├── masonry.png │ │ │ │ ├── masonry@2x.png │ │ │ │ ├── modals.png │ │ │ │ ├── modals@2x.png │ │ │ │ ├── navbar-bottom.png │ │ │ │ ├── navbar-bottom@2x.png │ │ │ │ ├── navbar-fixed.png │ │ │ │ ├── navbar-fixed@2x.png │ │ │ │ ├── navbar-static.png │ │ │ │ ├── navbar-static@2x.png │ │ │ │ ├── navbars-offcanvas.png │ │ │ │ ├── navbars-offcanvas@2x.png │ │ │ │ ├── navbars.png │ │ │ │ ├── navbars@2x.png │ │ │ │ ├── offcanvas-navbar.png │ │ │ │ ├── offcanvas-navbar@2x.png │ │ │ │ ├── pricing.png │ │ │ │ ├── pricing@2x.png │ │ │ │ ├── product.png │ │ │ │ ├── product@2x.png │ │ │ │ ├── sidebars.png │ │ │ │ ├── sidebars@2x.png │ │ │ │ ├── sign-in.png │ │ │ │ ├── sign-in@2x.png │ │ │ │ ├── starter-template.png │ │ │ │ ├── starter-template@2x.png │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ ├── sticky-footer-navbar@2x.png │ │ │ │ ├── sticky-footer.png │ │ │ │ └── sticky-footer@2x.png │ │ │ ├── favicons │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── manifest.json │ │ │ │ └── safari-pinned-tab.svg │ │ │ ├── guides │ │ │ │ ├── bootstrap-parcel.png │ │ │ │ ├── bootstrap-parcel@2x.png │ │ │ │ ├── bootstrap-vite.png │ │ │ │ ├── bootstrap-vite@2x.png │ │ │ │ ├── bootstrap-webpack.png │ │ │ │ ├── bootstrap-webpack@2x.png │ │ │ │ ├── parcel-dev-server-bootstrap.png │ │ │ │ ├── parcel-dev-server.png │ │ │ │ ├── vite-dev-server-bootstrap.png │ │ │ │ ├── vite-dev-server.png │ │ │ │ ├── webpack-dev-server-bootstrap.png │ │ │ │ └── webpack-dev-server.png │ │ │ ├── parcel.png │ │ │ ├── vite.svg │ │ │ └── webpack.svg │ │ │ └── js │ │ │ ├── color-modes.js │ │ │ └── validate-forms.js │ │ └── sw.js │ └── ycms │ └── krumo │ ├── .gitignore │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── class.krumo.php │ ├── composer.json │ ├── icons │ └── information.png │ ├── js │ ├── krumo.js │ └── krumo.min.js │ ├── krumo.sample.ini │ ├── skins │ ├── blue │ │ ├── bg.gif │ │ ├── skin.css │ │ └── skin.unminified.css │ ├── default │ │ ├── bg.gif │ │ └── skin.css │ ├── green │ │ ├── bg.gif │ │ ├── skin.css │ │ └── skin.unminified.css │ ├── modern │ │ ├── skin.css │ │ └── skin.unminified.css │ ├── orange │ │ ├── skin.css │ │ └── skin.unminified.css │ ├── schablon.com │ │ ├── collapsed.gif │ │ ├── dotted.gif │ │ ├── empty.gif │ │ ├── expanded.gif │ │ ├── skin.css │ │ └── skin.unminified.css │ └── stylish │ │ ├── skin.css │ │ └── skin.unminified.css │ └── tests │ └── php │ ├── class.php │ ├── misc.php │ └── object.php ├── config └── php.ini └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- 1 | # No push db data 2 | data/* 3 | 4 | .idea/* -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.2-apache AS build-php 2 | 3 | RUN --mount=type=cache,target=/var/cache/apt apt update && apt full-upgrade -qy && apt clean -qy && apt autoremove -qy 4 | RUN mount=type=cache,target='/usr/local/lib/php' \ 5 | pecl install xdebug \ 6 | && docker-php-ext-enable xdebug 7 | RUN docker-php-ext-install mysqli pdo_mysql && docker-php-ext-enable mysqli pdo_mysql -------------------------------------------------------------------------------- /Dockerfile2: -------------------------------------------------------------------------------- 1 | FROM php:8.1-apache AS build-php 2 | 3 | RUN --mount=type=cache,target=/var/cache/apt apt update && apt full-upgrade -qy && apt clean -qy && apt autoremove -qy 4 | RUN mount=type=cache,target='/usr/local/lib/php' \ 5 | pecl install xdebug-3.1.5 \ 6 | && docker-php-ext-enable xdebug 7 | RUN docker-php-ext-install mysqli pdo_mysql && docker-php-ext-enable mysqli pdo_mysql -------------------------------------------------------------------------------- /README.assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image1.png -------------------------------------------------------------------------------- /README.assets/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image10.png -------------------------------------------------------------------------------- /README.assets/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image11.png -------------------------------------------------------------------------------- /README.assets/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image12.png -------------------------------------------------------------------------------- /README.assets/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image13.png -------------------------------------------------------------------------------- /README.assets/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image14.png -------------------------------------------------------------------------------- /README.assets/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image15.png -------------------------------------------------------------------------------- /README.assets/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image16.png -------------------------------------------------------------------------------- /README.assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image2.png -------------------------------------------------------------------------------- /README.assets/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image3.png -------------------------------------------------------------------------------- /README.assets/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image4.png -------------------------------------------------------------------------------- /README.assets/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image5.png -------------------------------------------------------------------------------- /README.assets/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image6.png -------------------------------------------------------------------------------- /README.assets/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image7.png -------------------------------------------------------------------------------- /README.assets/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image8.png -------------------------------------------------------------------------------- /README.assets/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/image9.png -------------------------------------------------------------------------------- /README.assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/README.assets/logo.png -------------------------------------------------------------------------------- /app/config/config.ini: -------------------------------------------------------------------------------- 1 | ; Configuracion para la conexion a la base de datos. 2 | [database] 3 | hostname = "mysql" 4 | puerto = "3306" 5 | usuario = "root" 6 | contrasena = "root" 7 | base_de_datos = "sys" 8 | -------------------------------------------------------------------------------- /app/test/Calculator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Carbon\Exceptions; 13 | 14 | interface Exception 15 | { 16 | // 17 | } 18 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/af.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_DJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_EH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_ER.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_IL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_KM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_MR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_SO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ar_TD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ast.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/bg.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/bo.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/br.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/bs.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/bs_Latn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/bs.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ca_AD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ca.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ca.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ca.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ca_IT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ca.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ccp_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ccp.php', [ 13 | 'weekend' => [0, 0], 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/cs.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/cv.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/cy.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/da.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/de_LI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/de.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_AI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_AS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_AT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_BZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_CC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_CK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_CX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_DE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_DG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_DM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_ER.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_FJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_FK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_FM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_GY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | 'first_day_of_week' => 1, 14 | ]); 15 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_JM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_MH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_MT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_PK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_PR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_TT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_UM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_US.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_US_Posix.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_VI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_WS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/en_ZW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/en.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/et.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/eu.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fa.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ff_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ff.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ff_GN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ff.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fi.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fo.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_BF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_BI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_BJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_BL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_CD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_CF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_CG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_CI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_GA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_GF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_GN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_GP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_HT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_KM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_MC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_MF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_MG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_ML.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_MQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_MU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_NC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_NE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_PF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_PM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_RE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_RW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_SC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_SN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_TG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_WF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/fr_YT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/fr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ga.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gd.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gsw.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/gu.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ha_GH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ha.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ha_NE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ha.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ha.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/he.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/hi.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/hr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/hu.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/id.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/in.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/id.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/is.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/it_SM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/it.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/it_VA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/it.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ja.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/jgo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ka.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/kk.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/kkj.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/en.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/km.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/kn.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ko.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ku.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ky.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lb.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lo.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/lrc.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/lv.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mi.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mk.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ml.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mn.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/mo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ro.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/mt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/my.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nb.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ne.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/nl_BQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/nl_CW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/nl_SR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/nl_SX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/nn.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/oc.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/om.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ps.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_AO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_CV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_GW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_LU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_ST.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/pt_TL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/pt.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ro.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ru_BY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ru_KG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ru_KZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ru_MD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ru.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/se.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/se_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/se.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/shi_Tfng.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/shi.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/si.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sk.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sl.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sq.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sr_Latn_ME.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ss.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sv.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/sv.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/te.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/tg.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/th.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/tr.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/uk.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/vai_Vaii.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/vai.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/vi.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/yo.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hans.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hant.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant_HK.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_SG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hans.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_TW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant_TW.php'; 13 | -------------------------------------------------------------------------------- /app/vendor/nikic/php-parser/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: phpstan php-cs-fixer 2 | 3 | tools/vendor: 4 | composer install -d tools 5 | 6 | phpstan: tools/vendor 7 | tools/vendor/bin/phpstan 8 | 9 | php-cs-fixer: tools/vendor 10 | tools/vendor/bin/php-cs-fixer fix 11 | -------------------------------------------------------------------------------- /app/vendor/nikic/php-parser/lib/PhpParser/Builder.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 | 6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar_branch.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css: -------------------------------------------------------------------------------- 1 | .octicon { 2 | display: inline-block; 3 | vertical-align: text-top; 4 | fill: currentColor; 5 | } 6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/line.html.dist: -------------------------------------------------------------------------------- 1 | {{lineNumber}}{{lineContent}} 2 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/lines.html.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{lines}} 4 | 5 |
6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/php-invoker/.psalm/baseline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $timeout 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/deprecation.tpl: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/doubled_static_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_declaration} 3 | { 4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/intersection.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | interface {intersection} extends {interfaces} 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/test_double_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}{class_declaration} 4 | { 5 | {use_statements}{mocked_methods}}{epilogue} 6 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/trait_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}class {class_name} 4 | { 5 | use {trait_name}; 6 | } 7 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/wsdl_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {namespace}class {class_name} extends \SoapClient 4 | { 5 | public function __construct($wsdl, array $options) 6 | { 7 | parent::__construct('{wsdl}', $options); 8 | } 9 | {methods}} 10 | -------------------------------------------------------------------------------- /app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/templates/wsdl_method.tpl: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /app/vendor/psr/clock/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file, in reverse chronological order by release. 4 | 5 | ## 1.0.0 6 | 7 | First stable release after PSR-20 acceptance 8 | 9 | ## 0.1.0 10 | 11 | First release 12 | -------------------------------------------------------------------------------- /app/vendor/psr/clock/src/ClockInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | assert(is_array($traits)) 6 | is_array($traits) 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/vendor/sebastian/type/infection.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": { 3 | "directories": [ 4 | "src" 5 | ] 6 | }, 7 | "mutators": { 8 | "@default": true 9 | }, 10 | "minMsi": 100, 11 | "minCoveredMsi": 100 12 | } 13 | -------------------------------------------------------------------------------- /app/vendor/symfony/deprecation-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/main/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /app/vendor/symfony/translation-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/main/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /app/vendor/symfony/translation-contracts/README.md: -------------------------------------------------------------------------------- 1 | Symfony Translation Contracts 2 | ============================= 3 | 4 | A set of abstractions extracted out of the Symfony components. 5 | 6 | Can be used to build on semantics that the Symfony components proved useful and 7 | that already have battle tested implementations. 8 | 9 | See https://github.com/symfony/contracts/blob/main/README.md for more information. 10 | -------------------------------------------------------------------------------- /app/vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | = 0.5% 4 | last 2 major versions 5 | not dead 6 | Chrome >= 60 7 | Firefox >= 60 8 | Firefox ESR 9 | iOS >= 12 10 | Safari >= 12 11 | not Explorer <= 11 12 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.min.js 2 | **/dist/ 3 | **/vendor/ 4 | /_site/ 5 | /js/coverage/ 6 | /site/static/sw.js 7 | /site/layouts/partials/ 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | 4 | # Don't diff or textually merge source maps 5 | *.map binary 6 | 7 | bootstrap.css linguist-vendored=false 8 | bootstrap.js linguist-vendored=false 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | *.js @twbs/js-review 2 | *.css @twbs/css-review 3 | *.scss @twbs/css-review 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: Ask the community 3 | url: https://github.com/twbs/bootstrap/discussions/new 4 | about: Ask and discuss questions with other Bootstrap community members. 5 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- 1 | name: "CodeQL config" 2 | paths-ignore: 3 | - dist 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.npmrc: -------------------------------------------------------------------------------- 1 | lockfile-version=2 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- 1 | **/*.min.css 2 | **/dist/ 3 | **/vendor/ 4 | /_site/ 5 | /js/coverage/ 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/js/tests/integration/bundle-modularity.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable import/extensions, import/no-unassigned-import */ 2 | 3 | import Tooltip from '../../dist/tooltip' 4 | import '../../dist/carousel' 5 | 6 | window.addEventListener('load', () => { 7 | [].concat(...document.querySelectorAll('[data-bs-toggle="tooltip"]')) 8 | .map(tooltipNode => new Tooltip(tooltipNode)) 9 | }) 10 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/js/tests/integration/bundle.js: -------------------------------------------------------------------------------- 1 | import { Tooltip } from '../../../dist/js/bootstrap.esm.js' 2 | 3 | window.addEventListener('load', () => { 4 | [].concat(...document.querySelectorAll('[data-bs-toggle="tooltip"]')) 5 | .map(tooltipNode => new Tooltip(tooltipNode)) 6 | }) 7 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/nuget/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/nuget/bootstrap.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Reboot); 3 | 4 | @import "functions"; 5 | @import "variables"; 6 | @import "variables-dark"; 7 | @import "maps"; 8 | @import "mixins"; 9 | @import "root"; 10 | @import "reboot"; 11 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/helpers/_stacks.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start stacks 2 | .hstack { 3 | display: flex; 4 | flex-direction: row; 5 | align-items: center; 6 | align-self: stretch; 7 | } 8 | 9 | .vstack { 10 | display: flex; 11 | flex: 1 1 auto; 12 | flex-direction: column; 13 | align-self: stretch; 14 | } 15 | // scss-docs-end stacks 16 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/helpers/_vr.scss: -------------------------------------------------------------------------------- 1 | .vr { 2 | display: inline-block; 3 | align-self: stretch; 4 | width: $vr-border-width; 5 | min-height: 1em; 6 | background-color: currentcolor; 7 | opacity: $hr-opacity; 8 | } 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/mixins/_banner.scss: -------------------------------------------------------------------------------- 1 | @mixin bsBanner($file) { 2 | /*! 3 | * Bootstrap #{$file} v5.3.2 (https://getbootstrap.com/) 4 | * Copyright 2011-2023 The Bootstrap Authors 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss: -------------------------------------------------------------------------------- 1 | $color-mode-type: media-query; 2 | 3 | @import "../../bootstrap"; 4 | 5 | @include describe("global $color-mode-type: media-query") { 6 | @include it("compiles entirely Bootstrap CSS with media-query color mode") { // stylelint-disable-line block-no-empty 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/assets/scss/_footer.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Footer 3 | // 4 | 5 | .bd-footer { 6 | a { 7 | color: var(--bs-body-color); 8 | text-decoration: none; 9 | 10 | &:hover, 11 | &:focus { 12 | color: var(--bs-link-hover-color); 13 | text-decoration: underline; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/assets/scss/_placeholder-img.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Placeholder svg used in the docs. 3 | // 4 | 5 | // Remember to update `site/_layouts/examples.html` too if this changes! 6 | 7 | .bd-placeholder-img { 8 | @include font-size(1.125rem); 9 | user-select: none; 10 | text-anchor: middle; 11 | } 12 | 13 | .bd-placeholder-img-lg { 14 | @include font-size(3.5rem); 15 | } 16 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/assets/scss/_scrolling.scss: -------------------------------------------------------------------------------- 1 | // When navigating with the keyboard, prevent focus from landing behind the sticky header 2 | 3 | main { 4 | a, 5 | button, 6 | input, 7 | select, 8 | textarea, 9 | h2, 10 | h3, 11 | h4, 12 | [tabindex="0"] { 13 | scroll-margin-top: 80px; 14 | scroll-margin-bottom: 100px; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/assets/scss/_skippy.scss: -------------------------------------------------------------------------------- 1 | .skippy { 2 | background-color: $bd-purple; 3 | 4 | a { 5 | color: $white; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "404 - File not found" 3 | layout: 404 4 | description: "" 5 | url: /404.html 6 | robots: noindex,follow 7 | sitemap_exclude: true 8 | --- 9 | 10 |
11 |

404

12 |

File not found

13 |
14 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: redirect 3 | sitemap_exclude: true 4 | redirect: "/docs/5.3/getting-started/introduction/" 5 | --- 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/badges/badges.css: -------------------------------------------------------------------------------- 1 | .badge > a { 2 | color: inherit; 3 | } 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/checkout/checkout.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/features/unsplash-photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/features/unsplash-photo-1.jpg -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/features/unsplash-photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/features/unsplash-photo-2.jpg -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/features/unsplash-photo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/features/unsplash-photo-3.jpg -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/headers/headers.css: -------------------------------------------------------------------------------- 1 | .form-control-dark { 2 | border-color: var(--bs-gray); 3 | } 4 | .form-control-dark:focus { 5 | border-color: #fff; 6 | box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25); 7 | } 8 | 9 | .text-small { 10 | font-size: 85%; 11 | } 12 | 13 | .dropdown-toggle:not(:focus) { 14 | outline: 0; 15 | } 16 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/heroes/bootstrap-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/heroes/bootstrap-docs.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/heroes/bootstrap-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/heroes/bootstrap-themes.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/heroes/heroes.css: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px) { 2 | .rounded-lg-3 { border-radius: .3rem; } 3 | } 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/jumbotrons/jumbotrons.css: -------------------------------------------------------------------------------- 1 | .border-dashed { --bs-border-style: dashed; } 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/modals/modals.css: -------------------------------------------------------------------------------- 1 | .modal-sheet .modal-dialog { 2 | width: 380px; 3 | transition: bottom .75s ease-in-out; 4 | } 5 | .modal-sheet .modal-footer { 6 | padding-bottom: 2rem; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/navbar-fixed/navbar-fixed.css: -------------------------------------------------------------------------------- 1 | /* Show it is fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | padding-top: 4.5rem; 5 | } 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/navbar-static/navbar-static.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/navbars-offcanvas/navbars-offcanvas.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-bottom: 20px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/navbars/navbars.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-bottom: 20px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/offcanvas-navbar/offcanvas-navbar.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | 'use strict' 3 | 4 | document.querySelector('#navbarSideCollapse').addEventListener('click', () => { 5 | document.querySelector('.offcanvas-collapse').classList.toggle('open') 6 | }) 7 | })() 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/pricing/pricing.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-image: linear-gradient(180deg, var(--bs-secondary-bg), var(--bs-body-bg) 100px, var(--bs-body-bg)); 3 | } 4 | 5 | .container { 6 | max-width: 960px; 7 | } 8 | 9 | .pricing-header { 10 | max-width: 700px; 11 | } 12 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/sidebars/sidebars.js: -------------------------------------------------------------------------------- 1 | /* global bootstrap: false */ 2 | (() => { 3 | 'use strict' 4 | const tooltipTriggerList = Array.from(document.querySelectorAll('[data-bs-toggle="tooltip"]')) 5 | tooltipTriggerList.forEach(tooltipTriggerEl => { 6 | new bootstrap.Tooltip(tooltipTriggerEl) 7 | }) 8 | })() 9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/sticky-footer-navbar/sticky-footer-navbar.css: -------------------------------------------------------------------------------- 1 | /* Custom page CSS 2 | -------------------------------------------------- */ 3 | /* Not required for template or sticky footer method. */ 4 | 5 | main > .container { 6 | padding: 60px 15px 0; 7 | } 8 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/5.3/examples/sticky-footer/sticky-footer.css: -------------------------------------------------------------------------------- 1 | /* Custom page CSS 2 | -------------------------------------------------- */ 3 | /* Not required for template or sticky footer method. */ 4 | 5 | .container { 6 | width: auto; 7 | max-width: 680px; 8 | padding: 0 15px; 9 | } 10 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/content/docs/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: redirect 3 | sitemap_exclude: true 4 | redirect: "/docs/5.3/getting-started/introduction/" 5 | --- 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/data/grays.yml: -------------------------------------------------------------------------------- 1 | - name: 100 2 | hex: "#f8f9fa" 3 | - name: 200 4 | hex: "#e9ecef" 5 | - name: 300 6 | hex: "#dee2e6" 7 | - name: 400 8 | hex: "#ced4da" 9 | - name: 500 10 | hex: "#adb5bd" 11 | - name: 600 12 | hex: "#868e96" 13 | - name: 700 14 | hex: "#495057" 15 | - name: 800 16 | hex: "#343a40" 17 | - name: 900 18 | hex: "#212529" 19 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/_default/404.html: -------------------------------------------------------------------------------- 1 | {{ define "body_override" }}{{ end }} 2 | {{ define "main" }} 3 |
4 | {{ .Content }} 5 |
6 | {{ end }} 7 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- 1 | {{ .Text | safeHTML }} 2 | {{- if and (ge .Level .Page.Site.Params.anchors.min) (le .Level .Page.Site.Params.anchors.max) }}{{" " -}} 3 | 4 | {{- end -}} 5 | 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/_default/redirect.html: -------------------------------------------------------------------------------- 1 | {{ partial "redirect" (.Page.Params.redirect | absURL) }} 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/alias.html: -------------------------------------------------------------------------------- 1 | {{ partial "redirect" .Permalink }} 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/ads.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-npm-starter.md: -------------------------------------------------------------------------------- 1 | **Get started with Bootstrap via npm with our starter project!** Head to the [Sass & JS example](https://github.com/twbs/examples/tree/main/sass-js) template repository to see how to build and customize Bootstrap in your own npm project. Includes Sass compiler, Autoprefixer, Stylelint, PurgeCSS, and Bootstrap Icons. 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-prefersreducedmotion.md: -------------------------------------------------------------------------------- 1 | The animation effect of this component is dependent on the `prefers-reduced-motion` media query. See the [reduced motion section of our accessibility documentation](/docs/{{ .Site.Params.docs_version }}/getting-started/accessibility/#reduced-motion). 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-sanitizer.md: -------------------------------------------------------------------------------- 1 | By default, this component uses the built-in content sanitizer, which strips out any HTML elements that are not explicitly allowed. See the [sanitizer section in our JavaScript documentation](/docs/{{ .Site.Params.docs_version }}/getting-started/javascript/#sanitizer) for more details. 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-data-bs-title-vs-title.md: -------------------------------------------------------------------------------- 1 | Feel free to use either `title` or `data-bs-title` in your HTML. When `title` is used, Popper will replace it automatically with `data-bs-title` when the element is rendered. 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-input-support.md: -------------------------------------------------------------------------------- 1 | Some date inputs types are [not fully supported](https://caniuse.com/input-datetime) by the latest versions of Safari and Firefox. 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/guide-footer.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | _See something wrong or out of date here? Please [open an issue on GitHub]({{ .Site.Params.repo }}/issues/new/choose). Need help troubleshooting? [Search or start a discussion]({{ .Site.Params.repo }}/discussions) on GitHub._ 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/partials/skippy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Skip to main content 4 | {{ if (eq .Page.Layout "docs") -}} 5 | Skip to docs navigation 6 | {{- end }} 7 |
8 |
9 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/added-in.html: -------------------------------------------------------------------------------- 1 | {{- /* Outputs badge to identify the first version something was added */ -}} 2 | 3 | {{- $version := .Get 0 -}} 4 | 5 | Added in v{{ $version }} 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/callout.html: -------------------------------------------------------------------------------- 1 | {{- /* 2 | Usage: `callout "type"`, where `type` is one of info (default), danger, or warning 3 | */ -}} 4 | 5 | {{- $css_class := .Get 0 | default "info" -}} 6 | 7 |
8 | {{ .Inner | markdownify }} 9 |
10 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/deprecated-in.html: -------------------------------------------------------------------------------- 1 | {{- /* Outputs badge to identify the version something was deprecated */ -}} 2 | 3 | {{- $version := .Get 0 -}} 4 | 5 | Deprecated in v{{ $version }} 6 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/docsref.html: -------------------------------------------------------------------------------- 1 | {{- relref . ((path.Join "docs" $.Site.Params.docs_version (.Get 0)) | relURL) -}} 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- 1 | {{- .Inner | markdownify -}} 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/partial.html: -------------------------------------------------------------------------------- 1 | {{ partial (.Get 0) . }} 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/layouts/shortcodes/year.html: -------------------------------------------------------------------------------- 1 | {{- /* Outputs the current year */ -}} 2 | 3 | {{- now.Format "2006" -}} 4 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/brand/bootstrap-logo-shadow.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/brand/bootstrap-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/brand/bootstrap-social.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-icons.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-icons@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes-collage.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes-collage@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/bootstrap-themes@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album-rtl.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album-rtl@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/album@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/badges.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/badges@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/badges@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog-rtl.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog-rtl@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/blog@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/breadcrumbs.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/breadcrumbs@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/buttons.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/buttons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/buttons@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel-rtl.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel-rtl@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/carousel@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet-rtl@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cheatsheet@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout-rtl.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout-rtl@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/checkout@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cover.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/cover@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard-rtl.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard-rtl@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dashboard@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dropdowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dropdowns.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/dropdowns@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/features.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/features@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/features@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/footers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/footers.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/footers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/footers@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/grid.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/grid@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/headers.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/headers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/headers@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/heroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/heroes.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/heroes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/heroes@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotron.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotron@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotrons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotrons.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/jumbotrons@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/list-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/list-groups.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/list-groups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/list-groups@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/masonry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/masonry.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/masonry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/masonry@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/modals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/modals.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/modals@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/modals@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-bottom.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-bottom@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-fixed.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-fixed@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-static.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbar-static@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars-offcanvas.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars-offcanvas@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/navbars@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/offcanvas-navbar.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/offcanvas-navbar@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/pricing.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/pricing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/pricing@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/product.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/product@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/product@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sidebars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sidebars.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sidebars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sidebars@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sign-in.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sign-in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sign-in@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/starter-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/starter-template.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/starter-template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/starter-template@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer-navbar@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/examples/sticky-footer@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/favicons/favicon.ico -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-parcel.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-parcel@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-vite.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-vite@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-webpack.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/bootstrap-webpack@2x.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/parcel-dev-server-bootstrap.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/parcel-dev-server.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/vite-dev-server-bootstrap.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/vite-dev-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/vite-dev-server.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/webpack-dev-server-bootstrap.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/guides/webpack-dev-server.png -------------------------------------------------------------------------------- /app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/parcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/twbs/bootstrap/site/static/docs/5.3/assets/img/parcel.png -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | \#*# 3 | krumo.ini 4 | -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/icons/information.png -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/blue/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/blue/bg.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/default/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/default/bg.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/green/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/green/bg.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/schablon.com/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/schablon.com/collapsed.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/schablon.com/dotted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/schablon.com/dotted.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/schablon.com/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/schablon.com/empty.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/skins/schablon.com/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellLonely/composer-develop/7e66c377e17e231d4759642ae5b2f46446eea3d0/app/vendor/ycms/krumo/skins/schablon.com/expanded.gif -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/tests/php/class.php: -------------------------------------------------------------------------------- 1 | b = new A(); 13 | $x->b->b = new A(); 14 | $x->b->c = new A(); 15 | $x->b->c->b = new A(); 16 | 17 | krumo($x); 18 | 19 | -------------------------------------------------------------------------------- /app/vendor/ycms/krumo/tests/php/object.php: -------------------------------------------------------------------------------- 1 | array('b' => array('c' => array('d' => array('e' => null))))); 6 | 7 | krumo($obj); 8 | 9 | --------------------------------------------------------------------------------