├── .gitignore ├── README.md └── app ├── 01 Basic Syntax.php ├── 02 Comments.php ├── 03 Basic Variables.php ├── 04 Booleans.php ├── 05 Truthy Booleans.php ├── 06 Integers.php ├── 07 Floating Points.php ├── 08 Strings.php ├── 09 Simple Arrays.php ├── 10 Associative Arrays.php ├── 100 JSON ├── Array.php ├── JsonDecode.php ├── JsonDecodeRequest.php ├── JsonSerializableTest.php ├── PrivateObject.php ├── PublicObject.php └── Stringify.html ├── 101 Recursion ├── BubbleSort.php ├── FibonacciFunction.php ├── IsPalindrome.php └── SimpleFunction.php ├── 11 Multidimensional Arrays.php ├── 12 Variables.php ├── 13 Variable Variables.php ├── 14 Constants.php ├── 15 Assignment Operator.php ├── 16 Artihmetic Operators.php ├── 17 Comparison Operators.php ├── 18 Increment Decrement Operator.php ├── 19 Logical Operators.php ├── 20 String Operator.php ├── 21 Array Operators.php ├── 22 Shorthand Operators.php ├── 23 Operator Precedence.php ├── 24 If Statements.php ├── 25 Else Statements.php ├── 26 Else If Statements.php ├── 27 Ternary Operator.php ├── 28 Switch Statement.php ├── 29 While Loops.php ├── 30 Do While.php ├── 31 For Loop.php ├── 32 Foreach Loop.php ├── 33 Break statement.php ├── 34 Continue statement.php ├── 35 Functions.php ├── 36 Function Arguments.php ├── 37 Functions Returning Values.php ├── 38 Variable Functions.php ├── 39 Anonymous Functions.php ├── 40 use Keyword.php ├── 41 Arrow Functions.php ├── 42 Callback Functions.php ├── 43 Classes and Objects Intro.php ├── 44 Class Properties.php ├── 45 Class Constants.php ├── 46 Methods.php ├── 47 this keyword.php ├── 48 Type Declarations.php ├── 49 Constructor.php ├── 50 Destructor.php ├── 51 Visibility.php ├── 52 Getters and Setters.php ├── 53 Class Inheritance.php ├── 54 Class Inheritance Part 2.php ├── 55 File Separation.php ├── 56 Method Overriding.php ├── 57 Scope Resolution Operator.php ├── 58 Static Keyword.php ├── 59 Self Keyword.php ├── 60 Abstract Classes ├── 60 Abstract Class.php ├── Animal.php ├── Dog.php ├── GermanShepherd.php └── Mammal.php ├── 61 Interface ├── 61 Interface.php ├── Animal.php ├── Dog.php ├── GermanShepherd.php └── Mammal.php ├── 62 Traits ├── 62 Traits.php ├── Car.php ├── Engine.php ├── Transmission.php └── Vehicle.php ├── 63 ObjectArguments ├── 63 Object Arguments.php ├── Car.php ├── Driver.php ├── Engine.php ├── Ferrari.php ├── Lamborghini.php ├── Transmission.php └── Vehicle.php ├── 64 Anonymous Classes ├── 64 Anonymous Classes.php ├── Car.php ├── Driver.php ├── Engine.php ├── Transmission.php └── Vehicle.php ├── 65 Final Keyword ├── 65 Final Keyword.php ├── Car.php ├── Driver.php ├── Engine.php ├── Lamborghini.php ├── LamborghiniKnockoff.php ├── Transmission.php └── Vehicle.php ├── 66 Object Comparison ├── 66 Object Comparison.php ├── Car.php ├── Driver.php ├── Engine.php ├── Ferrari.php ├── Lamborghini.php ├── Transmission.php └── Vehicle.php ├── 67 Parent Constructor ├── 67 Parent Constructor.php ├── Car.php ├── Driver.php ├── Engine.php ├── Ferrari.php ├── Lamborghini.php ├── Transmission.php └── Vehicle.php ├── 68 Namespaces Intro └── 68 Namespaces Intro.php ├── 69 Defining Namespaces ├── 69 Defining Namespaces.php ├── Car.php ├── Driver.php ├── Engine.php ├── Ferrari.php ├── Lamborghini.php ├── Transmission.php └── Vehicle.php ├── 70 Subnamespaces ├── 70 Subnamespaces.php ├── Car.php ├── Driver.php ├── Engine.php ├── Ferrari.php ├── Lamborghini.php ├── Lamborghini_Two.php ├── Transmission.php └── Vehicle.php ├── 71 Magic Constants ├── 71 Magic Constants.php ├── Car.php ├── Driver.php ├── Engine.php ├── Ferrari.php ├── Lamborghini.php ├── Lamborghini_Two.php ├── Transmission.php └── Vehicle.php ├── 72 Errors └── 72 Errors Intro.php ├── 73 Forms ├── form_processor.php └── index.php ├── 74 Form Requests ├── form_processor.php ├── get_request_example.php └── index.php ├── 75 Predefined Variables └── index.php ├── 76 File Uploads ├── index.html ├── upload.php └── uploads │ └── 76-Predefined-Variables.jpg ├── 77 File Upload Type Check ├── index.html └── upload.php ├── 78 File Upload Type Check ├── index.html └── upload.php ├── 79 Final File Checks ├── index.html └── upload.php ├── 80 Script to Class ├── ImageUpload.php ├── index.html └── upload.php ├── 81 Database Connection └── db_connect.php ├── 82 Database Tables └── create_table.php ├── 83 MySQL Insert ├── AddUser.php ├── Author.php └── DB.php ├── 84 MySQL Prepared Statement ├── AddUser.php ├── Author.php └── DB.php ├── 85 MySQL Prepared Statement Multiple ├── AddUser.php ├── Author.php ├── DB.php └── TestInsertion.php ├── 86 MySQL Select ├── Author.php ├── DB.php ├── SelectAuthor.php └── TestSelect.php ├── 87 MySQL Update ├── Author.php ├── DB.php ├── UpdateAuthorEmail.php ├── UpdateEntireAuthor.php └── index.php ├── 88 Delete ├── Author.php ├── DB.php ├── DeleteAuthor.php └── index.php ├── 89 MySQL CRUD ├── Author.php ├── Create.php ├── DB.php ├── Show.php ├── ViewAll.php └── index.php ├── 90 Controller ├── Controllers │ ├── AuthorController.php │ └── HomeController.php ├── DB.php ├── Models │ └── Author.php └── Views │ ├── author │ ├── create.php │ ├── edit.php │ ├── index.php │ └── show.php │ └── home │ └── index.php ├── 91 Normalization ├── DB.php ├── TestInsertion.php └── TestSelect.php ├── 92 Sessions ├── add_item.php ├── cart.php ├── destroy_user.php └── empty_cart.php ├── 93 Cookies ├── delete_cookie.php ├── set_cookie.php └── view_cookie.php ├── 94 Date and Time └── index.php ├── 95 DateTime Object └── index.php ├── 96 Dependencies Intro ├── composer.json ├── composer.lock ├── index.php └── vendor │ ├── autoload.php │ ├── bin │ └── carbon │ ├── 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 │ ├── nesbot │ └── carbon │ │ ├── LICENSE │ │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── extension.neon │ │ ├── lazy │ │ └── Carbon │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ │ ├── readme.md │ │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.php │ │ ├── Exceptions │ │ ├── BadComparisonUnitException.php │ │ ├── BadFluentConstructorException.php │ │ ├── BadFluentSetterException.php │ │ ├── BadMethodCallException.php │ │ ├── EndLessPeriodException.php │ │ ├── Exception.php │ │ ├── ImmutableException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCastException.php │ │ ├── InvalidDateException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidIntervalException.php │ │ ├── InvalidPeriodDateException.php │ │ ├── InvalidPeriodParameterException.php │ │ ├── InvalidTimeZoneException.php │ │ ├── InvalidTypeException.php │ │ ├── NotACarbonClassException.php │ │ ├── NotAPeriodException.php │ │ ├── NotLocaleAwareException.php │ │ ├── OutOfRangeException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── UnitException.php │ │ ├── UnitNotConfiguredException.php │ │ ├── UnknownGetterException.php │ │ ├── UnknownMethodException.php │ │ ├── UnknownSetterException.php │ │ ├── UnknownUnitException.php │ │ └── UnreachableException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang │ │ ├── aa.php │ │ ├── aa_DJ.php │ │ ├── aa_ER.php │ │ ├── aa_ER@saaho.php │ │ ├── aa_ET.php │ │ ├── af.php │ │ ├── af_NA.php │ │ ├── af_ZA.php │ │ ├── agq.php │ │ ├── agr.php │ │ ├── agr_PE.php │ │ ├── ak.php │ │ ├── ak_GH.php │ │ ├── am.php │ │ ├── am_ET.php │ │ ├── an.php │ │ ├── an_ES.php │ │ ├── anp.php │ │ ├── anp_IN.php │ │ ├── ar.php │ │ ├── ar_AE.php │ │ ├── ar_BH.php │ │ ├── ar_DJ.php │ │ ├── ar_DZ.php │ │ ├── ar_EG.php │ │ ├── ar_EH.php │ │ ├── ar_ER.php │ │ ├── ar_IL.php │ │ ├── ar_IN.php │ │ ├── ar_IQ.php │ │ ├── ar_JO.php │ │ ├── ar_KM.php │ │ ├── ar_KW.php │ │ ├── ar_LB.php │ │ ├── ar_LY.php │ │ ├── ar_MA.php │ │ ├── ar_MR.php │ │ ├── ar_OM.php │ │ ├── ar_PS.php │ │ ├── ar_QA.php │ │ ├── ar_SA.php │ │ ├── ar_SD.php │ │ ├── ar_SO.php │ │ ├── ar_SS.php │ │ ├── ar_SY.php │ │ ├── ar_Shakl.php │ │ ├── ar_TD.php │ │ ├── ar_TN.php │ │ ├── ar_YE.php │ │ ├── as.php │ │ ├── as_IN.php │ │ ├── asa.php │ │ ├── ast.php │ │ ├── ast_ES.php │ │ ├── ayc.php │ │ ├── ayc_PE.php │ │ ├── az.php │ │ ├── az_AZ.php │ │ ├── az_Cyrl.php │ │ ├── az_IR.php │ │ ├── az_Latn.php │ │ ├── bas.php │ │ ├── be.php │ │ ├── be_BY.php │ │ ├── be_BY@latin.php │ │ ├── bem.php │ │ ├── bem_ZM.php │ │ ├── ber.php │ │ ├── ber_DZ.php │ │ ├── ber_MA.php │ │ ├── bez.php │ │ ├── bg.php │ │ ├── bg_BG.php │ │ ├── bhb.php │ │ ├── bhb_IN.php │ │ ├── bho.php │ │ ├── bho_IN.php │ │ ├── bi.php │ │ ├── bi_VU.php │ │ ├── bm.php │ │ ├── bn.php │ │ ├── bn_BD.php │ │ ├── bn_IN.php │ │ ├── bo.php │ │ ├── bo_CN.php │ │ ├── bo_IN.php │ │ ├── br.php │ │ ├── br_FR.php │ │ ├── brx.php │ │ ├── brx_IN.php │ │ ├── bs.php │ │ ├── bs_BA.php │ │ ├── bs_Cyrl.php │ │ ├── bs_Latn.php │ │ ├── byn.php │ │ ├── byn_ER.php │ │ ├── ca.php │ │ ├── ca_AD.php │ │ ├── ca_ES.php │ │ ├── ca_ES_Valencia.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── ccp.php │ │ ├── ccp_IN.php │ │ ├── ce.php │ │ ├── ce_RU.php │ │ ├── cgg.php │ │ ├── chr.php │ │ ├── chr_US.php │ │ ├── ckb.php │ │ ├── cmn.php │ │ ├── cmn_TW.php │ │ ├── crh.php │ │ ├── crh_UA.php │ │ ├── cs.php │ │ ├── cs_CZ.php │ │ ├── csb.php │ │ ├── csb_PL.php │ │ ├── cu.php │ │ ├── cv.php │ │ ├── cv_RU.php │ │ ├── cy.php │ │ ├── cy_GB.php │ │ ├── da.php │ │ ├── da_DK.php │ │ ├── da_GL.php │ │ ├── dav.php │ │ ├── de.php │ │ ├── de_AT.php │ │ ├── de_BE.php │ │ ├── de_CH.php │ │ ├── de_DE.php │ │ ├── de_IT.php │ │ ├── de_LI.php │ │ ├── de_LU.php │ │ ├── dje.php │ │ ├── doi.php │ │ ├── doi_IN.php │ │ ├── dsb.php │ │ ├── dsb_DE.php │ │ ├── dua.php │ │ ├── dv.php │ │ ├── dv_MV.php │ │ ├── dyo.php │ │ ├── dz.php │ │ ├── dz_BT.php │ │ ├── ebu.php │ │ ├── ee.php │ │ ├── ee_TG.php │ │ ├── el.php │ │ ├── el_CY.php │ │ ├── el_GR.php │ │ ├── en.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── en_AG.php │ │ ├── en_AI.php │ │ ├── en_AS.php │ │ ├── en_AT.php │ │ ├── en_AU.php │ │ ├── en_BB.php │ │ ├── en_BE.php │ │ ├── en_BI.php │ │ ├── en_BM.php │ │ ├── en_BS.php │ │ ├── en_BW.php │ │ ├── en_BZ.php │ │ ├── en_CA.php │ │ ├── en_CC.php │ │ ├── en_CH.php │ │ ├── en_CK.php │ │ ├── en_CM.php │ │ ├── en_CX.php │ │ ├── en_CY.php │ │ ├── en_DE.php │ │ ├── en_DG.php │ │ ├── en_DK.php │ │ ├── en_DM.php │ │ ├── en_ER.php │ │ ├── en_FI.php │ │ ├── en_FJ.php │ │ ├── en_FK.php │ │ ├── en_FM.php │ │ ├── en_GB.php │ │ ├── en_GD.php │ │ ├── en_GG.php │ │ ├── en_GH.php │ │ ├── en_GI.php │ │ ├── en_GM.php │ │ ├── en_GU.php │ │ ├── en_GY.php │ │ ├── en_HK.php │ │ ├── en_IE.php │ │ ├── en_IL.php │ │ ├── en_IM.php │ │ ├── en_IN.php │ │ ├── en_IO.php │ │ ├── en_ISO.php │ │ ├── en_JE.php │ │ ├── en_JM.php │ │ ├── en_KE.php │ │ ├── en_KI.php │ │ ├── en_KN.php │ │ ├── en_KY.php │ │ ├── en_LC.php │ │ ├── en_LR.php │ │ ├── en_LS.php │ │ ├── en_MG.php │ │ ├── en_MH.php │ │ ├── en_MO.php │ │ ├── en_MP.php │ │ ├── en_MS.php │ │ ├── en_MT.php │ │ ├── en_MU.php │ │ ├── en_MW.php │ │ ├── en_MY.php │ │ ├── en_NA.php │ │ ├── en_NF.php │ │ ├── en_NG.php │ │ ├── en_NL.php │ │ ├── en_NR.php │ │ ├── en_NU.php │ │ ├── en_NZ.php │ │ ├── en_PG.php │ │ ├── en_PH.php │ │ ├── en_PK.php │ │ ├── en_PN.php │ │ ├── en_PR.php │ │ ├── en_PW.php │ │ ├── en_RW.php │ │ ├── en_SB.php │ │ ├── en_SC.php │ │ ├── en_SD.php │ │ ├── en_SE.php │ │ ├── en_SG.php │ │ ├── en_SH.php │ │ ├── en_SI.php │ │ ├── en_SL.php │ │ ├── en_SS.php │ │ ├── en_SX.php │ │ ├── en_SZ.php │ │ ├── en_TC.php │ │ ├── en_TK.php │ │ ├── en_TO.php │ │ ├── en_TT.php │ │ ├── en_TV.php │ │ ├── en_TZ.php │ │ ├── en_UG.php │ │ ├── en_UM.php │ │ ├── en_US.php │ │ ├── en_US_Posix.php │ │ ├── en_VC.php │ │ ├── en_VG.php │ │ ├── en_VI.php │ │ ├── en_VU.php │ │ ├── en_WS.php │ │ ├── en_ZA.php │ │ ├── en_ZM.php │ │ ├── en_ZW.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── es_419.php │ │ ├── es_AR.php │ │ ├── es_BO.php │ │ ├── es_BR.php │ │ ├── es_BZ.php │ │ ├── es_CL.php │ │ ├── es_CO.php │ │ ├── es_CR.php │ │ ├── es_CU.php │ │ ├── es_DO.php │ │ ├── es_EA.php │ │ ├── es_EC.php │ │ ├── es_ES.php │ │ ├── es_GQ.php │ │ ├── es_GT.php │ │ ├── es_HN.php │ │ ├── es_IC.php │ │ ├── es_MX.php │ │ ├── es_NI.php │ │ ├── es_PA.php │ │ ├── es_PE.php │ │ ├── es_PH.php │ │ ├── es_PR.php │ │ ├── es_PY.php │ │ ├── es_SV.php │ │ ├── es_US.php │ │ ├── es_UY.php │ │ ├── es_VE.php │ │ ├── et.php │ │ ├── et_EE.php │ │ ├── eu.php │ │ ├── eu_ES.php │ │ ├── ewo.php │ │ ├── fa.php │ │ ├── fa_AF.php │ │ ├── fa_IR.php │ │ ├── ff.php │ │ ├── ff_CM.php │ │ ├── ff_GN.php │ │ ├── ff_MR.php │ │ ├── ff_SN.php │ │ ├── fi.php │ │ ├── fi_FI.php │ │ ├── fil.php │ │ ├── fil_PH.php │ │ ├── fo.php │ │ ├── fo_DK.php │ │ ├── fo_FO.php │ │ ├── fr.php │ │ ├── fr_BE.php │ │ ├── fr_BF.php │ │ ├── fr_BI.php │ │ ├── fr_BJ.php │ │ ├── fr_BL.php │ │ ├── fr_CA.php │ │ ├── fr_CD.php │ │ ├── fr_CF.php │ │ ├── fr_CG.php │ │ ├── fr_CH.php │ │ ├── fr_CI.php │ │ ├── fr_CM.php │ │ ├── fr_DJ.php │ │ ├── fr_DZ.php │ │ ├── fr_FR.php │ │ ├── fr_GA.php │ │ ├── fr_GF.php │ │ ├── fr_GN.php │ │ ├── fr_GP.php │ │ ├── fr_GQ.php │ │ ├── fr_HT.php │ │ ├── fr_KM.php │ │ ├── fr_LU.php │ │ ├── fr_MA.php │ │ ├── fr_MC.php │ │ ├── fr_MF.php │ │ ├── fr_MG.php │ │ ├── fr_ML.php │ │ ├── fr_MQ.php │ │ ├── fr_MR.php │ │ ├── fr_MU.php │ │ ├── fr_NC.php │ │ ├── fr_NE.php │ │ ├── fr_PF.php │ │ ├── fr_PM.php │ │ ├── fr_RE.php │ │ ├── fr_RW.php │ │ ├── fr_SC.php │ │ ├── fr_SN.php │ │ ├── fr_SY.php │ │ ├── fr_TD.php │ │ ├── fr_TG.php │ │ ├── fr_TN.php │ │ ├── fr_VU.php │ │ ├── fr_WF.php │ │ ├── fr_YT.php │ │ ├── fur.php │ │ ├── fur_IT.php │ │ ├── fy.php │ │ ├── fy_DE.php │ │ ├── fy_NL.php │ │ ├── ga.php │ │ ├── ga_IE.php │ │ ├── gd.php │ │ ├── gd_GB.php │ │ ├── gez.php │ │ ├── gez_ER.php │ │ ├── gez_ET.php │ │ ├── gl.php │ │ ├── gl_ES.php │ │ ├── gom.php │ │ ├── gom_Latn.php │ │ ├── gsw.php │ │ ├── gsw_CH.php │ │ ├── gsw_FR.php │ │ ├── gsw_LI.php │ │ ├── gu.php │ │ ├── gu_IN.php │ │ ├── guz.php │ │ ├── gv.php │ │ ├── gv_GB.php │ │ ├── ha.php │ │ ├── ha_GH.php │ │ ├── ha_NE.php │ │ ├── ha_NG.php │ │ ├── hak.php │ │ ├── hak_TW.php │ │ ├── haw.php │ │ ├── he.php │ │ ├── he_IL.php │ │ ├── hi.php │ │ ├── hi_IN.php │ │ ├── hif.php │ │ ├── hif_FJ.php │ │ ├── hne.php │ │ ├── hne_IN.php │ │ ├── hr.php │ │ ├── hr_BA.php │ │ ├── hr_HR.php │ │ ├── hsb.php │ │ ├── hsb_DE.php │ │ ├── ht.php │ │ ├── ht_HT.php │ │ ├── hu.php │ │ ├── hu_HU.php │ │ ├── hy.php │ │ ├── hy_AM.php │ │ ├── i18n.php │ │ ├── ia.php │ │ ├── ia_FR.php │ │ ├── id.php │ │ ├── id_ID.php │ │ ├── ig.php │ │ ├── ig_NG.php │ │ ├── ii.php │ │ ├── ik.php │ │ ├── ik_CA.php │ │ ├── in.php │ │ ├── is.php │ │ ├── is_IS.php │ │ ├── it.php │ │ ├── it_CH.php │ │ ├── it_IT.php │ │ ├── it_SM.php │ │ ├── it_VA.php │ │ ├── iu.php │ │ ├── iu_CA.php │ │ ├── iw.php │ │ ├── ja.php │ │ ├── ja_JP.php │ │ ├── jgo.php │ │ ├── jmc.php │ │ ├── jv.php │ │ ├── ka.php │ │ ├── ka_GE.php │ │ ├── kab.php │ │ ├── kab_DZ.php │ │ ├── kam.php │ │ ├── kde.php │ │ ├── kea.php │ │ ├── khq.php │ │ ├── ki.php │ │ ├── kk.php │ │ ├── kk_KZ.php │ │ ├── kkj.php │ │ ├── kl.php │ │ ├── kl_GL.php │ │ ├── kln.php │ │ ├── km.php │ │ ├── km_KH.php │ │ ├── kn.php │ │ ├── kn_IN.php │ │ ├── ko.php │ │ ├── ko_KP.php │ │ ├── ko_KR.php │ │ ├── kok.php │ │ ├── kok_IN.php │ │ ├── ks.php │ │ ├── ks_IN.php │ │ ├── ks_IN@devanagari.php │ │ ├── ksb.php │ │ ├── ksf.php │ │ ├── ksh.php │ │ ├── ku.php │ │ ├── ku_TR.php │ │ ├── kw.php │ │ ├── kw_GB.php │ │ ├── ky.php │ │ ├── ky_KG.php │ │ ├── lag.php │ │ ├── lb.php │ │ ├── lb_LU.php │ │ ├── lg.php │ │ ├── lg_UG.php │ │ ├── li.php │ │ ├── li_NL.php │ │ ├── lij.php │ │ ├── lij_IT.php │ │ ├── lkt.php │ │ ├── ln.php │ │ ├── ln_AO.php │ │ ├── ln_CD.php │ │ ├── ln_CF.php │ │ ├── ln_CG.php │ │ ├── lo.php │ │ ├── lo_LA.php │ │ ├── lrc.php │ │ ├── lrc_IQ.php │ │ ├── lt.php │ │ ├── lt_LT.php │ │ ├── lu.php │ │ ├── luo.php │ │ ├── luy.php │ │ ├── lv.php │ │ ├── lv_LV.php │ │ ├── lzh.php │ │ ├── lzh_TW.php │ │ ├── mag.php │ │ ├── mag_IN.php │ │ ├── mai.php │ │ ├── mai_IN.php │ │ ├── mas.php │ │ ├── mas_TZ.php │ │ ├── mer.php │ │ ├── mfe.php │ │ ├── mfe_MU.php │ │ ├── mg.php │ │ ├── mg_MG.php │ │ ├── mgh.php │ │ ├── mgo.php │ │ ├── mhr.php │ │ ├── mhr_RU.php │ │ ├── mi.php │ │ ├── mi_NZ.php │ │ ├── miq.php │ │ ├── miq_NI.php │ │ ├── mjw.php │ │ ├── mjw_IN.php │ │ ├── mk.php │ │ ├── mk_MK.php │ │ ├── ml.php │ │ ├── ml_IN.php │ │ ├── mn.php │ │ ├── mn_MN.php │ │ ├── mni.php │ │ ├── mni_IN.php │ │ ├── mo.php │ │ ├── mr.php │ │ ├── mr_IN.php │ │ ├── ms.php │ │ ├── ms_BN.php │ │ ├── ms_MY.php │ │ ├── ms_SG.php │ │ ├── mt.php │ │ ├── mt_MT.php │ │ ├── mua.php │ │ ├── my.php │ │ ├── my_MM.php │ │ ├── mzn.php │ │ ├── nan.php │ │ ├── nan_TW.php │ │ ├── nan_TW@latin.php │ │ ├── naq.php │ │ ├── nb.php │ │ ├── nb_NO.php │ │ ├── nb_SJ.php │ │ ├── nd.php │ │ ├── nds.php │ │ ├── nds_DE.php │ │ ├── nds_NL.php │ │ ├── ne.php │ │ ├── ne_IN.php │ │ ├── ne_NP.php │ │ ├── nhn.php │ │ ├── nhn_MX.php │ │ ├── niu.php │ │ ├── niu_NU.php │ │ ├── nl.php │ │ ├── nl_AW.php │ │ ├── nl_BE.php │ │ ├── nl_BQ.php │ │ ├── nl_CW.php │ │ ├── nl_NL.php │ │ ├── nl_SR.php │ │ ├── nl_SX.php │ │ ├── nmg.php │ │ ├── nn.php │ │ ├── nn_NO.php │ │ ├── nnh.php │ │ ├── no.php │ │ ├── nr.php │ │ ├── nr_ZA.php │ │ ├── nso.php │ │ ├── nso_ZA.php │ │ ├── nus.php │ │ ├── nyn.php │ │ ├── oc.php │ │ ├── oc_FR.php │ │ ├── om.php │ │ ├── om_ET.php │ │ ├── om_KE.php │ │ ├── or.php │ │ ├── or_IN.php │ │ ├── os.php │ │ ├── os_RU.php │ │ ├── pa.php │ │ ├── pa_Arab.php │ │ ├── pa_Guru.php │ │ ├── pa_IN.php │ │ ├── pa_PK.php │ │ ├── pap.php │ │ ├── pap_AW.php │ │ ├── pap_CW.php │ │ ├── pl.php │ │ ├── pl_PL.php │ │ ├── prg.php │ │ ├── ps.php │ │ ├── ps_AF.php │ │ ├── pt.php │ │ ├── pt_AO.php │ │ ├── pt_BR.php │ │ ├── pt_CH.php │ │ ├── pt_CV.php │ │ ├── pt_GQ.php │ │ ├── pt_GW.php │ │ ├── pt_LU.php │ │ ├── pt_MO.php │ │ ├── pt_MZ.php │ │ ├── pt_PT.php │ │ ├── pt_ST.php │ │ ├── pt_TL.php │ │ ├── qu.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── quz.php │ │ ├── quz_PE.php │ │ ├── raj.php │ │ ├── raj_IN.php │ │ ├── rm.php │ │ ├── rn.php │ │ ├── ro.php │ │ ├── ro_MD.php │ │ ├── ro_RO.php │ │ ├── rof.php │ │ ├── ru.php │ │ ├── ru_BY.php │ │ ├── ru_KG.php │ │ ├── ru_KZ.php │ │ ├── ru_MD.php │ │ ├── ru_RU.php │ │ ├── ru_UA.php │ │ ├── rw.php │ │ ├── rw_RW.php │ │ ├── rwk.php │ │ ├── sa.php │ │ ├── sa_IN.php │ │ ├── sah.php │ │ ├── sah_RU.php │ │ ├── saq.php │ │ ├── sat.php │ │ ├── sat_IN.php │ │ ├── sbp.php │ │ ├── sc.php │ │ ├── sc_IT.php │ │ ├── sd.php │ │ ├── sd_IN.php │ │ ├── sd_IN@devanagari.php │ │ ├── se.php │ │ ├── se_FI.php │ │ ├── se_NO.php │ │ ├── se_SE.php │ │ ├── seh.php │ │ ├── ses.php │ │ ├── sg.php │ │ ├── sgs.php │ │ ├── sgs_LT.php │ │ ├── sh.php │ │ ├── shi.php │ │ ├── shi_Latn.php │ │ ├── shi_Tfng.php │ │ ├── shn.php │ │ ├── shn_MM.php │ │ ├── shs.php │ │ ├── shs_CA.php │ │ ├── si.php │ │ ├── si_LK.php │ │ ├── sid.php │ │ ├── sid_ET.php │ │ ├── sk.php │ │ ├── sk_SK.php │ │ ├── sl.php │ │ ├── sl_SI.php │ │ ├── sm.php │ │ ├── sm_WS.php │ │ ├── smn.php │ │ ├── sn.php │ │ ├── so.php │ │ ├── so_DJ.php │ │ ├── so_ET.php │ │ ├── so_KE.php │ │ ├── so_SO.php │ │ ├── sq.php │ │ ├── sq_AL.php │ │ ├── sq_MK.php │ │ ├── sq_XK.php │ │ ├── sr.php │ │ ├── sr_Cyrl.php │ │ ├── sr_Cyrl_BA.php │ │ ├── sr_Cyrl_ME.php │ │ ├── sr_Cyrl_XK.php │ │ ├── sr_Latn.php │ │ ├── sr_Latn_BA.php │ │ ├── sr_Latn_ME.php │ │ ├── sr_Latn_XK.php │ │ ├── sr_ME.php │ │ ├── sr_RS.php │ │ ├── sr_RS@latin.php │ │ ├── ss.php │ │ ├── ss_ZA.php │ │ ├── st.php │ │ ├── st_ZA.php │ │ ├── sv.php │ │ ├── sv_AX.php │ │ ├── sv_FI.php │ │ ├── sv_SE.php │ │ ├── sw.php │ │ ├── sw_CD.php │ │ ├── sw_KE.php │ │ ├── sw_TZ.php │ │ ├── sw_UG.php │ │ ├── szl.php │ │ ├── szl_PL.php │ │ ├── ta.php │ │ ├── ta_IN.php │ │ ├── ta_LK.php │ │ ├── ta_MY.php │ │ ├── ta_SG.php │ │ ├── tcy.php │ │ ├── tcy_IN.php │ │ ├── te.php │ │ ├── te_IN.php │ │ ├── teo.php │ │ ├── teo_KE.php │ │ ├── tet.php │ │ ├── tg.php │ │ ├── tg_TJ.php │ │ ├── th.php │ │ ├── th_TH.php │ │ ├── the.php │ │ ├── the_NP.php │ │ ├── ti.php │ │ ├── ti_ER.php │ │ ├── ti_ET.php │ │ ├── tig.php │ │ ├── tig_ER.php │ │ ├── tk.php │ │ ├── tk_TM.php │ │ ├── tl.php │ │ ├── tl_PH.php │ │ ├── tlh.php │ │ ├── tn.php │ │ ├── tn_ZA.php │ │ ├── to.php │ │ ├── to_TO.php │ │ ├── tpi.php │ │ ├── tpi_PG.php │ │ ├── tr.php │ │ ├── tr_CY.php │ │ ├── tr_TR.php │ │ ├── ts.php │ │ ├── ts_ZA.php │ │ ├── tt.php │ │ ├── tt_RU.php │ │ ├── tt_RU@iqtelif.php │ │ ├── twq.php │ │ ├── tzl.php │ │ ├── tzm.php │ │ ├── tzm_Latn.php │ │ ├── ug.php │ │ ├── ug_CN.php │ │ ├── uk.php │ │ ├── uk_UA.php │ │ ├── unm.php │ │ ├── unm_US.php │ │ ├── ur.php │ │ ├── ur_IN.php │ │ ├── ur_PK.php │ │ ├── uz.php │ │ ├── uz_Arab.php │ │ ├── uz_Cyrl.php │ │ ├── uz_Latn.php │ │ ├── uz_UZ.php │ │ ├── uz_UZ@cyrillic.php │ │ ├── vai.php │ │ ├── vai_Latn.php │ │ ├── vai_Vaii.php │ │ ├── ve.php │ │ ├── ve_ZA.php │ │ ├── vi.php │ │ ├── vi_VN.php │ │ ├── vo.php │ │ ├── vun.php │ │ ├── wa.php │ │ ├── wa_BE.php │ │ ├── wae.php │ │ ├── wae_CH.php │ │ ├── wal.php │ │ ├── wal_ET.php │ │ ├── wo.php │ │ ├── wo_SN.php │ │ ├── xh.php │ │ ├── xh_ZA.php │ │ ├── xog.php │ │ ├── yav.php │ │ ├── yi.php │ │ ├── yi_US.php │ │ ├── yo.php │ │ ├── yo_BJ.php │ │ ├── yo_NG.php │ │ ├── yue.php │ │ ├── yue_HK.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── yuw.php │ │ ├── yuw_PG.php │ │ ├── zgh.php │ │ ├── zh.php │ │ ├── zh_CN.php │ │ ├── zh_HK.php │ │ ├── zh_Hans.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.php │ │ ├── zh_Hant_TW.php │ │ ├── zh_MO.php │ │ ├── zh_SG.php │ │ ├── zh_TW.php │ │ ├── zh_YUE.php │ │ ├── zu.php │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel │ │ └── ServiceProvider.php │ │ ├── List │ │ ├── languages.php │ │ └── regions.php │ │ ├── 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 │ │ ├── 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 │ └── symfony │ ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── 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 │ ├── translation-contracts │ ├── .gitignore │ ├── 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 │ ├── Command │ ├── TranslationPullCommand.php │ ├── TranslationPushCommand.php │ ├── TranslationTrait.php │ └── XliffLintCommand.php │ ├── DataCollector │ └── TranslationDataCollector.php │ ├── DataCollectorTranslator.php │ ├── DependencyInjection │ ├── TranslationDumperPass.php │ ├── TranslationExtractorPass.php │ ├── TranslatorPass.php │ └── TranslatorPathsPass.php │ ├── Dumper │ ├── CsvFileDumper.php │ ├── DumperInterface.php │ ├── FileDumper.php │ ├── IcuResFileDumper.php │ ├── IniFileDumper.php │ ├── JsonFileDumper.php │ ├── MoFileDumper.php │ ├── PhpFileDumper.php │ ├── PoFileDumper.php │ ├── QtFileDumper.php │ ├── XliffFileDumper.php │ └── YamlFileDumper.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── IncompleteDsnException.php │ ├── InvalidArgumentException.php │ ├── InvalidResourceException.php │ ├── LogicException.php │ ├── MissingRequiredOptionException.php │ ├── NotFoundResourceException.php │ ├── ProviderException.php │ ├── ProviderExceptionInterface.php │ ├── RuntimeException.php │ └── UnsupportedSchemeException.php │ ├── Extractor │ ├── AbstractFileExtractor.php │ ├── ChainExtractor.php │ ├── ExtractorInterface.php │ ├── PhpExtractor.php │ └── PhpStringTokenParser.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 │ ├── 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-strict.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 ├── 97 Carbon ├── addition_subtraction.php ├── chaining.php ├── comparisons.php ├── composer.json ├── composer.lock ├── constants.php ├── difference.php ├── format.php ├── getters.php ├── instantiation.php ├── setters.php └── vendor │ ├── autoload.php │ ├── bin │ └── carbon │ ├── 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 │ ├── nesbot │ └── carbon │ │ ├── LICENSE │ │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ │ ├── composer.json │ │ ├── extension.neon │ │ ├── lazy │ │ └── Carbon │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ │ ├── readme.md │ │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.php │ │ ├── Exceptions │ │ ├── BadComparisonUnitException.php │ │ ├── BadFluentConstructorException.php │ │ ├── BadFluentSetterException.php │ │ ├── BadMethodCallException.php │ │ ├── EndLessPeriodException.php │ │ ├── Exception.php │ │ ├── ImmutableException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCastException.php │ │ ├── InvalidDateException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidIntervalException.php │ │ ├── InvalidPeriodDateException.php │ │ ├── InvalidPeriodParameterException.php │ │ ├── InvalidTimeZoneException.php │ │ ├── InvalidTypeException.php │ │ ├── NotACarbonClassException.php │ │ ├── NotAPeriodException.php │ │ ├── NotLocaleAwareException.php │ │ ├── OutOfRangeException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── UnitException.php │ │ ├── UnitNotConfiguredException.php │ │ ├── UnknownGetterException.php │ │ ├── UnknownMethodException.php │ │ ├── UnknownSetterException.php │ │ ├── UnknownUnitException.php │ │ └── UnreachableException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang │ │ ├── aa.php │ │ ├── aa_DJ.php │ │ ├── aa_ER.php │ │ ├── aa_ER@saaho.php │ │ ├── aa_ET.php │ │ ├── af.php │ │ ├── af_NA.php │ │ ├── af_ZA.php │ │ ├── agq.php │ │ ├── agr.php │ │ ├── agr_PE.php │ │ ├── ak.php │ │ ├── ak_GH.php │ │ ├── am.php │ │ ├── am_ET.php │ │ ├── an.php │ │ ├── an_ES.php │ │ ├── anp.php │ │ ├── anp_IN.php │ │ ├── ar.php │ │ ├── ar_AE.php │ │ ├── ar_BH.php │ │ ├── ar_DJ.php │ │ ├── ar_DZ.php │ │ ├── ar_EG.php │ │ ├── ar_EH.php │ │ ├── ar_ER.php │ │ ├── ar_IL.php │ │ ├── ar_IN.php │ │ ├── ar_IQ.php │ │ ├── ar_JO.php │ │ ├── ar_KM.php │ │ ├── ar_KW.php │ │ ├── ar_LB.php │ │ ├── ar_LY.php │ │ ├── ar_MA.php │ │ ├── ar_MR.php │ │ ├── ar_OM.php │ │ ├── ar_PS.php │ │ ├── ar_QA.php │ │ ├── ar_SA.php │ │ ├── ar_SD.php │ │ ├── ar_SO.php │ │ ├── ar_SS.php │ │ ├── ar_SY.php │ │ ├── ar_Shakl.php │ │ ├── ar_TD.php │ │ ├── ar_TN.php │ │ ├── ar_YE.php │ │ ├── as.php │ │ ├── as_IN.php │ │ ├── asa.php │ │ ├── ast.php │ │ ├── ast_ES.php │ │ ├── ayc.php │ │ ├── ayc_PE.php │ │ ├── az.php │ │ ├── az_AZ.php │ │ ├── az_Cyrl.php │ │ ├── az_IR.php │ │ ├── az_Latn.php │ │ ├── bas.php │ │ ├── be.php │ │ ├── be_BY.php │ │ ├── be_BY@latin.php │ │ ├── bem.php │ │ ├── bem_ZM.php │ │ ├── ber.php │ │ ├── ber_DZ.php │ │ ├── ber_MA.php │ │ ├── bez.php │ │ ├── bg.php │ │ ├── bg_BG.php │ │ ├── bhb.php │ │ ├── bhb_IN.php │ │ ├── bho.php │ │ ├── bho_IN.php │ │ ├── bi.php │ │ ├── bi_VU.php │ │ ├── bm.php │ │ ├── bn.php │ │ ├── bn_BD.php │ │ ├── bn_IN.php │ │ ├── bo.php │ │ ├── bo_CN.php │ │ ├── bo_IN.php │ │ ├── br.php │ │ ├── br_FR.php │ │ ├── brx.php │ │ ├── brx_IN.php │ │ ├── bs.php │ │ ├── bs_BA.php │ │ ├── bs_Cyrl.php │ │ ├── bs_Latn.php │ │ ├── byn.php │ │ ├── byn_ER.php │ │ ├── ca.php │ │ ├── ca_AD.php │ │ ├── ca_ES.php │ │ ├── ca_ES_Valencia.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── ccp.php │ │ ├── ccp_IN.php │ │ ├── ce.php │ │ ├── ce_RU.php │ │ ├── cgg.php │ │ ├── chr.php │ │ ├── chr_US.php │ │ ├── ckb.php │ │ ├── cmn.php │ │ ├── cmn_TW.php │ │ ├── crh.php │ │ ├── crh_UA.php │ │ ├── cs.php │ │ ├── cs_CZ.php │ │ ├── csb.php │ │ ├── csb_PL.php │ │ ├── cu.php │ │ ├── cv.php │ │ ├── cv_RU.php │ │ ├── cy.php │ │ ├── cy_GB.php │ │ ├── da.php │ │ ├── da_DK.php │ │ ├── da_GL.php │ │ ├── dav.php │ │ ├── de.php │ │ ├── de_AT.php │ │ ├── de_BE.php │ │ ├── de_CH.php │ │ ├── de_DE.php │ │ ├── de_IT.php │ │ ├── de_LI.php │ │ ├── de_LU.php │ │ ├── dje.php │ │ ├── doi.php │ │ ├── doi_IN.php │ │ ├── dsb.php │ │ ├── dsb_DE.php │ │ ├── dua.php │ │ ├── dv.php │ │ ├── dv_MV.php │ │ ├── dyo.php │ │ ├── dz.php │ │ ├── dz_BT.php │ │ ├── ebu.php │ │ ├── ee.php │ │ ├── ee_TG.php │ │ ├── el.php │ │ ├── el_CY.php │ │ ├── el_GR.php │ │ ├── en.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── en_AG.php │ │ ├── en_AI.php │ │ ├── en_AS.php │ │ ├── en_AT.php │ │ ├── en_AU.php │ │ ├── en_BB.php │ │ ├── en_BE.php │ │ ├── en_BI.php │ │ ├── en_BM.php │ │ ├── en_BS.php │ │ ├── en_BW.php │ │ ├── en_BZ.php │ │ ├── en_CA.php │ │ ├── en_CC.php │ │ ├── en_CH.php │ │ ├── en_CK.php │ │ ├── en_CM.php │ │ ├── en_CX.php │ │ ├── en_CY.php │ │ ├── en_DE.php │ │ ├── en_DG.php │ │ ├── en_DK.php │ │ ├── en_DM.php │ │ ├── en_ER.php │ │ ├── en_FI.php │ │ ├── en_FJ.php │ │ ├── en_FK.php │ │ ├── en_FM.php │ │ ├── en_GB.php │ │ ├── en_GD.php │ │ ├── en_GG.php │ │ ├── en_GH.php │ │ ├── en_GI.php │ │ ├── en_GM.php │ │ ├── en_GU.php │ │ ├── en_GY.php │ │ ├── en_HK.php │ │ ├── en_IE.php │ │ ├── en_IL.php │ │ ├── en_IM.php │ │ ├── en_IN.php │ │ ├── en_IO.php │ │ ├── en_ISO.php │ │ ├── en_JE.php │ │ ├── en_JM.php │ │ ├── en_KE.php │ │ ├── en_KI.php │ │ ├── en_KN.php │ │ ├── en_KY.php │ │ ├── en_LC.php │ │ ├── en_LR.php │ │ ├── en_LS.php │ │ ├── en_MG.php │ │ ├── en_MH.php │ │ ├── en_MO.php │ │ ├── en_MP.php │ │ ├── en_MS.php │ │ ├── en_MT.php │ │ ├── en_MU.php │ │ ├── en_MW.php │ │ ├── en_MY.php │ │ ├── en_NA.php │ │ ├── en_NF.php │ │ ├── en_NG.php │ │ ├── en_NL.php │ │ ├── en_NR.php │ │ ├── en_NU.php │ │ ├── en_NZ.php │ │ ├── en_PG.php │ │ ├── en_PH.php │ │ ├── en_PK.php │ │ ├── en_PN.php │ │ ├── en_PR.php │ │ ├── en_PW.php │ │ ├── en_RW.php │ │ ├── en_SB.php │ │ ├── en_SC.php │ │ ├── en_SD.php │ │ ├── en_SE.php │ │ ├── en_SG.php │ │ ├── en_SH.php │ │ ├── en_SI.php │ │ ├── en_SL.php │ │ ├── en_SS.php │ │ ├── en_SX.php │ │ ├── en_SZ.php │ │ ├── en_TC.php │ │ ├── en_TK.php │ │ ├── en_TO.php │ │ ├── en_TT.php │ │ ├── en_TV.php │ │ ├── en_TZ.php │ │ ├── en_UG.php │ │ ├── en_UM.php │ │ ├── en_US.php │ │ ├── en_US_Posix.php │ │ ├── en_VC.php │ │ ├── en_VG.php │ │ ├── en_VI.php │ │ ├── en_VU.php │ │ ├── en_WS.php │ │ ├── en_ZA.php │ │ ├── en_ZM.php │ │ ├── en_ZW.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── es_419.php │ │ ├── es_AR.php │ │ ├── es_BO.php │ │ ├── es_BR.php │ │ ├── es_BZ.php │ │ ├── es_CL.php │ │ ├── es_CO.php │ │ ├── es_CR.php │ │ ├── es_CU.php │ │ ├── es_DO.php │ │ ├── es_EA.php │ │ ├── es_EC.php │ │ ├── es_ES.php │ │ ├── es_GQ.php │ │ ├── es_GT.php │ │ ├── es_HN.php │ │ ├── es_IC.php │ │ ├── es_MX.php │ │ ├── es_NI.php │ │ ├── es_PA.php │ │ ├── es_PE.php │ │ ├── es_PH.php │ │ ├── es_PR.php │ │ ├── es_PY.php │ │ ├── es_SV.php │ │ ├── es_US.php │ │ ├── es_UY.php │ │ ├── es_VE.php │ │ ├── et.php │ │ ├── et_EE.php │ │ ├── eu.php │ │ ├── eu_ES.php │ │ ├── ewo.php │ │ ├── fa.php │ │ ├── fa_AF.php │ │ ├── fa_IR.php │ │ ├── ff.php │ │ ├── ff_CM.php │ │ ├── ff_GN.php │ │ ├── ff_MR.php │ │ ├── ff_SN.php │ │ ├── fi.php │ │ ├── fi_FI.php │ │ ├── fil.php │ │ ├── fil_PH.php │ │ ├── fo.php │ │ ├── fo_DK.php │ │ ├── fo_FO.php │ │ ├── fr.php │ │ ├── fr_BE.php │ │ ├── fr_BF.php │ │ ├── fr_BI.php │ │ ├── fr_BJ.php │ │ ├── fr_BL.php │ │ ├── fr_CA.php │ │ ├── fr_CD.php │ │ ├── fr_CF.php │ │ ├── fr_CG.php │ │ ├── fr_CH.php │ │ ├── fr_CI.php │ │ ├── fr_CM.php │ │ ├── fr_DJ.php │ │ ├── fr_DZ.php │ │ ├── fr_FR.php │ │ ├── fr_GA.php │ │ ├── fr_GF.php │ │ ├── fr_GN.php │ │ ├── fr_GP.php │ │ ├── fr_GQ.php │ │ ├── fr_HT.php │ │ ├── fr_KM.php │ │ ├── fr_LU.php │ │ ├── fr_MA.php │ │ ├── fr_MC.php │ │ ├── fr_MF.php │ │ ├── fr_MG.php │ │ ├── fr_ML.php │ │ ├── fr_MQ.php │ │ ├── fr_MR.php │ │ ├── fr_MU.php │ │ ├── fr_NC.php │ │ ├── fr_NE.php │ │ ├── fr_PF.php │ │ ├── fr_PM.php │ │ ├── fr_RE.php │ │ ├── fr_RW.php │ │ ├── fr_SC.php │ │ ├── fr_SN.php │ │ ├── fr_SY.php │ │ ├── fr_TD.php │ │ ├── fr_TG.php │ │ ├── fr_TN.php │ │ ├── fr_VU.php │ │ ├── fr_WF.php │ │ ├── fr_YT.php │ │ ├── fur.php │ │ ├── fur_IT.php │ │ ├── fy.php │ │ ├── fy_DE.php │ │ ├── fy_NL.php │ │ ├── ga.php │ │ ├── ga_IE.php │ │ ├── gd.php │ │ ├── gd_GB.php │ │ ├── gez.php │ │ ├── gez_ER.php │ │ ├── gez_ET.php │ │ ├── gl.php │ │ ├── gl_ES.php │ │ ├── gom.php │ │ ├── gom_Latn.php │ │ ├── gsw.php │ │ ├── gsw_CH.php │ │ ├── gsw_FR.php │ │ ├── gsw_LI.php │ │ ├── gu.php │ │ ├── gu_IN.php │ │ ├── guz.php │ │ ├── gv.php │ │ ├── gv_GB.php │ │ ├── ha.php │ │ ├── ha_GH.php │ │ ├── ha_NE.php │ │ ├── ha_NG.php │ │ ├── hak.php │ │ ├── hak_TW.php │ │ ├── haw.php │ │ ├── he.php │ │ ├── he_IL.php │ │ ├── hi.php │ │ ├── hi_IN.php │ │ ├── hif.php │ │ ├── hif_FJ.php │ │ ├── hne.php │ │ ├── hne_IN.php │ │ ├── hr.php │ │ ├── hr_BA.php │ │ ├── hr_HR.php │ │ ├── hsb.php │ │ ├── hsb_DE.php │ │ ├── ht.php │ │ ├── ht_HT.php │ │ ├── hu.php │ │ ├── hu_HU.php │ │ ├── hy.php │ │ ├── hy_AM.php │ │ ├── i18n.php │ │ ├── ia.php │ │ ├── ia_FR.php │ │ ├── id.php │ │ ├── id_ID.php │ │ ├── ig.php │ │ ├── ig_NG.php │ │ ├── ii.php │ │ ├── ik.php │ │ ├── ik_CA.php │ │ ├── in.php │ │ ├── is.php │ │ ├── is_IS.php │ │ ├── it.php │ │ ├── it_CH.php │ │ ├── it_IT.php │ │ ├── it_SM.php │ │ ├── it_VA.php │ │ ├── iu.php │ │ ├── iu_CA.php │ │ ├── iw.php │ │ ├── ja.php │ │ ├── ja_JP.php │ │ ├── jgo.php │ │ ├── jmc.php │ │ ├── jv.php │ │ ├── ka.php │ │ ├── ka_GE.php │ │ ├── kab.php │ │ ├── kab_DZ.php │ │ ├── kam.php │ │ ├── kde.php │ │ ├── kea.php │ │ ├── khq.php │ │ ├── ki.php │ │ ├── kk.php │ │ ├── kk_KZ.php │ │ ├── kkj.php │ │ ├── kl.php │ │ ├── kl_GL.php │ │ ├── kln.php │ │ ├── km.php │ │ ├── km_KH.php │ │ ├── kn.php │ │ ├── kn_IN.php │ │ ├── ko.php │ │ ├── ko_KP.php │ │ ├── ko_KR.php │ │ ├── kok.php │ │ ├── kok_IN.php │ │ ├── ks.php │ │ ├── ks_IN.php │ │ ├── ks_IN@devanagari.php │ │ ├── ksb.php │ │ ├── ksf.php │ │ ├── ksh.php │ │ ├── ku.php │ │ ├── ku_TR.php │ │ ├── kw.php │ │ ├── kw_GB.php │ │ ├── ky.php │ │ ├── ky_KG.php │ │ ├── lag.php │ │ ├── lb.php │ │ ├── lb_LU.php │ │ ├── lg.php │ │ ├── lg_UG.php │ │ ├── li.php │ │ ├── li_NL.php │ │ ├── lij.php │ │ ├── lij_IT.php │ │ ├── lkt.php │ │ ├── ln.php │ │ ├── ln_AO.php │ │ ├── ln_CD.php │ │ ├── ln_CF.php │ │ ├── ln_CG.php │ │ ├── lo.php │ │ ├── lo_LA.php │ │ ├── lrc.php │ │ ├── lrc_IQ.php │ │ ├── lt.php │ │ ├── lt_LT.php │ │ ├── lu.php │ │ ├── luo.php │ │ ├── luy.php │ │ ├── lv.php │ │ ├── lv_LV.php │ │ ├── lzh.php │ │ ├── lzh_TW.php │ │ ├── mag.php │ │ ├── mag_IN.php │ │ ├── mai.php │ │ ├── mai_IN.php │ │ ├── mas.php │ │ ├── mas_TZ.php │ │ ├── mer.php │ │ ├── mfe.php │ │ ├── mfe_MU.php │ │ ├── mg.php │ │ ├── mg_MG.php │ │ ├── mgh.php │ │ ├── mgo.php │ │ ├── mhr.php │ │ ├── mhr_RU.php │ │ ├── mi.php │ │ ├── mi_NZ.php │ │ ├── miq.php │ │ ├── miq_NI.php │ │ ├── mjw.php │ │ ├── mjw_IN.php │ │ ├── mk.php │ │ ├── mk_MK.php │ │ ├── ml.php │ │ ├── ml_IN.php │ │ ├── mn.php │ │ ├── mn_MN.php │ │ ├── mni.php │ │ ├── mni_IN.php │ │ ├── mo.php │ │ ├── mr.php │ │ ├── mr_IN.php │ │ ├── ms.php │ │ ├── ms_BN.php │ │ ├── ms_MY.php │ │ ├── ms_SG.php │ │ ├── mt.php │ │ ├── mt_MT.php │ │ ├── mua.php │ │ ├── my.php │ │ ├── my_MM.php │ │ ├── mzn.php │ │ ├── nan.php │ │ ├── nan_TW.php │ │ ├── nan_TW@latin.php │ │ ├── naq.php │ │ ├── nb.php │ │ ├── nb_NO.php │ │ ├── nb_SJ.php │ │ ├── nd.php │ │ ├── nds.php │ │ ├── nds_DE.php │ │ ├── nds_NL.php │ │ ├── ne.php │ │ ├── ne_IN.php │ │ ├── ne_NP.php │ │ ├── nhn.php │ │ ├── nhn_MX.php │ │ ├── niu.php │ │ ├── niu_NU.php │ │ ├── nl.php │ │ ├── nl_AW.php │ │ ├── nl_BE.php │ │ ├── nl_BQ.php │ │ ├── nl_CW.php │ │ ├── nl_NL.php │ │ ├── nl_SR.php │ │ ├── nl_SX.php │ │ ├── nmg.php │ │ ├── nn.php │ │ ├── nn_NO.php │ │ ├── nnh.php │ │ ├── no.php │ │ ├── nr.php │ │ ├── nr_ZA.php │ │ ├── nso.php │ │ ├── nso_ZA.php │ │ ├── nus.php │ │ ├── nyn.php │ │ ├── oc.php │ │ ├── oc_FR.php │ │ ├── om.php │ │ ├── om_ET.php │ │ ├── om_KE.php │ │ ├── or.php │ │ ├── or_IN.php │ │ ├── os.php │ │ ├── os_RU.php │ │ ├── pa.php │ │ ├── pa_Arab.php │ │ ├── pa_Guru.php │ │ ├── pa_IN.php │ │ ├── pa_PK.php │ │ ├── pap.php │ │ ├── pap_AW.php │ │ ├── pap_CW.php │ │ ├── pl.php │ │ ├── pl_PL.php │ │ ├── prg.php │ │ ├── ps.php │ │ ├── ps_AF.php │ │ ├── pt.php │ │ ├── pt_AO.php │ │ ├── pt_BR.php │ │ ├── pt_CH.php │ │ ├── pt_CV.php │ │ ├── pt_GQ.php │ │ ├── pt_GW.php │ │ ├── pt_LU.php │ │ ├── pt_MO.php │ │ ├── pt_MZ.php │ │ ├── pt_PT.php │ │ ├── pt_ST.php │ │ ├── pt_TL.php │ │ ├── qu.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── quz.php │ │ ├── quz_PE.php │ │ ├── raj.php │ │ ├── raj_IN.php │ │ ├── rm.php │ │ ├── rn.php │ │ ├── ro.php │ │ ├── ro_MD.php │ │ ├── ro_RO.php │ │ ├── rof.php │ │ ├── ru.php │ │ ├── ru_BY.php │ │ ├── ru_KG.php │ │ ├── ru_KZ.php │ │ ├── ru_MD.php │ │ ├── ru_RU.php │ │ ├── ru_UA.php │ │ ├── rw.php │ │ ├── rw_RW.php │ │ ├── rwk.php │ │ ├── sa.php │ │ ├── sa_IN.php │ │ ├── sah.php │ │ ├── sah_RU.php │ │ ├── saq.php │ │ ├── sat.php │ │ ├── sat_IN.php │ │ ├── sbp.php │ │ ├── sc.php │ │ ├── sc_IT.php │ │ ├── sd.php │ │ ├── sd_IN.php │ │ ├── sd_IN@devanagari.php │ │ ├── se.php │ │ ├── se_FI.php │ │ ├── se_NO.php │ │ ├── se_SE.php │ │ ├── seh.php │ │ ├── ses.php │ │ ├── sg.php │ │ ├── sgs.php │ │ ├── sgs_LT.php │ │ ├── sh.php │ │ ├── shi.php │ │ ├── shi_Latn.php │ │ ├── shi_Tfng.php │ │ ├── shn.php │ │ ├── shn_MM.php │ │ ├── shs.php │ │ ├── shs_CA.php │ │ ├── si.php │ │ ├── si_LK.php │ │ ├── sid.php │ │ ├── sid_ET.php │ │ ├── sk.php │ │ ├── sk_SK.php │ │ ├── sl.php │ │ ├── sl_SI.php │ │ ├── sm.php │ │ ├── sm_WS.php │ │ ├── smn.php │ │ ├── sn.php │ │ ├── so.php │ │ ├── so_DJ.php │ │ ├── so_ET.php │ │ ├── so_KE.php │ │ ├── so_SO.php │ │ ├── sq.php │ │ ├── sq_AL.php │ │ ├── sq_MK.php │ │ ├── sq_XK.php │ │ ├── sr.php │ │ ├── sr_Cyrl.php │ │ ├── sr_Cyrl_BA.php │ │ ├── sr_Cyrl_ME.php │ │ ├── sr_Cyrl_XK.php │ │ ├── sr_Latn.php │ │ ├── sr_Latn_BA.php │ │ ├── sr_Latn_ME.php │ │ ├── sr_Latn_XK.php │ │ ├── sr_ME.php │ │ ├── sr_RS.php │ │ ├── sr_RS@latin.php │ │ ├── ss.php │ │ ├── ss_ZA.php │ │ ├── st.php │ │ ├── st_ZA.php │ │ ├── sv.php │ │ ├── sv_AX.php │ │ ├── sv_FI.php │ │ ├── sv_SE.php │ │ ├── sw.php │ │ ├── sw_CD.php │ │ ├── sw_KE.php │ │ ├── sw_TZ.php │ │ ├── sw_UG.php │ │ ├── szl.php │ │ ├── szl_PL.php │ │ ├── ta.php │ │ ├── ta_IN.php │ │ ├── ta_LK.php │ │ ├── ta_MY.php │ │ ├── ta_SG.php │ │ ├── tcy.php │ │ ├── tcy_IN.php │ │ ├── te.php │ │ ├── te_IN.php │ │ ├── teo.php │ │ ├── teo_KE.php │ │ ├── tet.php │ │ ├── tg.php │ │ ├── tg_TJ.php │ │ ├── th.php │ │ ├── th_TH.php │ │ ├── the.php │ │ ├── the_NP.php │ │ ├── ti.php │ │ ├── ti_ER.php │ │ ├── ti_ET.php │ │ ├── tig.php │ │ ├── tig_ER.php │ │ ├── tk.php │ │ ├── tk_TM.php │ │ ├── tl.php │ │ ├── tl_PH.php │ │ ├── tlh.php │ │ ├── tn.php │ │ ├── tn_ZA.php │ │ ├── to.php │ │ ├── to_TO.php │ │ ├── tpi.php │ │ ├── tpi_PG.php │ │ ├── tr.php │ │ ├── tr_CY.php │ │ ├── tr_TR.php │ │ ├── ts.php │ │ ├── ts_ZA.php │ │ ├── tt.php │ │ ├── tt_RU.php │ │ ├── tt_RU@iqtelif.php │ │ ├── twq.php │ │ ├── tzl.php │ │ ├── tzm.php │ │ ├── tzm_Latn.php │ │ ├── ug.php │ │ ├── ug_CN.php │ │ ├── uk.php │ │ ├── uk_UA.php │ │ ├── unm.php │ │ ├── unm_US.php │ │ ├── ur.php │ │ ├── ur_IN.php │ │ ├── ur_PK.php │ │ ├── uz.php │ │ ├── uz_Arab.php │ │ ├── uz_Cyrl.php │ │ ├── uz_Latn.php │ │ ├── uz_UZ.php │ │ ├── uz_UZ@cyrillic.php │ │ ├── vai.php │ │ ├── vai_Latn.php │ │ ├── vai_Vaii.php │ │ ├── ve.php │ │ ├── ve_ZA.php │ │ ├── vi.php │ │ ├── vi_VN.php │ │ ├── vo.php │ │ ├── vun.php │ │ ├── wa.php │ │ ├── wa_BE.php │ │ ├── wae.php │ │ ├── wae_CH.php │ │ ├── wal.php │ │ ├── wal_ET.php │ │ ├── wo.php │ │ ├── wo_SN.php │ │ ├── xh.php │ │ ├── xh_ZA.php │ │ ├── xog.php │ │ ├── yav.php │ │ ├── yi.php │ │ ├── yi_US.php │ │ ├── yo.php │ │ ├── yo_BJ.php │ │ ├── yo_NG.php │ │ ├── yue.php │ │ ├── yue_HK.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── yuw.php │ │ ├── yuw_PG.php │ │ ├── zgh.php │ │ ├── zh.php │ │ ├── zh_CN.php │ │ ├── zh_HK.php │ │ ├── zh_Hans.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.php │ │ ├── zh_Hant_TW.php │ │ ├── zh_MO.php │ │ ├── zh_SG.php │ │ ├── zh_TW.php │ │ ├── zh_YUE.php │ │ ├── zu.php │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel │ │ └── ServiceProvider.php │ │ ├── List │ │ ├── languages.php │ │ └── regions.php │ │ ├── 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 │ │ ├── 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 │ └── symfony │ ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── 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 │ ├── translation-contracts │ ├── .gitignore │ ├── 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 │ ├── Command │ ├── TranslationPullCommand.php │ ├── TranslationPushCommand.php │ ├── TranslationTrait.php │ └── XliffLintCommand.php │ ├── DataCollector │ └── TranslationDataCollector.php │ ├── DataCollectorTranslator.php │ ├── DependencyInjection │ ├── TranslationDumperPass.php │ ├── TranslationExtractorPass.php │ ├── TranslatorPass.php │ └── TranslatorPathsPass.php │ ├── Dumper │ ├── CsvFileDumper.php │ ├── DumperInterface.php │ ├── FileDumper.php │ ├── IcuResFileDumper.php │ ├── IniFileDumper.php │ ├── JsonFileDumper.php │ ├── MoFileDumper.php │ ├── PhpFileDumper.php │ ├── PoFileDumper.php │ ├── QtFileDumper.php │ ├── XliffFileDumper.php │ └── YamlFileDumper.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── IncompleteDsnException.php │ ├── InvalidArgumentException.php │ ├── InvalidResourceException.php │ ├── LogicException.php │ ├── MissingRequiredOptionException.php │ ├── NotFoundResourceException.php │ ├── ProviderException.php │ ├── ProviderExceptionInterface.php │ ├── RuntimeException.php │ └── UnsupportedSchemeException.php │ ├── Extractor │ ├── AbstractFileExtractor.php │ ├── ChainExtractor.php │ ├── ExtractorInterface.php │ ├── PhpExtractor.php │ └── PhpStringTokenParser.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 │ ├── 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-strict.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 ├── 98 Functions ├── ArrayFunctions.php ├── FilterVar.php ├── GetAndSetTest.php ├── InvokeTest.php ├── Overloading.php ├── PregMatch.php ├── StringFunctions.php └── ToStringTest.php ├── 99 Scope ├── GlobalKeyword.php ├── NonObjectOriented.php └── useKeyword.php ├── Animal.php ├── Car.php ├── Dog.php ├── GermanShepherd.php ├── Mammal.php └── Vehicle.php /.gitignore: -------------------------------------------------------------------------------- 1 | mysql/ 2 | .idea/ 3 | .DS_Store -------------------------------------------------------------------------------- /app/01 Basic Syntax.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Dino Cajic 4 | 5 | 6 | 9 | Hello there 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/100 JSON/JsonDecodeRequest.php: -------------------------------------------------------------------------------- 1 | " . $a++ . " " . $a . " " . ++$a . " " . $a . ""; -------------------------------------------------------------------------------- /app/20 String Operator.php: -------------------------------------------------------------------------------- 1 | $d * 2 ); 14 | // $c + $d > 24 15 | // 22 > 24 16 | // false 17 | // * 18 | // + 19 | // > 20 | 21 | var_dump( ($c + ($d * $c)) / $d ); -------------------------------------------------------------------------------- /app/38 Variable Functions.php: -------------------------------------------------------------------------------- 1 | bark() . "
"; 6 | echo $gs_dog->walk() . "
"; -------------------------------------------------------------------------------- /app/57 Scope Resolution Operator.php: -------------------------------------------------------------------------------- 1 | walk(); 8 | $gs_dog->bark(); 9 | 10 | var_dump( Car::HAS_TAIL_LIGHTS ); -------------------------------------------------------------------------------- /app/60 Abstract Classes/60 Abstract Class.php: -------------------------------------------------------------------------------- 1 | bark(); -------------------------------------------------------------------------------- /app/61 Interface/61 Interface.php: -------------------------------------------------------------------------------- 1 | bark(); 6 | $gs_dog->sleep(30); -------------------------------------------------------------------------------- /app/62 Traits/62 Traits.php: -------------------------------------------------------------------------------- 1 | check_oil_level(); 6 | $subaru->check_engine_oil_level(); 7 | -------------------------------------------------------------------------------- /app/62 Traits/Engine.php: -------------------------------------------------------------------------------- 1 | drive(); 9 | 10 | $harrison = new Driver( new Class(1999, "Lamborghini", "Diablo SV") extends Car {} ); 11 | $harrison->drive(); -------------------------------------------------------------------------------- /app/64 Anonymous Classes/Engine.php: -------------------------------------------------------------------------------- 1 | drive(); -------------------------------------------------------------------------------- /app/65 Final Keyword/Engine.php: -------------------------------------------------------------------------------- 1 | get_year_make_and_model() . " " . $lamborghini->getSecretCode(); 8 | -------------------------------------------------------------------------------- /app/67 Parent Constructor/Engine.php: -------------------------------------------------------------------------------- 1 | car = $car; 11 | } 12 | 13 | public function drive() { 14 | echo $this->car->turnOn(); 15 | echo $this->car->drive(); 16 | echo $this->car->turnOff(); 17 | } 18 | } -------------------------------------------------------------------------------- /app/69 Defining Namespaces/Engine.php: -------------------------------------------------------------------------------- 1 | process_upload(); -------------------------------------------------------------------------------- /app/83 MySQL Insert/AddUser.php: -------------------------------------------------------------------------------- 1 | "Dino", 8 | "last_name" => "Cajic", 9 | "email" => "dino@example.com" 10 | ]; 11 | 12 | $author = new Author; 13 | $author->insert($data); -------------------------------------------------------------------------------- /app/84 MySQL Prepared Statement/AddUser.php: -------------------------------------------------------------------------------- 1 | "Harrison", 8 | "last_name" => "Cajic", 9 | "email" => "harrison@example.com" 10 | ]; 11 | 12 | $author = new Author; 13 | $author->insert($data); -------------------------------------------------------------------------------- /app/86 MySQL Select/SelectAuthor.php: -------------------------------------------------------------------------------- 1 | select_all()); 8 | var_dump($author->select(1)); 9 | -------------------------------------------------------------------------------- /app/90 Controller/Controllers/HomeController.php: -------------------------------------------------------------------------------- 1 | index(); 14 | } 15 | } -------------------------------------------------------------------------------- /app/90 Controller/Views/home/index.php: -------------------------------------------------------------------------------- 1 | View All Authors | '; 9 | $result .= 'Create Author'; 10 | 11 | return $result; 12 | } 13 | } -------------------------------------------------------------------------------- /app/92 Sessions/add_item.php: -------------------------------------------------------------------------------- 1 | 11 | Item has been added to the cart 12 | Visit the cart 13 | -------------------------------------------------------------------------------- /app/92 Sessions/cart.php: -------------------------------------------------------------------------------- 1 | 6 | The $_SESSION has been destroyed for the user 7 | -------------------------------------------------------------------------------- /app/92 Sessions/empty_cart.php: -------------------------------------------------------------------------------- 1 | 11 | The $_SESSION['total'] has been removed 12 | -------------------------------------------------------------------------------- /app/93 Cookies/delete_cookie.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the 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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/vendor/nesbot/carbon/src/Carbon/Lang/ar_PS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES_Valencia.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/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/96 Dependencies Intro/vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /app/96 Dependencies Intro/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/96 Dependencies Intro/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/97 Carbon/chaining.php: -------------------------------------------------------------------------------- 1 | timezone("America/New_York") 9 | ->year(2005) 10 | ->month(6) 11 | ->day(20) 12 | ->hour(5) 13 | ->minute(20); 14 | 15 | var_dump($date); -------------------------------------------------------------------------------- /app/97 Carbon/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "nesbot/carbon": "^2.63" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /app/97 Carbon/format.php: -------------------------------------------------------------------------------- 1 | format("F d, Y h:i:s"); 9 | echo $date->toJSON(); -------------------------------------------------------------------------------- /app/97 Carbon/setters.php: -------------------------------------------------------------------------------- 1 | timezone = "America/New_York"; 9 | $date->year = 2005; 10 | $date->month = 6; 11 | $date->day = 20; 12 | $date->hour = 5; 13 | $date->minute = 20; 14 | 15 | // You can also prepend each property with set and pass the argument 16 | $date->setYear(2010); 17 | 18 | var_dump($date); -------------------------------------------------------------------------------- /app/97 Carbon/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | 7 | * 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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/vendor/nesbot/carbon/src/Carbon/Lang/ar_PS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return array_replace_recursive(require __DIR__.'/ar.php', [ 13 | ]); 14 | -------------------------------------------------------------------------------- /app/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES_Valencia.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * 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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/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/97 Carbon/vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /app/97 Carbon/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/97 Carbon/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/98 Functions/InvokeTest.php: -------------------------------------------------------------------------------- 1 | name; 9 | } 10 | } 11 | 12 | $test = new ToStringTest; 13 | echo $test; -------------------------------------------------------------------------------- /app/99 Scope/GlobalKeyword.php: -------------------------------------------------------------------------------- 1 |