├── composer.json ├── composer.lock ├── composer.phar ├── laravel6auth ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .styleci.yml ├── README.md ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ └── HomeController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2019_08_19_000000_create_failed_jobs_table.php │ └── seeds │ │ └── DatabaseSeeder.php ├── index.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── resources │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ ├── _variables.scss │ │ └── app.scss │ └── views │ │ ├── auth │ │ ├── login.blade.php │ │ ├── passwords │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ └── verify.blade.php │ │ ├── home.blade.php │ │ ├── layouts │ │ └── app.blade.php │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── webpack.mix.js └── vendor ├── autoload.php ├── bin ├── carbon └── carbon.bat ├── 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 ├── doctrine └── inflector │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ └── en │ │ └── index.rst │ ├── lib │ └── Doctrine │ │ └── Inflector │ │ ├── CachedWordInflector.php │ │ ├── GenericLanguageInflectorFactory.php │ │ ├── Inflector.php │ │ ├── InflectorFactory.php │ │ ├── Language.php │ │ ├── LanguageInflectorFactory.php │ │ ├── NoopWordInflector.php │ │ ├── Rules │ │ ├── English │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── French │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── NorwegianBokmal │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── Pattern.php │ │ ├── Patterns.php │ │ ├── Portuguese │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── Ruleset.php │ │ ├── Spanish │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── Substitution.php │ │ ├── Substitutions.php │ │ ├── Transformation.php │ │ ├── Transformations.php │ │ ├── Turkish │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ └── Word.php │ │ ├── RulesetInflector.php │ │ └── WordInflector.php │ └── phpstan.neon.dist ├── illuminate ├── collections │ ├── Arr.php │ ├── Collection.php │ ├── Enumerable.php │ ├── HigherOrderCollectionProxy.php │ ├── HigherOrderWhenProxy.php │ ├── LICENSE.md │ ├── LazyCollection.php │ ├── Traits │ │ └── EnumeratesValues.php │ ├── composer.json │ └── helpers.php ├── console │ ├── Application.php │ ├── BufferedConsoleOutput.php │ ├── Command.php │ ├── Concerns │ │ ├── CallsCommands.php │ │ ├── HasParameters.php │ │ └── InteractsWithIO.php │ ├── ConfirmableTrait.php │ ├── Events │ │ ├── ArtisanStarting.php │ │ ├── CommandFinished.php │ │ ├── CommandStarting.php │ │ ├── ScheduledTaskFailed.php │ │ ├── ScheduledTaskFinished.php │ │ ├── ScheduledTaskSkipped.php │ │ └── ScheduledTaskStarting.php │ ├── GeneratorCommand.php │ ├── LICENSE.md │ ├── OutputStyle.php │ ├── Parser.php │ ├── Scheduling │ │ ├── CacheAware.php │ │ ├── CacheEventMutex.php │ │ ├── CacheSchedulingMutex.php │ │ ├── CallbackEvent.php │ │ ├── CommandBuilder.php │ │ ├── Event.php │ │ ├── EventMutex.php │ │ ├── ManagesFrequencies.php │ │ ├── Schedule.php │ │ ├── ScheduleFinishCommand.php │ │ ├── ScheduleListCommand.php │ │ ├── ScheduleRunCommand.php │ │ ├── ScheduleTestCommand.php │ │ ├── ScheduleWorkCommand.php │ │ └── SchedulingMutex.php │ └── composer.json ├── contracts │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── Gate.php │ │ ├── Authenticatable.php │ │ ├── CanResetPassword.php │ │ ├── Factory.php │ │ ├── Guard.php │ │ ├── Middleware │ │ │ └── AuthenticatesRequests.php │ │ ├── MustVerifyEmail.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerFactory.php │ │ ├── StatefulGuard.php │ │ ├── SupportsBasicAuth.php │ │ └── UserProvider.php │ ├── Broadcasting │ │ ├── Broadcaster.php │ │ ├── Factory.php │ │ ├── ShouldBroadcast.php │ │ └── ShouldBroadcastNow.php │ ├── Bus │ │ ├── Dispatcher.php │ │ └── QueueingDispatcher.php │ ├── Cache │ │ ├── Factory.php │ │ ├── Lock.php │ │ ├── LockProvider.php │ │ ├── LockTimeoutException.php │ │ ├── Repository.php │ │ └── Store.php │ ├── Config │ │ └── Repository.php │ ├── Console │ │ ├── Application.php │ │ └── Kernel.php │ ├── Container │ │ ├── BindingResolutionException.php │ │ ├── Container.php │ │ └── ContextualBindingBuilder.php │ ├── Cookie │ │ ├── Factory.php │ │ └── QueueingFactory.php │ ├── Database │ │ ├── Eloquent │ │ │ ├── Castable.php │ │ │ ├── CastsAttributes.php │ │ │ ├── CastsInboundAttributes.php │ │ │ ├── DeviatesCastableAttributes.php │ │ │ └── SerializesCastableAttributes.php │ │ ├── Events │ │ │ └── MigrationEvent.php │ │ └── ModelIdentifier.php │ ├── Debug │ │ └── ExceptionHandler.php │ ├── Encryption │ │ ├── DecryptException.php │ │ ├── EncryptException.php │ │ └── Encrypter.php │ ├── Events │ │ └── Dispatcher.php │ ├── Filesystem │ │ ├── Cloud.php │ │ ├── Factory.php │ │ ├── FileExistsException.php │ │ ├── FileNotFoundException.php │ │ ├── Filesystem.php │ │ └── LockTimeoutException.php │ ├── Foundation │ │ ├── Application.php │ │ ├── CachesConfiguration.php │ │ └── CachesRoutes.php │ ├── Hashing │ │ └── Hasher.php │ ├── Http │ │ └── Kernel.php │ ├── LICENSE.md │ ├── Mail │ │ ├── Factory.php │ │ ├── MailQueue.php │ │ ├── Mailable.php │ │ └── Mailer.php │ ├── Notifications │ │ ├── Dispatcher.php │ │ └── Factory.php │ ├── Pagination │ │ ├── LengthAwarePaginator.php │ │ └── Paginator.php │ ├── Pipeline │ │ ├── Hub.php │ │ └── Pipeline.php │ ├── Queue │ │ ├── ClearableQueue.php │ │ ├── EntityNotFoundException.php │ │ ├── EntityResolver.php │ │ ├── Factory.php │ │ ├── Job.php │ │ ├── Monitor.php │ │ ├── Queue.php │ │ ├── QueueableCollection.php │ │ ├── QueueableEntity.php │ │ ├── ShouldBeEncrypted.php │ │ ├── ShouldBeUnique.php │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ └── ShouldQueue.php │ ├── Redis │ │ ├── Connection.php │ │ ├── Connector.php │ │ ├── Factory.php │ │ └── LimiterTimeoutException.php │ ├── Routing │ │ ├── BindingRegistrar.php │ │ ├── Registrar.php │ │ ├── ResponseFactory.php │ │ ├── UrlGenerator.php │ │ └── UrlRoutable.php │ ├── Session │ │ └── Session.php │ ├── Support │ │ ├── Arrayable.php │ │ ├── DeferrableProvider.php │ │ ├── DeferringDisplayableValue.php │ │ ├── Htmlable.php │ │ ├── Jsonable.php │ │ ├── MessageBag.php │ │ ├── MessageProvider.php │ │ ├── Renderable.php │ │ └── Responsable.php │ ├── Translation │ │ ├── HasLocalePreference.php │ │ ├── Loader.php │ │ └── Translator.php │ ├── Validation │ │ ├── Factory.php │ │ ├── ImplicitRule.php │ │ ├── Rule.php │ │ ├── ValidatesWhenResolved.php │ │ └── Validator.php │ ├── View │ │ ├── Engine.php │ │ ├── Factory.php │ │ └── View.php │ └── composer.json ├── filesystem │ ├── Cache.php │ ├── Filesystem.php │ ├── FilesystemAdapter.php │ ├── FilesystemManager.php │ ├── FilesystemServiceProvider.php │ ├── LICENSE.md │ ├── LockableFile.php │ └── composer.json ├── macroable │ ├── LICENSE.md │ ├── Traits │ │ └── Macroable.php │ └── composer.json └── support │ ├── AggregateServiceProvider.php │ ├── Carbon.php │ ├── Composer.php │ ├── ConfigurationUrlParser.php │ ├── DateFactory.php │ ├── Env.php │ ├── Facades │ ├── App.php │ ├── Artisan.php │ ├── Auth.php │ ├── Blade.php │ ├── Broadcast.php │ ├── Bus.php │ ├── Cache.php │ ├── Config.php │ ├── Cookie.php │ ├── Crypt.php │ ├── DB.php │ ├── Date.php │ ├── Event.php │ ├── Facade.php │ ├── File.php │ ├── Gate.php │ ├── Hash.php │ ├── Http.php │ ├── Lang.php │ ├── Log.php │ ├── Mail.php │ ├── Notification.php │ ├── ParallelTesting.php │ ├── Password.php │ ├── Queue.php │ ├── RateLimiter.php │ ├── Redirect.php │ ├── Redis.php │ ├── Request.php │ ├── Response.php │ ├── Route.php │ ├── Schema.php │ ├── Session.php │ ├── Storage.php │ ├── URL.php │ ├── Validator.php │ └── View.php │ ├── Fluent.php │ ├── HigherOrderTapProxy.php │ ├── HtmlString.php │ ├── InteractsWithTime.php │ ├── LICENSE.md │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Optional.php │ ├── Pluralizer.php │ ├── ProcessUtils.php │ ├── Reflector.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── Stringable.php │ ├── Testing │ └── Fakes │ │ ├── BatchRepositoryFake.php │ │ ├── BusFake.php │ │ ├── EventFake.php │ │ ├── MailFake.php │ │ ├── NotificationFake.php │ │ ├── PendingBatchFake.php │ │ ├── PendingChainFake.php │ │ ├── PendingMailFake.php │ │ └── QueueFake.php │ ├── Traits │ ├── CapsuleManagerTrait.php │ ├── ForwardsCalls.php │ ├── Localizable.php │ ├── ReflectsClosures.php │ └── Tappable.php │ ├── ViewErrorBag.php │ ├── composer.json │ └── helpers.php ├── laravel └── ui │ ├── LICENSE.md │ ├── README.md │ ├── auth-backend │ ├── AuthenticatesUsers.php │ ├── ConfirmsPasswords.php │ ├── RedirectsUsers.php │ ├── RegistersUsers.php │ ├── ResetsPasswords.php │ ├── SendsPasswordResetEmails.php │ ├── ThrottlesLogins.php │ └── VerifiesEmails.php │ ├── composer.json │ ├── src │ ├── Auth │ │ ├── bootstrap-stubs │ │ │ ├── auth │ │ │ │ ├── login.stub │ │ │ │ ├── passwords │ │ │ │ │ ├── confirm.stub │ │ │ │ │ ├── email.stub │ │ │ │ │ └── reset.stub │ │ │ │ ├── register.stub │ │ │ │ └── verify.stub │ │ │ ├── home.stub │ │ │ └── layouts │ │ │ │ └── app.stub │ │ └── stubs │ │ │ ├── controllers │ │ │ └── HomeController.stub │ │ │ └── routes.stub │ ├── AuthCommand.php │ ├── AuthRouteMethods.php │ ├── ControllersCommand.php │ ├── Presets │ │ ├── Bootstrap.php │ │ ├── Preset.php │ │ ├── React.php │ │ ├── Vue.php │ │ ├── bootstrap-stubs │ │ │ ├── _variables.scss │ │ │ ├── app.scss │ │ │ ├── bootstrap.js │ │ │ └── webpack.mix.js │ │ ├── react-stubs │ │ │ ├── Example.js │ │ │ ├── app.js │ │ │ └── webpack.mix.js │ │ └── vue-stubs │ │ │ ├── ExampleComponent.vue │ │ │ ├── app.js │ │ │ └── webpack.mix.js │ ├── UiCommand.php │ └── UiServiceProvider.php │ └── stubs │ ├── Auth │ ├── ConfirmPasswordController.stub │ ├── ForgotPasswordController.stub │ ├── LoginController.stub │ ├── RegisterController.stub │ ├── ResetPasswordController.stub │ └── VerificationController.stub │ └── migrations │ └── 2014_10_12_100000_create_password_resets_table.php ├── nesbot └── carbon │ ├── LICENSE │ ├── bin │ ├── carbon │ └── carbon.bat │ ├── composer.json │ ├── contributing.md │ ├── extension.neon │ ├── phpmd.xml │ ├── readme.md │ └── src │ └── Carbon │ ├── 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 │ ├── 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 │ ├── 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 │ ├── Macro.php │ ├── MacroExtension.php │ └── MacroScanner.php │ ├── Traits │ ├── Boundaries.php │ ├── Cast.php │ ├── Comparison.php │ ├── Converter.php │ ├── Creator.php │ ├── Date.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 │ ├── Units.php │ └── Week.php │ └── Translator.php ├── psr ├── container │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php ├── symfony ├── console │ ├── Application.php │ ├── CHANGELOG.md │ ├── Color.php │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ ├── ListCommand.php │ │ ├── LockableTrait.php │ │ └── SignalableCommandInterface.php │ ├── CommandLoader │ │ ├── CommandLoaderInterface.php │ │ ├── ContainerCommandLoader.php │ │ └── FactoryCommandLoader.php │ ├── ConsoleEvents.php │ ├── Cursor.php │ ├── DependencyInjection │ │ └── AddConsoleCommandPass.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleErrorEvent.php │ │ ├── ConsoleEvent.php │ │ ├── ConsoleSignalEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── EventListener │ │ └── ErrorListener.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ ├── MissingInputException.php │ │ ├── NamespaceNotFoundException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── NullOutputFormatter.php │ │ ├── NullOutputFormatterStyle.php │ │ ├── OutputFormatter.php │ │ ├── OutputFormatterInterface.php │ │ ├── OutputFormatterStyle.php │ │ ├── OutputFormatterStyleInterface.php │ │ ├── OutputFormatterStyleStack.php │ │ └── WrappableOutputFormatterInterface.php │ ├── Helper │ │ ├── DebugFormatterHelper.php │ │ ├── DescriptorHelper.php │ │ ├── Dumper.php │ │ ├── FormatterHelper.php │ │ ├── Helper.php │ │ ├── HelperInterface.php │ │ ├── HelperSet.php │ │ ├── InputAwareHelper.php │ │ ├── ProcessHelper.php │ │ ├── ProgressBar.php │ │ ├── ProgressIndicator.php │ │ ├── QuestionHelper.php │ │ ├── SymfonyQuestionHelper.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableCellStyle.php │ │ ├── TableRows.php │ │ ├── TableSeparator.php │ │ └── TableStyle.php │ ├── Input │ │ ├── ArgvInput.php │ │ ├── ArrayInput.php │ │ ├── Input.php │ │ ├── InputArgument.php │ │ ├── InputAwareInterface.php │ │ ├── InputDefinition.php │ │ ├── InputInterface.php │ │ ├── InputOption.php │ │ ├── StreamableInputInterface.php │ │ └── StringInput.php │ ├── LICENSE │ ├── Logger │ │ └── ConsoleLogger.php │ ├── Output │ │ ├── BufferedOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleOutputInterface.php │ │ ├── ConsoleSectionOutput.php │ │ ├── NullOutput.php │ │ ├── Output.php │ │ ├── OutputInterface.php │ │ ├── StreamOutput.php │ │ └── TrimmedBufferOutput.php │ ├── Question │ │ ├── ChoiceQuestion.php │ │ ├── ConfirmationQuestion.php │ │ └── Question.php │ ├── README.md │ ├── Resources │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── SignalRegistry │ │ └── SignalRegistry.php │ ├── SingleCommandApplication.php │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Terminal.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ ├── CommandTester.php │ │ └── TesterTrait.php │ └── composer.json ├── finder │ ├── CHANGELOG.md │ ├── Comparator │ │ ├── Comparator.php │ │ ├── DateComparator.php │ │ └── NumberComparator.php │ ├── Exception │ │ ├── AccessDeniedException.php │ │ └── DirectoryNotFoundException.php │ ├── Finder.php │ ├── Gitignore.php │ ├── Glob.php │ ├── Iterator │ │ ├── CustomFilterIterator.php │ │ ├── DateRangeFilterIterator.php │ │ ├── DepthRangeFilterIterator.php │ │ ├── ExcludeDirectoryFilterIterator.php │ │ ├── FileTypeFilterIterator.php │ │ ├── FilecontentFilterIterator.php │ │ ├── FilenameFilterIterator.php │ │ ├── LazyIterator.php │ │ ├── MultiplePcreFilterIterator.php │ │ ├── PathFilterIterator.php │ │ ├── RecursiveDirectoryIterator.php │ │ ├── SizeRangeFilterIterator.php │ │ └── SortableIterator.php │ ├── LICENSE │ ├── README.md │ ├── SplFileInfo.php │ └── composer.json ├── polyfill-ctype │ ├── Ctype.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-intl-grapheme │ ├── Grapheme.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-intl-normalizer │ ├── LICENSE │ ├── Normalizer.php │ ├── README.md │ ├── Resources │ │ ├── stubs │ │ │ └── Normalizer.php │ │ └── unidata │ │ │ ├── canonicalComposition.php │ │ │ ├── canonicalDecomposition.php │ │ │ ├── combiningClass.php │ │ │ └── compatibilityDecomposition.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-php73 │ ├── LICENSE │ ├── Php73.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ └── JsonException.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-php80 │ ├── LICENSE │ ├── Php80.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ ├── bootstrap.php │ └── composer.json ├── process │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── ProcessFailedException.php │ │ ├── ProcessSignaledException.php │ │ ├── ProcessTimedOutException.php │ │ └── RuntimeException.php │ ├── ExecutableFinder.php │ ├── InputStream.php │ ├── LICENSE │ ├── PhpExecutableFinder.php │ ├── PhpProcess.php │ ├── Pipes │ │ ├── AbstractPipes.php │ │ ├── PipesInterface.php │ │ ├── UnixPipes.php │ │ └── WindowsPipes.php │ ├── Process.php │ ├── ProcessUtils.php │ ├── README.md │ └── composer.json ├── service-contracts │ ├── .gitignore │ ├── Attribute │ │ └── Required.php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ResetInterface.php │ ├── ServiceLocatorTrait.php │ ├── ServiceProviderInterface.php │ ├── ServiceSubscriberInterface.php │ ├── ServiceSubscriberTrait.php │ ├── Test │ │ └── ServiceLocatorTest.php │ └── composer.json ├── string │ ├── AbstractString.php │ ├── AbstractUnicodeString.php │ ├── ByteString.php │ ├── CHANGELOG.md │ ├── CodePointString.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── Inflector │ │ ├── EnglishInflector.php │ │ ├── FrenchInflector.php │ │ └── InflectorInterface.php │ ├── LICENSE │ ├── LazyString.php │ ├── README.md │ ├── Resources │ │ ├── data │ │ │ ├── wcswidth_table_wide.php │ │ │ └── wcswidth_table_zero.php │ │ └── functions.php │ ├── Slugger │ │ ├── AsciiSlugger.php │ │ └── SluggerInterface.php │ ├── UnicodeString.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 │ └── 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 │ ├── InvalidArgumentException.php │ ├── InvalidResourceException.php │ ├── LogicException.php │ ├── NotFoundResourceException.php │ └── RuntimeException.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 │ ├── PluralizationRules.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 │ ├── TranslatableMessage.php │ ├── Translator.php │ ├── TranslatorBagInterface.php │ ├── Util │ ├── ArrayConverter.php │ └── XliffUtils.php │ ├── Writer │ ├── TranslationWriter.php │ └── TranslationWriterInterface.php │ └── composer.json └── voku └── portable-ascii ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── build ├── composer.json ├── docs │ └── base.md ├── generate_docs.php └── generate_max_key_length.php ├── composer.json └── src └── voku └── helper ├── ASCII.php └── data ├── ascii_by_languages.php ├── ascii_extras_by_languages.php ├── ascii_language_max_key.php ├── ascii_ord.php ├── x000.php ├── x001.php ├── x002.php ├── x003.php ├── x004.php ├── x005.php ├── x006.php ├── x007.php ├── x009.php ├── x00a.php ├── x00b.php ├── x00c.php ├── x00d.php ├── x00e.php ├── x00f.php ├── x010.php ├── x011.php ├── x012.php ├── x013.php ├── x014.php ├── x015.php ├── x016.php ├── x017.php ├── x018.php ├── x01d.php ├── x01e.php ├── x01f.php ├── x020.php ├── x021.php ├── x022.php ├── x023.php ├── x024.php ├── x025.php ├── x026.php ├── x027.php ├── x028.php ├── x029.php ├── x02a.php ├── x02c.php ├── x02e.php ├── x02f.php ├── x030.php ├── x031.php ├── x032.php ├── x033.php ├── x04d.php ├── x04e.php ├── x04f.php ├── x050.php ├── x051.php ├── x052.php ├── x053.php ├── x054.php ├── x055.php ├── x056.php ├── x057.php ├── x058.php ├── x059.php ├── x05a.php ├── x05b.php ├── x05c.php ├── x05d.php ├── x05e.php ├── x05f.php ├── x060.php ├── x061.php ├── x062.php ├── x063.php ├── x064.php ├── x065.php ├── x066.php ├── x067.php ├── x068.php ├── x069.php ├── x06a.php ├── x06b.php ├── x06c.php ├── x06d.php ├── x06e.php ├── x06f.php ├── x070.php ├── x071.php ├── x072.php ├── x073.php ├── x074.php ├── x075.php ├── x076.php ├── x077.php ├── x078.php ├── x079.php ├── x07a.php ├── x07b.php ├── x07c.php ├── x07d.php ├── x07e.php ├── x07f.php ├── x080.php ├── x081.php ├── x082.php ├── x083.php ├── x084.php ├── x085.php ├── x086.php ├── x087.php ├── x088.php ├── x089.php ├── x08a.php ├── x08b.php ├── x08c.php ├── x08d.php ├── x08e.php ├── x08f.php ├── x090.php ├── x091.php ├── x092.php ├── x093.php ├── x094.php ├── x095.php ├── x096.php ├── x097.php ├── x098.php ├── x099.php ├── x09a.php ├── x09b.php ├── x09c.php ├── x09d.php ├── x09e.php ├── x09f.php ├── x0a0.php ├── x0a1.php ├── x0a2.php ├── x0a3.php ├── x0a4.php ├── x0ac.php ├── x0ad.php ├── x0ae.php ├── x0af.php ├── x0b0.php ├── x0b1.php ├── x0b2.php ├── x0b3.php ├── x0b4.php ├── x0b5.php ├── x0b6.php ├── x0b7.php ├── x0b8.php ├── x0b9.php ├── x0ba.php ├── x0bb.php ├── x0bc.php ├── x0bd.php ├── x0be.php ├── x0bf.php ├── x0c0.php ├── x0c1.php ├── x0c2.php ├── x0c3.php ├── x0c4.php ├── x0c5.php ├── x0c6.php ├── x0c7.php ├── x0c8.php ├── x0c9.php ├── x0ca.php ├── x0cb.php ├── x0cc.php ├── x0cd.php ├── x0ce.php ├── x0cf.php ├── x0d0.php ├── x0d1.php ├── x0d2.php ├── x0d3.php ├── x0d4.php ├── x0d5.php ├── x0d6.php ├── x0d7.php ├── x0f9.php ├── x0fa.php ├── x0fb.php ├── x0fc.php ├── x0fd.php ├── x0fe.php ├── x0ff.php ├── x1d4.php ├── x1d5.php ├── x1d6.php ├── x1d7.php └── x1f1.php /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require-dev": { 3 | "laravel/ui": "^3.2" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyobero/laravel6-default-auth/c4986110b3c66d86363ff4cbeeceacc3d35eb823/composer.phar -------------------------------------------------------------------------------- /laravel6auth/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /laravel6auth/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /laravel6auth/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | Homestead.json 10 | Homestead.yaml 11 | npm-debug.log 12 | yarn-error.log 13 | -------------------------------------------------------------------------------- /laravel6auth/.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - unused_use 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /laravel6auth/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /laravel6auth/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyobero/laravel6-default-auth/c4986110b3c66d86363ff4cbeeceacc3d35eb823/laravel6auth/public/favicon.ico -------------------------------------------------------------------------------- /laravel6auth/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /laravel6auth/resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /laravel6auth/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | -------------------------------------------------------------------------------- /laravel6auth/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /laravel6auth/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laravel6auth/storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /laravel6auth/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /laravel6auth/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laravel6auth/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laravel6auth/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laravel6auth/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laravel6auth/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laravel6auth/tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | name('home'); 5 | -------------------------------------------------------------------------------- /vendor/laravel/ui/src/Presets/bootstrap-stubs/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/bin/carbon.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/carbon 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/extension.neon: -------------------------------------------------------------------------------- 1 | services: 2 | - 3 | class: Carbon\PHPStan\MacroExtension 4 | tags: 5 | - phpstan.broker.methodsClassReflectionExtension 6 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Doctrine/DateTimeType.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | namespace Carbon\Exceptions; 12 | 13 | interface Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | namespace Carbon\Exceptions; 12 | 13 | interface RuntimeException extends Exception 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/aa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/aa_DJ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/af.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/agr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/agr_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ak.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ak_GH.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/am.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/am_ET.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/an.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/an_ES.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/anp.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/anp_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_DJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_EH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_ER.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_IL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_KM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_MR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_PS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_SO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar_TD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ar.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/as.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/as_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/ast.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ayc.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ayc_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bem.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bem_ZM.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ber.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ber_DZ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/bg.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bhb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bhb_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bho.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bho_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/bi_VU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/bo.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/br.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/brx.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/brx_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/bs.php'; 12 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/bs.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/byn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/byn_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_AD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ca.php'; 12 | -------------------------------------------------------------------------------- /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 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca_IT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ca.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/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 | return array_replace_recursive(require __DIR__.'/ccp.php', [ 12 | 'weekend' => [0, 0], 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ce.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ce_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/chr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/chr_US.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cmn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/cmn_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/crh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/crh_UA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/cs.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/csb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/csb_PL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/cv.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/cy.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/da.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/de_LI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/de.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/doi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/doi_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/dsb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/dsb_DE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/dz.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/dz_BT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_001.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_150.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_AI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_AS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_AT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_BZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_CX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_DE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_DG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_DM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_ER.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_FM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_GY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_IM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_IO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_JE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_JM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_KY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_LC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_LR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_LS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_MY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_NU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_PW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_RW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_SZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_TZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_UG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_UM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_US.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_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 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_VU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_WS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en_ZW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/en.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_BR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_BZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_CU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_EA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - RAP bug-glibc-locales@gnu.org 15 | */ 16 | return require __DIR__.'/es.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es_IC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/es.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/et.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/eu.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fa.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ff_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ff.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ff_GN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ff.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fi.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fil.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/fil_PH.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fo.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_BL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_CM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/fr.php', [ 12 | 'meridiem' => ['mat.', 'soir'], 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_HT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_KM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_ML.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_MU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_NC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_NE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_PF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_PM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_RE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_RW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_SC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_SN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_TG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_WF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr_YT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/fr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fur.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/fur_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ga.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/gd.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gez.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/gez_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/gl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gom.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/gom_Latn.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/gsw.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/gu.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/gv.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/gv_GB.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha_GH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ha.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha_NE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ha.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ha.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hak.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hak_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/he.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/hi.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hif.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hif_FJ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hne.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hne_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/hr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hsb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/hsb_DE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ht.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ht_HT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/hu.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ia.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ia_FR.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/id.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ig.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ig_NG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ik.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ik_CA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/in.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/id.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/is.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it_IT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - RAP bug-glibc-locales@gnu.org 15 | */ 16 | return require __DIR__.'/it.php'; 17 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it_SM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/it.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it_VA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/it.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/iu.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/iu_CA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ja.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/jgo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ka.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kab.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kab_DZ.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/kk.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kkj.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/en.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kl.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kl_GL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/km.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/kn.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ko_KP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ko.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ko.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kok.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kok_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ks.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ks_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ku.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/kw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/kw_GB.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ky.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/lb.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lg.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/lg_UG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/li.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/li_NL.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lij.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/lij_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/lo.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/lrc.php', [ 12 | ]); 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/lt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/lv.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lzh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/lzh_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mag.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mag_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mai.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mai_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mas_TZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/mas.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mfe.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mfe_MU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mg.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mg_MG.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mhr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mhr_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/mi.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/miq.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/miq_NI.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mjw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mjw_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/mk.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ml.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/mn.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mni.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/mni_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ro.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/mr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/mt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/my.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nan.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nan_TW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/nb.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nds.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nds_DE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ne.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nhn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nhn_MX.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/niu.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/niu_NU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_BQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_CW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_SR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl_SX.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/nl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/nn.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nr.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nr_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nso.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/nso_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/oc.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/om.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/om_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/om.php', [ 12 | 'day_of_first_week_of_year' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/or.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/or_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/os.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/os_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ps.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_AO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_CH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_CV.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_GQ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_GW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_LU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_MZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/pt.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_ST.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_TL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/pt.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/qu_BO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/qu.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/qu_EC.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/qu.php', [ 12 | 'first_day_of_week' => 1, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/quz.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/quz_PE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/raj.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/raj_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ro.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_BY.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_KG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_KZ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_MD.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ru.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/rw.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/rw_RW.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sa_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sah.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sah_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sat.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sat_IN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sc.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sc_IT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/se.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/se_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/se.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sgs.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sgs_LT.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/shi_Tfng.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/shi.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/shn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/shn_MM.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/si.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sk.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sl.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sm.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/sm_WS.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sq.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sr_Latn_ME.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/ss.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/st.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/st_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sv.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/sv.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/te.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/teo_KE.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/teo.php', [ 12 | 'first_day_of_week' => 0, 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/tg.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/th.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ti.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ti_ER.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tk.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tk_TM.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tn.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tn_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/to.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/to_TO.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/tr.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ts.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ts_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tt.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/tt_RU.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/twq.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return array_replace_recursive(require __DIR__.'/ses.php', [ 12 | 'meridiem' => ['Subbaahi', 'Zaarikay b'], 13 | ]); 14 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ug_CN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Authors: 14 | * - Kunal Marwaha 15 | * - Alim Boyaq 16 | */ 17 | return require __DIR__.'/ug.php'; 18 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/uk.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vai_Vaii.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/vai.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ve.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/ve_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/vi.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wa.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/wa_BE.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/wo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/wo_SN.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/xh.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/xh_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yi.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/yi_US.php'; 16 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/yo.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yue_Hans.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/yue_Hant.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant_HK.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_SG.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hans.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_HK.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_MO.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /vendor/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 | return require __DIR__.'/zh_Hant.php'; 12 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | return require __DIR__.'/zh_Hant_TW.php'; 13 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zu.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | /* 13 | * Unknown default region, use the first alphabetically. 14 | */ 15 | return require __DIR__.'/zu_ZA.php'; 16 | -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/psr/container/README.md: -------------------------------------------------------------------------------- 1 | # PSR Container 2 | 3 | This repository holds all interfaces/classes/traits related to [PSR-11](https://github.com/container-interop/fig-standards/blob/master/proposed/container.md). 4 | 5 | Note that this is not a container implementation of its own. See the specification for more details. 6 | -------------------------------------------------------------------------------- /vendor/psr/container/src/ContainerExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | class JsonException extends Exception 13 | { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php: -------------------------------------------------------------------------------- 1 |