├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .htaccess ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── application ├── .env.example ├── .htaccess ├── app │ ├── Commands │ │ └── Command.php │ ├── Console │ │ ├── Commands │ │ │ └── Inspire.php │ │ └── Kernel.php │ ├── Events │ │ └── Event.php │ ├── Exceptions │ │ └── Handler.php │ ├── Handlers │ │ ├── Commands │ │ │ └── .gitkeep │ │ └── Events │ │ │ └── .gitkeep │ ├── Helpers │ │ ├── LanguageDetector.php │ │ ├── RandomMessageHelper.php │ │ ├── TimePasedToPercent.php │ │ └── UuidConverter.php │ ├── Http │ │ ├── Controllers │ │ │ ├── AdminController.php │ │ │ ├── ApiController.php │ │ │ ├── Auth │ │ │ │ ├── AuthController.php │ │ │ │ └── PasswordController.php │ │ │ ├── ConfigurationController.php │ │ │ ├── Controller.php │ │ │ ├── InstallController.php │ │ │ ├── PlayerAdminController.php │ │ │ ├── PlayerBanController.php │ │ │ ├── PlayerBanRecordController.php │ │ │ ├── PlayerController.php │ │ │ ├── PlayerKickController.php │ │ │ ├── PlayerMuteController.php │ │ │ ├── PlayerMuteRecordController.php │ │ │ ├── PlayerNoteController.php │ │ │ ├── PlayerWarningController.php │ │ │ ├── ServerController.php │ │ │ ├── StaticPageController.php │ │ │ ├── StatsController.php │ │ │ └── UserController.php │ │ ├── Kernel.php │ │ ├── Middleware │ │ │ ├── AdminAuthenticate.php │ │ │ ├── Authenticate.php │ │ │ ├── ModeratorAuthenticate.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── SuperuserAuthenticate.php │ │ │ ├── VerifyCsrfToken.php │ │ │ ├── VerifyInstalled.php │ │ │ ├── VerifyNotInstalled.php │ │ │ ├── VerifyServers.php │ │ │ └── VerifyServersUpgraded.php │ │ ├── Requests │ │ │ └── Request.php │ │ └── routes.php │ ├── IpBan.php │ ├── IpBanRecord.php │ ├── PastRecordBaseModel.php │ ├── Player.php │ ├── PlayerBan.php │ ├── PlayerBanRecord.php │ ├── PlayerKick.php │ ├── PlayerMute.php │ ├── PlayerMuteRecord.php │ ├── PlayerNote.php │ ├── PlayerWarning.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── ConfigServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── HelperServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── RecordBaseModel.php │ ├── Server.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2015_04_26_154117_create_servers_table.php │ │ └── 2018_12_23_184255_AddFieldsToServers.php │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── gulpfile.js ├── package.json ├── resources │ ├── assets │ │ ├── css │ │ │ ├── admin.css │ │ │ ├── admin.css.map │ │ │ ├── app.css │ │ │ ├── app.css.map │ │ │ ├── bootstrap-datetimepicker.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap3-dialog.css │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.responsive.css │ │ │ ├── font-awesome.css │ │ │ ├── install.css │ │ │ ├── install.css.map │ │ │ ├── metismenu.css │ │ │ ├── sb-admin.css │ │ │ ├── site.css │ │ │ ├── site.css.map │ │ │ └── timeline.css │ │ ├── js │ │ │ ├── admin.js │ │ │ ├── app.js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap3-dialog.js │ │ │ ├── bootstrap3-typeahead.js │ │ │ ├── chart.js │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── install.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.js │ │ │ ├── metismenu.js │ │ │ ├── moment.js │ │ │ ├── sb-admin.js │ │ │ └── site.js │ │ └── sass │ │ │ ├── admin.scss │ │ │ ├── app.scss │ │ │ ├── install.scss │ │ │ └── site.scss │ ├── lang │ │ ├── de │ │ │ ├── app.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ └── en │ │ │ ├── app.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ ├── admin │ │ ├── activePunishments.blade.php │ │ ├── activity.blade.php │ │ ├── app.blade.php │ │ ├── bans │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── config.blade.php │ │ ├── index.blade.php │ │ ├── mutes │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── notes │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── players │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ ├── servers │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── users │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── show.blade.php │ │ └── warnings │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ ├── app.blade.php │ │ ├── auth │ │ ├── login.blade.php │ │ ├── password.blade.php │ │ ├── register.blade.php │ │ └── reset.blade.php │ │ ├── emails │ │ └── password.blade.php │ │ ├── errors │ │ ├── 401.blade.php │ │ ├── 404.blade.php │ │ └── 503.blade.php │ │ ├── index.blade.php │ │ ├── install │ │ ├── app.blade.php │ │ ├── config.blade.php │ │ ├── finish.blade.php │ │ ├── index.blade.php │ │ └── run.blade.php │ │ ├── partials │ │ ├── activityItem.blade.php │ │ ├── flash.blade.php │ │ ├── navigation.blade.php │ │ ├── noscript.blade.php │ │ ├── recentPunishmentsTable.blade.php │ │ ├── timelineItem.blade.php │ │ └── validationErrors.blade.php │ │ ├── player.blade.php │ │ ├── stats.blade.php │ │ └── vendor │ │ └── .gitkeep ├── server.php ├── storage │ ├── app │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── vendor │ ├── autoload.php │ ├── bin │ │ ├── php-parse │ │ ├── psysh │ │ └── upgrade-carbon │ ├── classpreloader │ │ └── classpreloader │ │ │ ├── .github │ │ │ └── FUNDING.yml │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── ClassList.php │ │ │ ├── ClassLoader.php │ │ │ ├── ClassNode.php │ │ │ ├── ClassPreloader.php │ │ │ ├── Config.php │ │ │ ├── Exceptions │ │ │ ├── DirConstantException.php │ │ │ ├── FileConstantException.php │ │ │ ├── StrictTypesException.php │ │ │ └── VisitorExceptionInterface.php │ │ │ ├── Factory.php │ │ │ └── Parser │ │ │ ├── AbstractNodeVisitor.php │ │ │ ├── DirVisitor.php │ │ │ ├── FileVisitor.php │ │ │ ├── NodeTraverser.php │ │ │ └── StrictTypesVisitor.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── dnoegel │ │ └── php-xdg-base-dir │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── Xdg.php │ │ │ └── tests │ │ │ └── XdgTest.php │ ├── doctrine │ │ └── inflector │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ └── en │ │ │ │ └── index.rst │ │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ ├── Common │ │ │ │ └── Inflector │ │ │ │ │ └── Inflector.php │ │ │ │ └── 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 │ ├── jakub-onderka │ │ ├── php-console-color │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ │ ├── ConsoleColor.php │ │ │ │ └── InvalidStyleException.php │ │ │ └── tests │ │ │ │ └── ConsoleColorTest.php │ │ └── php-console-highlighter │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ ├── composer.json │ │ │ ├── examples │ │ │ ├── snippet.php │ │ │ ├── whole_file.php │ │ │ └── whole_file_line_numbers.php │ │ │ ├── phpunit.xml │ │ │ ├── src │ │ │ └── JakubOnderka │ │ │ │ └── PhpConsoleHighlighter │ │ │ │ └── Highlighter.php │ │ │ └── tests │ │ │ ├── JakubOnderka │ │ │ └── PhpConsoleHighligter │ │ │ │ └── HigligterTest.php │ │ │ └── bootstrap.php │ ├── jeremeamia │ │ └── superclosure │ │ │ ├── LICENSE.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── Analyzer │ │ │ ├── AstAnalyzer.php │ │ │ ├── ClosureAnalyzer.php │ │ │ ├── Token.php │ │ │ ├── TokenAnalyzer.php │ │ │ └── Visitor │ │ │ │ ├── ClosureLocatorVisitor.php │ │ │ │ ├── MagicConstantVisitor.php │ │ │ │ └── ThisDetectorVisitor.php │ │ │ ├── Exception │ │ │ ├── ClosureAnalysisException.php │ │ │ ├── ClosureSerializationException.php │ │ │ ├── ClosureUnserializationException.php │ │ │ └── SuperClosureException.php │ │ │ ├── SerializableClosure.php │ │ │ ├── Serializer.php │ │ │ └── SerializerInterface.php │ ├── kylekatarnls │ │ └── update-helper │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── UpdateHelper │ │ │ ├── ComposerPlugin.php │ │ │ ├── NotUpdateInterfaceInstanceException.php │ │ │ ├── UpdateHelper.php │ │ │ └── UpdateHelperInterface.php │ ├── laravel │ │ └── framework │ │ │ ├── LICENSE.txt │ │ │ ├── composer.json │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── Illuminate │ │ │ ├── Auth │ │ │ ├── Access │ │ │ │ ├── AuthorizationException.php │ │ │ │ ├── Gate.php │ │ │ │ ├── HandlesAuthorization.php │ │ │ │ └── Response.php │ │ │ ├── AuthManager.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── Authenticatable.php │ │ │ ├── AuthenticationException.php │ │ │ ├── Console │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ ├── MakeAuthCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── make │ │ │ │ │ ├── controllers │ │ │ │ │ └── HomeController.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ └── views │ │ │ │ │ ├── auth │ │ │ │ │ ├── emails │ │ │ │ │ │ └── password.stub │ │ │ │ │ ├── login.stub │ │ │ │ │ ├── passwords │ │ │ │ │ │ ├── email.stub │ │ │ │ │ │ └── reset.stub │ │ │ │ │ └── register.stub │ │ │ │ │ ├── home.stub │ │ │ │ │ ├── layouts │ │ │ │ │ └── app.stub │ │ │ │ │ └── welcome.stub │ │ │ ├── CreatesUserProviders.php │ │ │ ├── DatabaseUserProvider.php │ │ │ ├── EloquentUserProvider.php │ │ │ ├── Events │ │ │ │ ├── Attempting.php │ │ │ │ ├── Failed.php │ │ │ │ ├── Lockout.php │ │ │ │ ├── Login.php │ │ │ │ └── Logout.php │ │ │ ├── GenericUser.php │ │ │ ├── GuardHelpers.php │ │ │ ├── Middleware │ │ │ │ └── AuthenticateWithBasicAuth.php │ │ │ ├── Passwords │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ └── TokenRepositoryInterface.php │ │ │ ├── RequestGuard.php │ │ │ ├── SessionGuard.php │ │ │ ├── TokenGuard.php │ │ │ └── composer.json │ │ │ ├── Broadcasting │ │ │ ├── BroadcastEvent.php │ │ │ ├── BroadcastManager.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── Broadcasters │ │ │ │ ├── LogBroadcaster.php │ │ │ │ ├── PusherBroadcaster.php │ │ │ │ └── RedisBroadcaster.php │ │ │ └── composer.json │ │ │ ├── Bus │ │ │ ├── BusServiceProvider.php │ │ │ ├── Dispatcher.php │ │ │ ├── Queueable.php │ │ │ └── composer.json │ │ │ ├── Cache │ │ │ ├── ApcStore.php │ │ │ ├── ApcWrapper.php │ │ │ ├── ArrayStore.php │ │ │ ├── CacheManager.php │ │ │ ├── CacheServiceProvider.php │ │ │ ├── Console │ │ │ │ ├── CacheTableCommand.php │ │ │ │ ├── ClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── cache.stub │ │ │ ├── DatabaseStore.php │ │ │ ├── Events │ │ │ │ ├── CacheHit.php │ │ │ │ ├── CacheMissed.php │ │ │ │ ├── KeyForgotten.php │ │ │ │ └── KeyWritten.php │ │ │ ├── FileStore.php │ │ │ ├── MemcachedConnector.php │ │ │ ├── MemcachedStore.php │ │ │ ├── NullStore.php │ │ │ ├── RateLimiter.php │ │ │ ├── RedisStore.php │ │ │ ├── RedisTaggedCache.php │ │ │ ├── Repository.php │ │ │ ├── RetrievesMultipleKeys.php │ │ │ ├── TagSet.php │ │ │ ├── TaggableStore.php │ │ │ ├── TaggedCache.php │ │ │ └── composer.json │ │ │ ├── Config │ │ │ ├── Repository.php │ │ │ └── composer.json │ │ │ ├── Console │ │ │ ├── AppNamespaceDetectorTrait.php │ │ │ ├── Application.php │ │ │ ├── Command.php │ │ │ ├── ConfirmableTrait.php │ │ │ ├── Events │ │ │ │ └── ArtisanStarting.php │ │ │ ├── GeneratorCommand.php │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ ├── ScheduleServiceProvider.php │ │ │ ├── Scheduling │ │ │ │ ├── CallbackEvent.php │ │ │ │ ├── Event.php │ │ │ │ ├── Schedule.php │ │ │ │ └── ScheduleRunCommand.php │ │ │ └── composer.json │ │ │ ├── Container │ │ │ ├── Container.php │ │ │ ├── ContextualBindingBuilder.php │ │ │ └── composer.json │ │ │ ├── Contracts │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── Gate.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Guard.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ ├── Registrar.php │ │ │ │ ├── StatefulGuard.php │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ └── UserProvider.php │ │ │ ├── Broadcasting │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── Factory.php │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ └── ShouldBroadcastNow.php │ │ │ ├── Bus │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── QueueingDispatcher.php │ │ │ │ └── SelfHandling.php │ │ │ ├── Cache │ │ │ │ ├── Factory.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 │ │ │ │ └── ModelIdentifier.php │ │ │ ├── Debug │ │ │ │ └── ExceptionHandler.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ ├── EncryptException.php │ │ │ │ └── Encrypter.php │ │ │ ├── Events │ │ │ │ └── Dispatcher.php │ │ │ ├── Filesystem │ │ │ │ ├── Cloud.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ └── Filesystem.php │ │ │ ├── Foundation │ │ │ │ └── Application.php │ │ │ ├── Hashing │ │ │ │ └── Hasher.php │ │ │ ├── Http │ │ │ │ └── Kernel.php │ │ │ ├── Logging │ │ │ │ └── Log.php │ │ │ ├── Mail │ │ │ │ ├── MailQueue.php │ │ │ │ └── Mailer.php │ │ │ ├── Pagination │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ ├── Paginator.php │ │ │ │ └── Presenter.php │ │ │ ├── Pipeline │ │ │ │ ├── Hub.php │ │ │ │ └── Pipeline.php │ │ │ ├── Queue │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ ├── EntityResolver.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Job.php │ │ │ │ ├── Monitor.php │ │ │ │ ├── Queue.php │ │ │ │ ├── QueueableCollection.php │ │ │ │ ├── QueueableEntity.php │ │ │ │ └── ShouldQueue.php │ │ │ ├── Redis │ │ │ │ └── Database.php │ │ │ ├── Routing │ │ │ │ ├── Registrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlRoutable.php │ │ │ ├── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Htmlable.php │ │ │ │ ├── Jsonable.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MessageProvider.php │ │ │ │ └── Renderable.php │ │ │ ├── Validation │ │ │ │ ├── Factory.php │ │ │ │ ├── UnauthorizedException.php │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ ├── ValidationException.php │ │ │ │ └── Validator.php │ │ │ ├── View │ │ │ │ ├── Factory.php │ │ │ │ └── View.php │ │ │ └── composer.json │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieServiceProvider.php │ │ │ ├── Middleware │ │ │ │ ├── AddQueuedCookiesToResponse.php │ │ │ │ └── EncryptCookies.php │ │ │ └── composer.json │ │ │ ├── Database │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── ConnectionResolver.php │ │ │ ├── ConnectionResolverInterface.php │ │ │ ├── Connectors │ │ │ │ ├── ConnectionFactory.php │ │ │ │ ├── Connector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── MySqlConnector.php │ │ │ │ ├── PostgresConnector.php │ │ │ │ ├── SQLiteConnector.php │ │ │ │ └── SqlServerConnector.php │ │ │ ├── Console │ │ │ │ ├── Migrations │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ └── StatusCommand.php │ │ │ │ └── Seeds │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ └── seeder.stub │ │ │ ├── DatabaseManager.php │ │ │ ├── DatabaseServiceProvider.php │ │ │ ├── DetectsLostConnections.php │ │ │ ├── Eloquent │ │ │ │ ├── Builder.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FactoryBuilder.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── Model.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ ├── Relations │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── HasMany.php │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ ├── HasOne.php │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ ├── Pivot.php │ │ │ │ │ └── Relation.php │ │ │ │ ├── Scope.php │ │ │ │ ├── ScopeInterface.php │ │ │ │ ├── SoftDeletes.php │ │ │ │ └── SoftDeletingScope.php │ │ │ ├── Events │ │ │ │ ├── ConnectionEvent.php │ │ │ │ ├── QueryExecuted.php │ │ │ │ ├── TransactionBeginning.php │ │ │ │ ├── TransactionCommitted.php │ │ │ │ └── TransactionRolledBack.php │ │ │ ├── Grammar.php │ │ │ ├── MigrationServiceProvider.php │ │ │ ├── Migrations │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ ├── Migration.php │ │ │ │ ├── MigrationCreator.php │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ ├── Migrator.php │ │ │ │ └── stubs │ │ │ │ │ ├── blank.stub │ │ │ │ │ ├── create.stub │ │ │ │ │ └── update.stub │ │ │ ├── MySqlConnection.php │ │ │ ├── PostgresConnection.php │ │ │ ├── Query │ │ │ │ ├── Builder.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── JoinClause.php │ │ │ │ ├── JsonExpression.php │ │ │ │ └── Processors │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ └── SqlServerProcessor.php │ │ │ ├── QueryException.php │ │ │ ├── README.md │ │ │ ├── SQLiteConnection.php │ │ │ ├── Schema │ │ │ │ ├── Blueprint.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Grammars │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ └── PostgresBuilder.php │ │ │ ├── SeedServiceProvider.php │ │ │ ├── Seeder.php │ │ │ ├── SqlServerConnection.php │ │ │ └── composer.json │ │ │ ├── Encryption │ │ │ ├── BaseEncrypter.php │ │ │ ├── Encrypter.php │ │ │ ├── EncryptionServiceProvider.php │ │ │ ├── McryptEncrypter.php │ │ │ └── composer.json │ │ │ ├── Events │ │ │ ├── CallQueuedHandler.php │ │ │ ├── Dispatcher.php │ │ │ ├── EventServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Filesystem │ │ │ ├── ClassFinder.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemManager.php │ │ │ ├── FilesystemServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Foundation │ │ │ ├── AliasLoader.php │ │ │ ├── Application.php │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ ├── AuthorizesRequests.php │ │ │ │ │ └── AuthorizesResources.php │ │ │ │ ├── AuthenticatesAndRegistersUsers.php │ │ │ │ ├── AuthenticatesUsers.php │ │ │ │ ├── RedirectsUsers.php │ │ │ │ ├── RegistersUsers.php │ │ │ │ ├── ResetsPasswords.php │ │ │ │ ├── ThrottlesLogins.php │ │ │ │ └── User.php │ │ │ ├── Bootstrap │ │ │ │ ├── BootProviders.php │ │ │ │ ├── ConfigureLogging.php │ │ │ │ ├── DetectEnvironment.php │ │ │ │ ├── HandleExceptions.php │ │ │ │ ├── LoadConfiguration.php │ │ │ │ ├── RegisterFacades.php │ │ │ │ ├── RegisterProviders.php │ │ │ │ └── SetRequestForConsole.php │ │ │ ├── Bus │ │ │ │ └── DispatchesJobs.php │ │ │ ├── ComposerScripts.php │ │ │ ├── Console │ │ │ │ ├── AppNameCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ ├── DownCommand.php │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ ├── EventMakeCommand.php │ │ │ │ ├── IlluminateCaster.php │ │ │ │ ├── JobMakeCommand.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ ├── ListenerMakeCommand.php │ │ │ │ ├── ModelMakeCommand.php │ │ │ │ ├── Optimize │ │ │ │ │ └── config.php │ │ │ │ ├── OptimizeCommand.php │ │ │ │ ├── PolicyMakeCommand.php │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ ├── QueuedJob.php │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ ├── RouteClearCommand.php │ │ │ │ ├── RouteListCommand.php │ │ │ │ ├── ServeCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── TinkerCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event-handler-queued.stub │ │ │ │ │ ├── event-handler.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── job-queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener-queued.stub │ │ │ │ │ ├── listener.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ └── test.stub │ │ │ ├── EnvironmentDetector.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── FormRequest.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── Authorize.php │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── VerifyCsrfToken.php │ │ │ │ │ └── VerifyPostSize.php │ │ │ ├── Inspiring.php │ │ │ ├── ProviderRepository.php │ │ │ ├── Providers │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ └── FoundationServiceProvider.php │ │ │ ├── Support │ │ │ │ └── Providers │ │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ │ ├── EventServiceProvider.php │ │ │ │ │ └── RouteServiceProvider.php │ │ │ ├── Testing │ │ │ │ ├── Concerns │ │ │ │ │ ├── ImpersonatesUsers.php │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ ├── InteractsWithPages.php │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ ├── Constraints │ │ │ │ │ ├── FormFieldConstraint.php │ │ │ │ │ ├── HasElement.php │ │ │ │ │ ├── HasInElement.php │ │ │ │ │ ├── HasLink.php │ │ │ │ │ ├── HasSource.php │ │ │ │ │ ├── HasText.php │ │ │ │ │ ├── HasValue.php │ │ │ │ │ ├── IsChecked.php │ │ │ │ │ ├── IsSelected.php │ │ │ │ │ ├── PageConstraint.php │ │ │ │ │ └── ReversePageConstraint.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── WithoutEvents.php │ │ │ │ └── WithoutMiddleware.php │ │ │ ├── Validation │ │ │ │ ├── ValidatesRequests.php │ │ │ │ └── ValidationException.php │ │ │ └── helpers.php │ │ │ ├── Hashing │ │ │ ├── BcryptHasher.php │ │ │ ├── HashServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Http │ │ │ ├── Exception │ │ │ │ ├── HttpResponseException.php │ │ │ │ └── PostTooLargeException.php │ │ │ ├── JsonResponse.php │ │ │ ├── Middleware │ │ │ │ ├── CheckResponseForModifications.php │ │ │ │ └── FrameGuard.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── ResponseTrait.php │ │ │ ├── UploadedFile.php │ │ │ └── composer.json │ │ │ ├── Log │ │ │ ├── Writer.php │ │ │ └── composer.json │ │ │ ├── Mail │ │ │ ├── Events │ │ │ │ └── MessageSending.php │ │ │ ├── MailServiceProvider.php │ │ │ ├── Mailer.php │ │ │ ├── Message.php │ │ │ ├── Transport │ │ │ │ ├── LogTransport.php │ │ │ │ ├── MailgunTransport.php │ │ │ │ ├── MandrillTransport.php │ │ │ │ ├── SesTransport.php │ │ │ │ ├── SparkPostTransport.php │ │ │ │ └── Transport.php │ │ │ ├── TransportManager.php │ │ │ └── composer.json │ │ │ ├── Pagination │ │ │ ├── AbstractPaginator.php │ │ │ ├── BootstrapFourNextPreviousButtonRendererTrait.php │ │ │ ├── BootstrapFourPresenter.php │ │ │ ├── BootstrapThreeNextPreviousButtonRendererTrait.php │ │ │ ├── BootstrapThreePresenter.php │ │ │ ├── LengthAwarePaginator.php │ │ │ ├── PaginationServiceProvider.php │ │ │ ├── Paginator.php │ │ │ ├── SimpleBootstrapFourPresenter.php │ │ │ ├── SimpleBootstrapThreePresenter.php │ │ │ ├── UrlWindow.php │ │ │ ├── UrlWindowPresenterTrait.php │ │ │ └── composer.json │ │ │ ├── Pipeline │ │ │ ├── Hub.php │ │ │ ├── Pipeline.php │ │ │ ├── PipelineServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Queue │ │ │ ├── BeanstalkdQueue.php │ │ │ ├── CallQueuedHandler.php │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Connectors │ │ │ │ ├── BeanstalkdConnector.php │ │ │ │ ├── ConnectorInterface.php │ │ │ │ ├── DatabaseConnector.php │ │ │ │ ├── NullConnector.php │ │ │ │ ├── RedisConnector.php │ │ │ │ ├── SqsConnector.php │ │ │ │ └── SyncConnector.php │ │ │ ├── Console │ │ │ │ ├── FailedTableCommand.php │ │ │ │ ├── FlushFailedCommand.php │ │ │ │ ├── ForgetFailedCommand.php │ │ │ │ ├── ListFailedCommand.php │ │ │ │ ├── ListenCommand.php │ │ │ │ ├── RestartCommand.php │ │ │ │ ├── RetryCommand.php │ │ │ │ ├── TableCommand.php │ │ │ │ ├── WorkCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── failed_jobs.stub │ │ │ │ │ └── jobs.stub │ │ │ ├── ConsoleServiceProvider.php │ │ │ ├── DatabaseQueue.php │ │ │ ├── Events │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ ├── JobFailed.php │ │ │ │ ├── JobProcessed.php │ │ │ │ ├── JobProcessing.php │ │ │ │ └── WorkerStopping.php │ │ │ ├── Failed │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ └── NullFailedJobProvider.php │ │ │ ├── IlluminateQueueClosure.php │ │ │ ├── InteractsWithQueue.php │ │ │ ├── Jobs │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ ├── DatabaseJob.php │ │ │ │ ├── Job.php │ │ │ │ ├── RedisJob.php │ │ │ │ ├── SqsJob.php │ │ │ │ └── SyncJob.php │ │ │ ├── Listener.php │ │ │ ├── NullQueue.php │ │ │ ├── Queue.php │ │ │ ├── QueueManager.php │ │ │ ├── QueueServiceProvider.php │ │ │ ├── README.md │ │ │ ├── RedisQueue.php │ │ │ ├── SerializesModels.php │ │ │ ├── SqsQueue.php │ │ │ ├── SyncQueue.php │ │ │ ├── Worker.php │ │ │ └── composer.json │ │ │ ├── Redis │ │ │ ├── Database.php │ │ │ ├── RedisServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Routing │ │ │ ├── Console │ │ │ │ ├── ControllerMakeCommand.php │ │ │ │ ├── MiddlewareMakeCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ ├── controller.stub │ │ │ │ │ └── middleware.stub │ │ │ ├── Controller.php │ │ │ ├── ControllerDispatcher.php │ │ │ ├── ControllerInspector.php │ │ │ ├── ControllerMiddlewareOptions.php │ │ │ ├── Events │ │ │ │ └── RouteMatched.php │ │ │ ├── Exceptions │ │ │ │ └── UrlGenerationException.php │ │ │ ├── Matching │ │ │ │ ├── HostValidator.php │ │ │ │ ├── MethodValidator.php │ │ │ │ ├── SchemeValidator.php │ │ │ │ ├── UriValidator.php │ │ │ │ └── ValidatorInterface.php │ │ │ ├── Middleware │ │ │ │ └── ThrottleRequests.php │ │ │ ├── Pipeline.php │ │ │ ├── Redirector.php │ │ │ ├── ResourceRegistrar.php │ │ │ ├── ResponseFactory.php │ │ │ ├── Route.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteDependencyResolverTrait.php │ │ │ ├── Router.php │ │ │ ├── RoutingServiceProvider.php │ │ │ ├── UrlGenerator.php │ │ │ └── composer.json │ │ │ ├── Session │ │ │ ├── CacheBasedSessionHandler.php │ │ │ ├── Console │ │ │ │ ├── SessionTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── database.stub │ │ │ ├── CookieSessionHandler.php │ │ │ ├── DatabaseSessionHandler.php │ │ │ ├── EncryptedStore.php │ │ │ ├── ExistenceAwareInterface.php │ │ │ ├── FileSessionHandler.php │ │ │ ├── LegacyDatabaseSessionHandler.php │ │ │ ├── Middleware │ │ │ │ └── StartSession.php │ │ │ ├── SessionInterface.php │ │ │ ├── SessionManager.php │ │ │ ├── SessionServiceProvider.php │ │ │ ├── Store.php │ │ │ ├── TokenMismatchException.php │ │ │ └── composer.json │ │ │ ├── Support │ │ │ ├── AggregateServiceProvider.php │ │ │ ├── Arr.php │ │ │ ├── ClassLoader.php │ │ │ ├── Collection.php │ │ │ ├── Composer.php │ │ │ ├── Debug │ │ │ │ ├── Dumper.php │ │ │ │ └── HtmlDumper.php │ │ │ ├── Facades │ │ │ │ ├── App.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Blade.php │ │ │ │ ├── Bus.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── DB.php │ │ │ │ ├── Event.php │ │ │ │ ├── Facade.php │ │ │ │ ├── File.php │ │ │ │ ├── Gate.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Input.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Log.php │ │ │ │ ├── Mail.php │ │ │ │ ├── Password.php │ │ │ │ ├── Queue.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 │ │ │ ├── HtmlString.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Pluralizer.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.php │ │ │ ├── Traits │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ └── Macroable.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── Translation │ │ │ ├── ArrayLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── TranslationServiceProvider.php │ │ │ ├── Translator.php │ │ │ └── composer.json │ │ │ ├── Validation │ │ │ ├── DatabasePresenceVerifier.php │ │ │ ├── Factory.php │ │ │ ├── PresenceVerifierInterface.php │ │ │ ├── ValidatesWhenResolvedTrait.php │ │ │ ├── ValidationException.php │ │ │ ├── ValidationServiceProvider.php │ │ │ ├── Validator.php │ │ │ └── composer.json │ │ │ └── View │ │ │ ├── Compilers │ │ │ ├── BladeCompiler.php │ │ │ ├── Compiler.php │ │ │ └── CompilerInterface.php │ │ │ ├── Engines │ │ │ ├── CompilerEngine.php │ │ │ ├── Engine.php │ │ │ ├── EngineInterface.php │ │ │ ├── EngineResolver.php │ │ │ └── PhpEngine.php │ │ │ ├── Expression.php │ │ │ ├── Factory.php │ │ │ ├── FileViewFinder.php │ │ │ ├── Middleware │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── View.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewServiceProvider.php │ │ │ └── composer.json │ ├── laravelcollective │ │ └── html │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── composer.json │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── Componentable.php │ │ │ ├── Eloquent │ │ │ └── FormAccessible.php │ │ │ ├── FormBuilder.php │ │ │ ├── FormFacade.php │ │ │ ├── HtmlBuilder.php │ │ │ ├── HtmlFacade.php │ │ │ ├── HtmlServiceProvider.php │ │ │ └── helpers.php │ ├── league │ │ ├── flysystem │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── SECURITY.md │ │ │ ├── composer.json │ │ │ ├── deprecations.md │ │ │ └── src │ │ │ │ ├── Adapter │ │ │ │ ├── AbstractAdapter.php │ │ │ │ ├── AbstractFtpAdapter.php │ │ │ │ ├── CanOverwriteFiles.php │ │ │ │ ├── Ftp.php │ │ │ │ ├── Ftpd.php │ │ │ │ ├── Local.php │ │ │ │ ├── NullAdapter.php │ │ │ │ ├── Polyfill │ │ │ │ │ ├── NotSupportingVisibilityTrait.php │ │ │ │ │ ├── StreamedCopyTrait.php │ │ │ │ │ ├── StreamedReadingTrait.php │ │ │ │ │ ├── StreamedTrait.php │ │ │ │ │ └── StreamedWritingTrait.php │ │ │ │ └── SynologyFtp.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigAwareTrait.php │ │ │ │ ├── ConnectionErrorException.php │ │ │ │ ├── ConnectionRuntimeException.php │ │ │ │ ├── Directory.php │ │ │ │ ├── Exception.php │ │ │ │ ├── File.php │ │ │ │ ├── FileExistsException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── Filesystem.php │ │ │ │ ├── FilesystemException.php │ │ │ │ ├── FilesystemInterface.php │ │ │ │ ├── FilesystemNotFoundException.php │ │ │ │ ├── Handler.php │ │ │ │ ├── InvalidRootException.php │ │ │ │ ├── MountManager.php │ │ │ │ ├── NotSupportedException.php │ │ │ │ ├── Plugin │ │ │ │ ├── AbstractPlugin.php │ │ │ │ ├── EmptyDir.php │ │ │ │ ├── ForcedCopy.php │ │ │ │ ├── ForcedRename.php │ │ │ │ ├── GetWithMetadata.php │ │ │ │ ├── ListFiles.php │ │ │ │ ├── ListPaths.php │ │ │ │ ├── ListWith.php │ │ │ │ ├── PluggableTrait.php │ │ │ │ └── PluginNotFoundException.php │ │ │ │ ├── PluginInterface.php │ │ │ │ ├── ReadInterface.php │ │ │ │ ├── RootViolationException.php │ │ │ │ ├── SafeStorage.php │ │ │ │ ├── UnreadableFileException.php │ │ │ │ ├── Util.php │ │ │ │ └── Util │ │ │ │ ├── ContentListingFormatter.php │ │ │ │ ├── MimeType.php │ │ │ │ └── StreamHasher.php │ │ └── mime-type-detection │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── EmptyExtensionToMimeTypeMap.php │ │ │ ├── ExtensionMimeTypeDetector.php │ │ │ ├── ExtensionToMimeTypeMap.php │ │ │ ├── FinfoMimeTypeDetector.php │ │ │ ├── GeneratedExtensionToMimeTypeMap.php │ │ │ └── MimeTypeDetector.php │ ├── monolog │ │ └── monolog │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Monolog │ │ │ ├── ErrorHandler.php │ │ │ ├── Formatter │ │ │ ├── ChromePHPFormatter.php │ │ │ ├── ElasticaFormatter.php │ │ │ ├── FlowdockFormatter.php │ │ │ ├── FluentdFormatter.php │ │ │ ├── FormatterInterface.php │ │ │ ├── GelfMessageFormatter.php │ │ │ ├── HtmlFormatter.php │ │ │ ├── JsonFormatter.php │ │ │ ├── LineFormatter.php │ │ │ ├── LogglyFormatter.php │ │ │ ├── LogstashFormatter.php │ │ │ ├── MongoDBFormatter.php │ │ │ ├── NormalizerFormatter.php │ │ │ ├── ScalarFormatter.php │ │ │ └── WildfireFormatter.php │ │ │ ├── Handler │ │ │ ├── AbstractHandler.php │ │ │ ├── AbstractProcessingHandler.php │ │ │ ├── AbstractSyslogHandler.php │ │ │ ├── AmqpHandler.php │ │ │ ├── BrowserConsoleHandler.php │ │ │ ├── BufferHandler.php │ │ │ ├── ChromePHPHandler.php │ │ │ ├── CouchDBHandler.php │ │ │ ├── CubeHandler.php │ │ │ ├── Curl │ │ │ │ └── Util.php │ │ │ ├── DeduplicationHandler.php │ │ │ ├── DoctrineCouchDBHandler.php │ │ │ ├── DynamoDbHandler.php │ │ │ ├── ElasticSearchHandler.php │ │ │ ├── ErrorLogHandler.php │ │ │ ├── FilterHandler.php │ │ │ ├── FingersCrossed │ │ │ │ ├── ActivationStrategyInterface.php │ │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ │ └── ErrorLevelActivationStrategy.php │ │ │ ├── FingersCrossedHandler.php │ │ │ ├── FirePHPHandler.php │ │ │ ├── FleepHookHandler.php │ │ │ ├── FlowdockHandler.php │ │ │ ├── FormattableHandlerInterface.php │ │ │ ├── FormattableHandlerTrait.php │ │ │ ├── GelfHandler.php │ │ │ ├── GroupHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HandlerWrapper.php │ │ │ ├── HipChatHandler.php │ │ │ ├── IFTTTHandler.php │ │ │ ├── InsightOpsHandler.php │ │ │ ├── LogEntriesHandler.php │ │ │ ├── LogglyHandler.php │ │ │ ├── MailHandler.php │ │ │ ├── MandrillHandler.php │ │ │ ├── MissingExtensionException.php │ │ │ ├── MongoDBHandler.php │ │ │ ├── NativeMailerHandler.php │ │ │ ├── NewRelicHandler.php │ │ │ ├── NullHandler.php │ │ │ ├── PHPConsoleHandler.php │ │ │ ├── ProcessableHandlerInterface.php │ │ │ ├── ProcessableHandlerTrait.php │ │ │ ├── PsrHandler.php │ │ │ ├── PushoverHandler.php │ │ │ ├── RavenHandler.php │ │ │ ├── RedisHandler.php │ │ │ ├── RollbarHandler.php │ │ │ ├── RotatingFileHandler.php │ │ │ ├── SamplingHandler.php │ │ │ ├── Slack │ │ │ │ └── SlackRecord.php │ │ │ ├── SlackHandler.php │ │ │ ├── SlackWebhookHandler.php │ │ │ ├── SlackbotHandler.php │ │ │ ├── SocketHandler.php │ │ │ ├── StreamHandler.php │ │ │ ├── SwiftMailerHandler.php │ │ │ ├── SyslogHandler.php │ │ │ ├── SyslogUdp │ │ │ │ └── UdpSocket.php │ │ │ ├── SyslogUdpHandler.php │ │ │ ├── TestHandler.php │ │ │ ├── WhatFailureGroupHandler.php │ │ │ └── ZendMonitorHandler.php │ │ │ ├── Logger.php │ │ │ ├── Processor │ │ │ ├── GitProcessor.php │ │ │ ├── IntrospectionProcessor.php │ │ │ ├── MemoryPeakUsageProcessor.php │ │ │ ├── MemoryProcessor.php │ │ │ ├── MemoryUsageProcessor.php │ │ │ ├── MercurialProcessor.php │ │ │ ├── ProcessIdProcessor.php │ │ │ ├── ProcessorInterface.php │ │ │ ├── PsrLogMessageProcessor.php │ │ │ ├── TagProcessor.php │ │ │ ├── UidProcessor.php │ │ │ └── WebProcessor.php │ │ │ ├── Registry.php │ │ │ ├── ResettableInterface.php │ │ │ ├── SignalHandler.php │ │ │ └── Utils.php │ ├── mtdowling │ │ └── cron-expression │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── src │ │ │ └── Cron │ │ │ │ ├── AbstractField.php │ │ │ │ ├── CronExpression.php │ │ │ │ ├── DayOfMonthField.php │ │ │ │ ├── DayOfWeekField.php │ │ │ │ ├── FieldFactory.php │ │ │ │ ├── FieldInterface.php │ │ │ │ ├── HoursField.php │ │ │ │ ├── MinutesField.php │ │ │ │ ├── MonthField.php │ │ │ │ └── YearField.php │ │ │ └── tests │ │ │ └── Cron │ │ │ ├── AbstractFieldTest.php │ │ │ ├── CronExpressionTest.php │ │ │ ├── DayOfMonthFieldTest.php │ │ │ ├── DayOfWeekFieldTest.php │ │ │ ├── FieldFactoryTest.php │ │ │ ├── HoursFieldTest.php │ │ │ ├── MinutesFieldTest.php │ │ │ ├── MonthFieldTest.php │ │ │ └── YearFieldTest.php │ ├── nesbot │ │ └── carbon │ │ │ ├── LICENSE │ │ │ ├── bin │ │ │ ├── upgrade-carbon │ │ │ └── upgrade-carbon.bat │ │ │ ├── composer.json │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── Carbon │ │ │ ├── Carbon.php │ │ │ ├── CarbonInterval.php │ │ │ ├── CarbonPeriod.php │ │ │ ├── Exceptions │ │ │ │ └── InvalidDateException.php │ │ │ ├── Lang │ │ │ │ ├── af.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_Shakl.php │ │ │ │ ├── az.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── bs_BA.php │ │ │ │ ├── ca.php │ │ │ │ ├── cs.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── dv_MV.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── id.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── ka.php │ │ │ │ ├── kk.php │ │ │ │ ├── km.php │ │ │ │ ├── ko.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── mk.php │ │ │ │ ├── mn.php │ │ │ │ ├── ms.php │ │ │ │ ├── my.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── no.php │ │ │ │ ├── oc.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_BR.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── sh.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── th.php │ │ │ │ ├── tr.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── uz.php │ │ │ │ ├── vi.php │ │ │ │ ├── zh.php │ │ │ │ └── zh_TW.php │ │ │ ├── Laravel │ │ │ │ └── ServiceProvider.php │ │ │ ├── Translator.php │ │ │ └── Upgrade.php │ │ │ └── JsonSerializable.php │ ├── nikic │ │ └── php-parser │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE-1.0.md │ │ │ ├── UPGRADE-2.0.md │ │ │ ├── bin │ │ │ └── php-parse │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── 0_Introduction.markdown │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ ├── 4_Code_generation.markdown │ │ │ └── component │ │ │ │ ├── Error.markdown │ │ │ │ └── Lexer.markdown │ │ │ ├── grammar │ │ │ ├── README.md │ │ │ ├── analyze.php │ │ │ ├── parser.template │ │ │ ├── php5.y │ │ │ ├── php7.y │ │ │ ├── rebuildParsers.php │ │ │ ├── tokens.template │ │ │ └── tokens.y │ │ │ ├── lib │ │ │ ├── PhpParser │ │ │ │ ├── Autoloader.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Builder │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Declaration.php │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Interface_.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ ├── Param.php │ │ │ │ │ ├── Property.php │ │ │ │ │ ├── Trait_.php │ │ │ │ │ └── Use_.php │ │ │ │ ├── BuilderAbstract.php │ │ │ │ ├── BuilderFactory.php │ │ │ │ ├── Comment.php │ │ │ │ ├── Comment │ │ │ │ │ └── Doc.php │ │ │ │ ├── Error.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Lexer │ │ │ │ │ └── Emulative.php │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Arg.php │ │ │ │ │ ├── Const_.php │ │ │ │ │ ├── Expr.php │ │ │ │ │ ├── Expr │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ ├── AssignOp.php │ │ │ │ │ │ ├── AssignOp │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ └── ShiftRight.php │ │ │ │ │ │ ├── AssignRef.php │ │ │ │ │ │ ├── BinaryOp.php │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── Name │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ └── Relative.php │ │ │ │ │ ├── Param.php │ │ │ │ │ ├── Scalar.php │ │ │ │ │ ├── Scalar │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ └── String_.php │ │ │ │ │ ├── Stmt.php │ │ │ │ │ └── Stmt │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ └── While_.php │ │ │ │ ├── NodeAbstract.php │ │ │ │ ├── NodeDumper.php │ │ │ │ ├── NodeTraverser.php │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ ├── NodeVisitor.php │ │ │ │ ├── NodeVisitor │ │ │ │ │ └── NameResolver.php │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Multiple.php │ │ │ │ │ ├── Php5.php │ │ │ │ │ ├── Php7.php │ │ │ │ │ └── Tokens.php │ │ │ │ ├── ParserAbstract.php │ │ │ │ ├── ParserFactory.php │ │ │ │ ├── PrettyPrinter │ │ │ │ │ └── Standard.php │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ ├── Serializer.php │ │ │ │ ├── Serializer │ │ │ │ │ └── XML.php │ │ │ │ ├── Unserializer.php │ │ │ │ └── Unserializer │ │ │ │ │ └── XML.php │ │ │ └── bootstrap.php │ │ │ ├── phpunit.xml.dist │ │ │ ├── test │ │ │ ├── PhpParser │ │ │ │ ├── AutoloaderTest.php │ │ │ │ ├── Builder │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ └── UseTest.php │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ ├── CodeParsingTest.php │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ ├── CommentTest.php │ │ │ │ ├── ErrorTest.php │ │ │ │ ├── Lexer │ │ │ │ │ └── EmulativeTest.php │ │ │ │ ├── LexerTest.php │ │ │ │ ├── Node │ │ │ │ │ ├── NameTest.php │ │ │ │ │ ├── Scalar │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ └── Stmt │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ ├── NodeDumperTest.php │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ ├── NodeVisitor │ │ │ │ │ └── NameResolverTest.php │ │ │ │ ├── Parser │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ └── Php7Test.php │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ ├── ParserTest.php │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ ├── Serializer │ │ │ │ │ └── XMLTest.php │ │ │ │ └── Unserializer │ │ │ │ │ └── XMLTest.php │ │ │ ├── bootstrap.php │ │ │ └── code │ │ │ │ ├── parser │ │ │ │ ├── blockComments.test │ │ │ │ ├── comments.test │ │ │ │ ├── errorHandling │ │ │ │ │ ├── eofError.test │ │ │ │ │ └── recovery.test │ │ │ │ ├── expr │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ ├── assign.test │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ ├── cast.test │ │ │ │ │ ├── clone.test │ │ │ │ │ ├── closure.test │ │ │ │ │ ├── comparison.test │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ ├── exit.test │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ ├── logic.test │ │ │ │ │ ├── math.test │ │ │ │ │ ├── new.test │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ ├── print.test │ │ │ │ │ ├── shellExec.test │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ ├── uvs │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ └── variable.test │ │ │ │ ├── scalar │ │ │ │ │ ├── constantString.test │ │ │ │ │ ├── docString.test │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ ├── float.test │ │ │ │ │ ├── int.test │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ ├── magicConst.test │ │ │ │ │ └── unicodeEscape.test │ │ │ │ ├── semiReserved.test │ │ │ │ └── stmt │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ ├── class │ │ │ │ │ ├── abstract.test │ │ │ │ │ ├── anonymous.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── final.test │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ ├── interface.test │ │ │ │ │ ├── modifier.test │ │ │ │ │ ├── name.test │ │ │ │ │ ├── php4Style.test │ │ │ │ │ ├── simple.test │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ └── trait.test │ │ │ │ │ ├── const.test │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ ├── declare.test │ │ │ │ │ ├── echo.test │ │ │ │ │ ├── function │ │ │ │ │ ├── byRef.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ ├── scalarTypeDeclarations.test │ │ │ │ │ ├── specialVars.test │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ ├── variadic.test │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ ├── generator │ │ │ │ │ ├── basic.test │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ ├── hashbang.test │ │ │ │ │ ├── if.test │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ ├── loop │ │ │ │ │ ├── do.test │ │ │ │ │ ├── for.test │ │ │ │ │ ├── foreach.test │ │ │ │ │ └── while.test │ │ │ │ │ ├── namespace │ │ │ │ │ ├── alias.test │ │ │ │ │ ├── braced.test │ │ │ │ │ ├── groupUse.test │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ ├── invalidName.test │ │ │ │ │ ├── mix.test │ │ │ │ │ ├── name.test │ │ │ │ │ ├── nested.test │ │ │ │ │ ├── notBraced.test │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ ├── switch.test │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ └── unset.test │ │ │ │ └── prettyPrinter │ │ │ │ ├── comments.test │ │ │ │ ├── expr │ │ │ │ ├── anonymousClass.test │ │ │ │ ├── call.test │ │ │ │ ├── closure.test │ │ │ │ ├── constant_deref.test │ │ │ │ ├── docStrings.test │ │ │ │ ├── include.test │ │ │ │ ├── intrinsics.test │ │ │ │ ├── list.test │ │ │ │ ├── literals.test │ │ │ │ ├── numbers.test │ │ │ │ ├── operators.test │ │ │ │ ├── parentheses.test │ │ │ │ ├── shortArraySyntax.test │ │ │ │ ├── stringEscaping.test │ │ │ │ ├── uvs.test │ │ │ │ ├── variables.test │ │ │ │ └── yield.test │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ ├── onlyPHP.file-test │ │ │ │ └── stmt │ │ │ │ ├── alias.test │ │ │ │ ├── break_continue.test │ │ │ │ ├── class.test │ │ │ │ ├── const.test │ │ │ │ ├── declare.test │ │ │ │ ├── do_while.test │ │ │ │ ├── for.test │ │ │ │ ├── foreach.test │ │ │ │ ├── function_signatures.test │ │ │ │ ├── global_static_variables.test │ │ │ │ ├── goto.test │ │ │ │ ├── groupUse.test │ │ │ │ ├── haltCompiler.file-test │ │ │ │ ├── if.test │ │ │ │ ├── namespaces.test │ │ │ │ ├── switch.test │ │ │ │ ├── throw.test │ │ │ │ ├── traitUse.test │ │ │ │ ├── tryCatch.test │ │ │ │ └── while.test │ │ │ └── test_old │ │ │ ├── run-php-src.sh │ │ │ └── run.php │ ├── paragonie │ │ └── random_compat │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── RATIONALE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── build-phar.sh │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── random_compat.phar.pubkey │ │ │ └── random_compat.phar.pubkey.asc │ │ │ ├── lib │ │ │ ├── byte_safe_strings.php │ │ │ ├── cast_to_int.php │ │ │ ├── error_polyfill.php │ │ │ ├── random.php │ │ │ ├── random_bytes_com_dotnet.php │ │ │ ├── random_bytes_dev_urandom.php │ │ │ ├── random_bytes_libsodium.php │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ ├── random_bytes_mcrypt.php │ │ │ ├── random_bytes_openssl.php │ │ │ └── random_int.php │ │ │ ├── other │ │ │ ├── build_phar.php │ │ │ └── ide_stubs │ │ │ │ ├── COM.php │ │ │ │ ├── README.md │ │ │ │ ├── com_exception.php │ │ │ │ └── libsodium.php │ │ │ ├── psalm-autoload.php │ │ │ └── psalm.xml │ ├── psr │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── DummyTest.php │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ │ ├── README.md │ │ │ └── composer.json │ ├── psy │ │ └── psysh │ │ │ ├── .gitignore │ │ │ ├── .php_cs │ │ │ ├── .styleci.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ ├── build │ │ │ ├── build-manual │ │ │ ├── build-phar │ │ │ ├── build-vendor │ │ │ └── psysh │ │ │ ├── composer.json │ │ │ ├── phpcs.xml │ │ │ ├── phpunit.xml.dist │ │ │ ├── src │ │ │ └── Psy │ │ │ │ ├── Autoloader.php │ │ │ │ ├── CodeCleaner.php │ │ │ │ ├── CodeCleaner │ │ │ │ ├── AbstractClassPass.php │ │ │ │ ├── AssignThisVariablePass.php │ │ │ │ ├── CallTimePassByReferencePass.php │ │ │ │ ├── CalledClassPass.php │ │ │ │ ├── CodeCleanerPass.php │ │ │ │ ├── ExitPass.php │ │ │ │ ├── FunctionReturnInWriteContextPass.php │ │ │ │ ├── ImplicitReturnPass.php │ │ │ │ ├── InstanceOfPass.php │ │ │ │ ├── LeavePsyshAlonePass.php │ │ │ │ ├── LegacyEmptyPass.php │ │ │ │ ├── MagicConstantsPass.php │ │ │ │ ├── NamespaceAwarePass.php │ │ │ │ ├── NamespacePass.php │ │ │ │ ├── StaticConstructorPass.php │ │ │ │ ├── StrictTypesPass.php │ │ │ │ ├── UseStatementPass.php │ │ │ │ ├── ValidClassNamePass.php │ │ │ │ ├── ValidConstantPass.php │ │ │ │ └── ValidFunctionNamePass.php │ │ │ │ ├── Command │ │ │ │ ├── BufferCommand.php │ │ │ │ ├── ClearCommand.php │ │ │ │ ├── Command.php │ │ │ │ ├── DocCommand.php │ │ │ │ ├── DumpCommand.php │ │ │ │ ├── ExitCommand.php │ │ │ │ ├── HelpCommand.php │ │ │ │ ├── HistoryCommand.php │ │ │ │ ├── ListCommand.php │ │ │ │ ├── ListCommand │ │ │ │ │ ├── ClassConstantEnumerator.php │ │ │ │ │ ├── ClassEnumerator.php │ │ │ │ │ ├── ConstantEnumerator.php │ │ │ │ │ ├── Enumerator.php │ │ │ │ │ ├── FunctionEnumerator.php │ │ │ │ │ ├── GlobalVariableEnumerator.php │ │ │ │ │ ├── InterfaceEnumerator.php │ │ │ │ │ ├── MethodEnumerator.php │ │ │ │ │ ├── PropertyEnumerator.php │ │ │ │ │ ├── TraitEnumerator.php │ │ │ │ │ └── VariableEnumerator.php │ │ │ │ ├── ParseCommand.php │ │ │ │ ├── PsyVersionCommand.php │ │ │ │ ├── ReflectingCommand.php │ │ │ │ ├── ShowCommand.php │ │ │ │ ├── ThrowUpCommand.php │ │ │ │ ├── TraceCommand.php │ │ │ │ ├── WhereamiCommand.php │ │ │ │ └── WtfCommand.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── ConfigPaths.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── ConsoleColorFactory.php │ │ │ │ ├── Context.php │ │ │ │ ├── ContextAware.php │ │ │ │ ├── Exception │ │ │ │ ├── BreakException.php │ │ │ │ ├── DeprecatedException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── ParseErrorException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── ThrowUpException.php │ │ │ │ └── TypeErrorException.php │ │ │ │ ├── ExecutionLoop │ │ │ │ ├── ForkingLoop.php │ │ │ │ └── Loop.php │ │ │ │ ├── Formatter │ │ │ │ ├── CodeFormatter.php │ │ │ │ ├── DocblockFormatter.php │ │ │ │ ├── Formatter.php │ │ │ │ └── SignatureFormatter.php │ │ │ │ ├── Output │ │ │ │ ├── OutputPager.php │ │ │ │ ├── PassthruPager.php │ │ │ │ ├── ProcOutputPager.php │ │ │ │ └── ShellOutput.php │ │ │ │ ├── ParserFactory.php │ │ │ │ ├── Readline │ │ │ │ ├── GNUReadline.php │ │ │ │ ├── Libedit.php │ │ │ │ ├── Readline.php │ │ │ │ └── Transient.php │ │ │ │ ├── Reflection │ │ │ │ └── ReflectionConstant.php │ │ │ │ ├── Shell.php │ │ │ │ ├── TabCompletion │ │ │ │ ├── AutoCompleter.php │ │ │ │ └── Matcher │ │ │ │ │ ├── AbstractContextAwareMatcher.php │ │ │ │ │ ├── AbstractMatcher.php │ │ │ │ │ ├── ClassAttributesMatcher.php │ │ │ │ │ ├── ClassMethodsMatcher.php │ │ │ │ │ ├── ClassNamesMatcher.php │ │ │ │ │ ├── CommandsMatcher.php │ │ │ │ │ ├── ConstantsMatcher.php │ │ │ │ │ ├── FunctionsMatcher.php │ │ │ │ │ ├── KeywordsMatcher.php │ │ │ │ │ ├── MongoClientMatcher.php │ │ │ │ │ ├── MongoDatabaseMatcher.php │ │ │ │ │ ├── ObjectAttributesMatcher.php │ │ │ │ │ ├── ObjectMethodsMatcher.php │ │ │ │ │ └── VariablesMatcher.php │ │ │ │ ├── Util │ │ │ │ ├── Docblock.php │ │ │ │ ├── Json.php │ │ │ │ ├── Mirror.php │ │ │ │ └── Str.php │ │ │ │ ├── VarDumper │ │ │ │ ├── Cloner.php │ │ │ │ ├── Dumper.php │ │ │ │ ├── Presenter.php │ │ │ │ └── PresenterAware.php │ │ │ │ └── functions.php │ │ │ └── test │ │ │ ├── Psy │ │ │ └── Test │ │ │ │ ├── AutoloaderTest.php │ │ │ │ ├── CodeCleaner │ │ │ │ ├── AbstractClassPassTest.php │ │ │ │ ├── AssignThisVariablePassTest.php │ │ │ │ ├── CallTimePassByReferencePassTest.php │ │ │ │ ├── CalledClassPassTest.php │ │ │ │ ├── CodeCleanerTestCase.php │ │ │ │ ├── ExitPassTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ClassWithCallStatic.php │ │ │ │ │ └── ClassWithStatic.php │ │ │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ │ │ ├── ImplicitReturnPassTest.php │ │ │ │ ├── InstanceOfPassTest.php │ │ │ │ ├── LeavePsyshAlonePassTest.php │ │ │ │ ├── LegacyEmptyPassTest.php │ │ │ │ ├── MagicConstantsPassTest.php │ │ │ │ ├── NamespacePassTest.php │ │ │ │ ├── StaticConstructorPassTest.php │ │ │ │ ├── StrictTypesPassTest.php │ │ │ │ ├── UseStatementPassTest.php │ │ │ │ ├── ValidClassNamePassTest.php │ │ │ │ ├── ValidConstantPassTest.php │ │ │ │ └── ValidFunctionNamePassTest.php │ │ │ │ ├── CodeCleanerTest.php │ │ │ │ ├── ConfigurationTest.php │ │ │ │ ├── ConsoleColorFactoryTest.php │ │ │ │ ├── Exception │ │ │ │ ├── BreakExceptionTest.php │ │ │ │ ├── ErrorExceptionTest.php │ │ │ │ ├── FatalErrorExceptionTest.php │ │ │ │ ├── ParseErrorExceptionTest.php │ │ │ │ └── RuntimeExceptionTest.php │ │ │ │ ├── Formatter │ │ │ │ ├── CodeFormatterTest.php │ │ │ │ ├── DocblockFormatterTest.php │ │ │ │ └── SignatureFormatterTest.php │ │ │ │ ├── Readline │ │ │ │ ├── GNUReadlineTest.php │ │ │ │ ├── LibeditTest.php │ │ │ │ └── TransientTest.php │ │ │ │ ├── Reflection │ │ │ │ └── ReflectionConstantTest.php │ │ │ │ ├── ShellTest.php │ │ │ │ ├── TabCompletion │ │ │ │ ├── AutoCompleterTest.php │ │ │ │ └── StaticSample.php │ │ │ │ └── Util │ │ │ │ ├── DocblockTest.php │ │ │ │ ├── MirrorTest.php │ │ │ │ └── StrTest.php │ │ │ ├── fixtures │ │ │ ├── config.php │ │ │ ├── default │ │ │ │ ├── .config │ │ │ │ │ └── psysh │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ └── psysh_history │ │ │ │ └── .local │ │ │ │ │ └── share │ │ │ │ │ └── psysh │ │ │ │ │ └── php_manual.sqlite │ │ │ ├── empty.php │ │ │ ├── legacy │ │ │ │ └── .psysh │ │ │ │ │ ├── history │ │ │ │ │ ├── php_manual.sqlite │ │ │ │ │ └── rc.php │ │ │ ├── mixed │ │ │ │ └── .psysh │ │ │ │ │ ├── config.php │ │ │ │ │ ├── psysh_history │ │ │ │ │ └── rc.php │ │ │ ├── project │ │ │ │ └── .psysh.php │ │ │ └── unvis_fixtures.json │ │ │ └── tools │ │ │ ├── gen_unvis_fixtures.py │ │ │ └── vis.py │ ├── swiftmailer │ │ └── swiftmailer │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .php_cs.dist │ │ │ ├── .travis.yml │ │ │ ├── CHANGES │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ ├── doc │ │ │ ├── headers.rst │ │ │ ├── help-resources.rst │ │ │ ├── including-the-files.rst │ │ │ ├── index.rst │ │ │ ├── installing.rst │ │ │ ├── introduction.rst │ │ │ ├── japanese.rst │ │ │ ├── messages.rst │ │ │ ├── overview.rst │ │ │ ├── plugins.rst │ │ │ ├── sending.rst │ │ │ └── uml │ │ │ │ ├── Encoders.graffle │ │ │ │ ├── Mime.graffle │ │ │ │ └── Transports.graffle │ │ │ ├── lib │ │ │ ├── classes │ │ │ │ ├── Swift.php │ │ │ │ └── Swift │ │ │ │ │ ├── Attachment.php │ │ │ │ │ ├── ByteStream │ │ │ │ │ ├── AbstractFilterableInputStream.php │ │ │ │ │ ├── ArrayByteStream.php │ │ │ │ │ ├── FileByteStream.php │ │ │ │ │ └── TemporaryFileByteStream.php │ │ │ │ │ ├── CharacterReader.php │ │ │ │ │ ├── CharacterReader │ │ │ │ │ ├── GenericFixedWidthReader.php │ │ │ │ │ ├── UsAsciiReader.php │ │ │ │ │ └── Utf8Reader.php │ │ │ │ │ ├── CharacterReaderFactory.php │ │ │ │ │ ├── CharacterReaderFactory │ │ │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ │ │ ├── CharacterStream.php │ │ │ │ │ ├── CharacterStream │ │ │ │ │ ├── ArrayCharacterStream.php │ │ │ │ │ └── NgCharacterStream.php │ │ │ │ │ ├── ConfigurableSpool.php │ │ │ │ │ ├── DependencyContainer.php │ │ │ │ │ ├── DependencyException.php │ │ │ │ │ ├── EmbeddedFile.php │ │ │ │ │ ├── Encoder.php │ │ │ │ │ ├── Encoder │ │ │ │ │ ├── Base64Encoder.php │ │ │ │ │ ├── QpEncoder.php │ │ │ │ │ └── Rfc2231Encoder.php │ │ │ │ │ ├── Encoding.php │ │ │ │ │ ├── Events │ │ │ │ │ ├── CommandEvent.php │ │ │ │ │ ├── CommandListener.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventDispatcher.php │ │ │ │ │ ├── EventListener.php │ │ │ │ │ ├── EventObject.php │ │ │ │ │ ├── ResponseEvent.php │ │ │ │ │ ├── ResponseListener.php │ │ │ │ │ ├── SendEvent.php │ │ │ │ │ ├── SendListener.php │ │ │ │ │ ├── SimpleEventDispatcher.php │ │ │ │ │ ├── TransportChangeEvent.php │ │ │ │ │ ├── TransportChangeListener.php │ │ │ │ │ ├── TransportExceptionEvent.php │ │ │ │ │ └── TransportExceptionListener.php │ │ │ │ │ ├── FailoverTransport.php │ │ │ │ │ ├── FileSpool.php │ │ │ │ │ ├── FileStream.php │ │ │ │ │ ├── Filterable.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InputByteStream.php │ │ │ │ │ ├── IoException.php │ │ │ │ │ ├── KeyCache.php │ │ │ │ │ ├── KeyCache │ │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ │ ├── DiskKeyCache.php │ │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ │ ├── NullKeyCache.php │ │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ │ ├── MailTransport.php │ │ │ │ │ ├── Mailer.php │ │ │ │ │ ├── Mailer │ │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ │ └── RecipientIterator.php │ │ │ │ │ ├── MemorySpool.php │ │ │ │ │ ├── Message.php │ │ │ │ │ ├── Mime │ │ │ │ │ ├── Attachment.php │ │ │ │ │ ├── CharsetObserver.php │ │ │ │ │ ├── ContentEncoder.php │ │ │ │ │ ├── ContentEncoder │ │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ │ ├── QpContentEncoder.php │ │ │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ │ │ └── RawContentEncoder.php │ │ │ │ │ ├── EmbeddedFile.php │ │ │ │ │ ├── EncodingObserver.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── HeaderEncoder.php │ │ │ │ │ ├── HeaderEncoder │ │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ │ ├── HeaderFactory.php │ │ │ │ │ ├── HeaderSet.php │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ │ ├── Message.php │ │ │ │ │ ├── MimeEntity.php │ │ │ │ │ ├── MimePart.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── SimpleHeaderFactory.php │ │ │ │ │ ├── SimpleHeaderSet.php │ │ │ │ │ ├── SimpleMessage.php │ │ │ │ │ └── SimpleMimeEntity.php │ │ │ │ │ ├── MimePart.php │ │ │ │ │ ├── NullTransport.php │ │ │ │ │ ├── OutputByteStream.php │ │ │ │ │ ├── Plugins │ │ │ │ │ ├── AntiFloodPlugin.php │ │ │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ │ │ ├── Decorator │ │ │ │ │ │ └── Replacements.php │ │ │ │ │ ├── DecoratorPlugin.php │ │ │ │ │ ├── ImpersonatePlugin.php │ │ │ │ │ ├── Logger.php │ │ │ │ │ ├── LoggerPlugin.php │ │ │ │ │ ├── Loggers │ │ │ │ │ │ ├── ArrayLogger.php │ │ │ │ │ │ └── EchoLogger.php │ │ │ │ │ ├── MessageLogger.php │ │ │ │ │ ├── Pop │ │ │ │ │ │ ├── Pop3Connection.php │ │ │ │ │ │ └── Pop3Exception.php │ │ │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ │ │ ├── RedirectingPlugin.php │ │ │ │ │ ├── Reporter.php │ │ │ │ │ ├── ReporterPlugin.php │ │ │ │ │ ├── Reporters │ │ │ │ │ │ ├── HitReporter.php │ │ │ │ │ │ └── HtmlReporter.php │ │ │ │ │ ├── Sleeper.php │ │ │ │ │ ├── ThrottlerPlugin.php │ │ │ │ │ └── Timer.php │ │ │ │ │ ├── Preferences.php │ │ │ │ │ ├── ReplacementFilterFactory.php │ │ │ │ │ ├── RfcComplianceException.php │ │ │ │ │ ├── SendmailTransport.php │ │ │ │ │ ├── SignedMessage.php │ │ │ │ │ ├── Signer.php │ │ │ │ │ ├── Signers │ │ │ │ │ ├── BodySigner.php │ │ │ │ │ ├── DKIMSigner.php │ │ │ │ │ ├── DomainKeySigner.php │ │ │ │ │ ├── HeaderSigner.php │ │ │ │ │ ├── OpenDKIMSigner.php │ │ │ │ │ └── SMimeSigner.php │ │ │ │ │ ├── SmtpTransport.php │ │ │ │ │ ├── Spool.php │ │ │ │ │ ├── SpoolTransport.php │ │ │ │ │ ├── StreamFilter.php │ │ │ │ │ ├── StreamFilters │ │ │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ │ │ ├── StringReplacementFilter.php │ │ │ │ │ └── StringReplacementFilterFactory.php │ │ │ │ │ ├── SwiftException.php │ │ │ │ │ ├── Transport.php │ │ │ │ │ ├── Transport │ │ │ │ │ ├── AbstractSmtpTransport.php │ │ │ │ │ ├── Esmtp │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ │ │ ├── AuthHandler.php │ │ │ │ │ │ └── Authenticator.php │ │ │ │ │ ├── EsmtpHandler.php │ │ │ │ │ ├── EsmtpTransport.php │ │ │ │ │ ├── FailoverTransport.php │ │ │ │ │ ├── IoBuffer.php │ │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ │ ├── MailInvoker.php │ │ │ │ │ ├── MailTransport.php │ │ │ │ │ ├── NullTransport.php │ │ │ │ │ ├── SendmailTransport.php │ │ │ │ │ ├── SimpleMailInvoker.php │ │ │ │ │ ├── SmtpAgent.php │ │ │ │ │ ├── SpoolTransport.php │ │ │ │ │ └── StreamBuffer.php │ │ │ │ │ ├── TransportException.php │ │ │ │ │ └── Validate.php │ │ │ ├── dependency_maps │ │ │ │ ├── cache_deps.php │ │ │ │ ├── message_deps.php │ │ │ │ ├── mime_deps.php │ │ │ │ └── transport_deps.php │ │ │ ├── mime_types.php │ │ │ ├── preferences.php │ │ │ ├── swift_init.php │ │ │ ├── swift_required.php │ │ │ ├── swift_required_pear.php │ │ │ └── swiftmailer_generate_mimes_config.php │ │ │ ├── phpunit.xml.dist │ │ │ └── tests │ │ │ ├── IdenticalBinaryConstraint.php │ │ │ ├── StreamCollector.php │ │ │ ├── SwiftMailerSmokeTestCase.php │ │ │ ├── SwiftMailerTestCase.php │ │ │ ├── _samples │ │ │ ├── charsets │ │ │ │ ├── iso-2022-jp │ │ │ │ │ └── one.txt │ │ │ │ ├── iso-8859-1 │ │ │ │ │ └── one.txt │ │ │ │ └── utf-8 │ │ │ │ │ ├── one.txt │ │ │ │ │ ├── three.txt │ │ │ │ │ └── two.txt │ │ │ ├── dkim │ │ │ │ ├── dkim.test.priv │ │ │ │ └── dkim.test.pub │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── swiftmailer.png │ │ │ │ └── textfile.zip │ │ │ └── smime │ │ │ │ ├── CA.srl │ │ │ │ ├── ca.crt │ │ │ │ ├── ca.key │ │ │ │ ├── create-cert.sh │ │ │ │ ├── encrypt.crt │ │ │ │ ├── encrypt.key │ │ │ │ ├── encrypt2.crt │ │ │ │ ├── encrypt2.key │ │ │ │ ├── intermediate.crt │ │ │ │ ├── intermediate.key │ │ │ │ ├── sign.crt │ │ │ │ ├── sign.key │ │ │ │ ├── sign2.crt │ │ │ │ └── sign2.key │ │ │ ├── acceptance.conf.php.default │ │ │ ├── acceptance │ │ │ └── Swift │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── ByteStream │ │ │ │ └── FileByteStreamAcceptanceTest.php │ │ │ │ ├── CharacterReaderFactory │ │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ │ │ ├── DependencyContainerAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ ├── Encoder │ │ │ │ ├── Base64EncoderAcceptanceTest.php │ │ │ │ ├── QpEncoderAcceptanceTest.php │ │ │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ │ │ ├── EncodingAcceptanceTest.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ │ │ └── DiskKeyCacheAcceptanceTest.php │ │ │ │ ├── MessageAcceptanceTest.php │ │ │ │ ├── Mime │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ │ │ ├── MimePartAcceptanceTest.php │ │ │ │ └── SimpleMessageAcceptanceTest.php │ │ │ │ ├── MimePartAcceptanceTest.php │ │ │ │ └── Transport │ │ │ │ └── StreamBuffer │ │ │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ │ │ ├── BasicSocketAcceptanceTest.php │ │ │ │ ├── ProcessAcceptanceTest.php │ │ │ │ ├── SocketTimeoutTest.php │ │ │ │ ├── SslSocketAcceptanceTest.php │ │ │ │ └── TlsSocketAcceptanceTest.php │ │ │ ├── bootstrap.php │ │ │ ├── bug │ │ │ └── Swift │ │ │ │ ├── Bug111Test.php │ │ │ │ ├── Bug118Test.php │ │ │ │ ├── Bug206Test.php │ │ │ │ ├── Bug274Test.php │ │ │ │ ├── Bug34Test.php │ │ │ │ ├── Bug35Test.php │ │ │ │ ├── Bug38Test.php │ │ │ │ ├── Bug518Test.php │ │ │ │ ├── Bug51Test.php │ │ │ │ ├── Bug534Test.php │ │ │ │ ├── Bug650Test.php │ │ │ │ ├── Bug71Test.php │ │ │ │ ├── Bug76Test.php │ │ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php │ │ │ ├── fixtures │ │ │ └── MimeEntityFixture.php │ │ │ ├── smoke.conf.php.default │ │ │ ├── smoke │ │ │ └── Swift │ │ │ │ └── Smoke │ │ │ │ ├── AttachmentSmokeTest.php │ │ │ │ ├── BasicSmokeTest.php │ │ │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ │ │ └── InternationalSmokeTest.php │ │ │ └── unit │ │ │ └── Swift │ │ │ ├── ByteStream │ │ │ └── ArrayByteStreamTest.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReaderTest.php │ │ │ ├── UsAsciiReaderTest.php │ │ │ └── Utf8ReaderTest.php │ │ │ ├── CharacterStream │ │ │ └── ArrayCharacterStreamTest.php │ │ │ ├── DependencyContainerTest.php │ │ │ ├── Encoder │ │ │ ├── Base64EncoderTest.php │ │ │ ├── QpEncoderTest.php │ │ │ └── Rfc2231EncoderTest.php │ │ │ ├── Events │ │ │ ├── CommandEventTest.php │ │ │ ├── EventObjectTest.php │ │ │ ├── ResponseEventTest.php │ │ │ ├── SendEventTest.php │ │ │ ├── SimpleEventDispatcherTest.php │ │ │ ├── TransportChangeEventTest.php │ │ │ └── TransportExceptionEventTest.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCacheTest.php │ │ │ └── SimpleKeyCacheInputStreamTest.php │ │ │ ├── Mailer │ │ │ └── ArrayRecipientIteratorTest.php │ │ │ ├── MailerTest.php │ │ │ ├── MessageTest.php │ │ │ ├── Mime │ │ │ ├── AbstractMimeEntityTest.php │ │ │ ├── AttachmentTest.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoderTest.php │ │ │ │ ├── PlainContentEncoderTest.php │ │ │ │ └── QpContentEncoderTest.php │ │ │ ├── EmbeddedFileTest.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoderTest.php │ │ │ │ └── QpHeaderEncoderTest.php │ │ │ ├── Headers │ │ │ │ ├── DateHeaderTest.php │ │ │ │ ├── IdentificationHeaderTest.php │ │ │ │ ├── MailboxHeaderTest.php │ │ │ │ ├── ParameterizedHeaderTest.php │ │ │ │ ├── PathHeaderTest.php │ │ │ │ └── UnstructuredHeaderTest.php │ │ │ ├── MimePartTest.php │ │ │ ├── SimpleHeaderFactoryTest.php │ │ │ ├── SimpleHeaderSetTest.php │ │ │ ├── SimpleMessageTest.php │ │ │ └── SimpleMimeEntityTest.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPluginTest.php │ │ │ ├── BandwidthMonitorPluginTest.php │ │ │ ├── DecoratorPluginTest.php │ │ │ ├── LoggerPluginTest.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLoggerTest.php │ │ │ │ └── EchoLoggerTest.php │ │ │ ├── PopBeforeSmtpPluginTest.php │ │ │ ├── RedirectingPluginTest.php │ │ │ ├── ReporterPluginTest.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporterTest.php │ │ │ │ └── HtmlReporterTest.php │ │ │ └── ThrottlerPluginTest.php │ │ │ ├── Signers │ │ │ ├── DKIMSignerTest.php │ │ │ ├── OpenDKIMSignerTest.php │ │ │ └── SMimeSignerTest.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilterTest.php │ │ │ ├── StringReplacementFilterFactoryTest.php │ │ │ └── StringReplacementFilterTest.php │ │ │ └── Transport │ │ │ ├── AbstractSmtpEventSupportTest.php │ │ │ ├── AbstractSmtpTest.php │ │ │ ├── Esmtp │ │ │ ├── Auth │ │ │ │ ├── CramMd5AuthenticatorTest.php │ │ │ │ ├── LoginAuthenticatorTest.php │ │ │ │ ├── NTLMAuthenticatorTest.php │ │ │ │ └── PlainAuthenticatorTest.php │ │ │ └── AuthHandlerTest.php │ │ │ ├── EsmtpTransport │ │ │ └── ExtensionSupportTest.php │ │ │ ├── EsmtpTransportTest.php │ │ │ ├── FailoverTransportTest.php │ │ │ ├── LoadBalancedTransportTest.php │ │ │ ├── MailTransportTest.php │ │ │ ├── SendmailTransportTest.php │ │ │ └── StreamBufferTest.php │ ├── symfony │ │ ├── console │ │ │ ├── .gitignore │ │ │ ├── Application.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Command │ │ │ │ ├── Command.php │ │ │ │ ├── HelpCommand.php │ │ │ │ └── ListCommand.php │ │ │ ├── ConsoleEvents.php │ │ │ ├── Descriptor │ │ │ │ ├── ApplicationDescription.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorInterface.php │ │ │ │ ├── JsonDescriptor.php │ │ │ │ ├── MarkdownDescriptor.php │ │ │ │ ├── TextDescriptor.php │ │ │ │ └── XmlDescriptor.php │ │ │ ├── Event │ │ │ │ ├── ConsoleCommandEvent.php │ │ │ │ ├── ConsoleEvent.php │ │ │ │ ├── ConsoleExceptionEvent.php │ │ │ │ └── ConsoleTerminateEvent.php │ │ │ ├── Exception │ │ │ │ ├── CommandNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionException.php │ │ │ │ ├── LogicException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Formatter │ │ │ │ ├── OutputFormatter.php │ │ │ │ ├── OutputFormatterInterface.php │ │ │ │ ├── OutputFormatterStyle.php │ │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ │ └── OutputFormatterStyleStack.php │ │ │ ├── Helper │ │ │ │ ├── DebugFormatterHelper.php │ │ │ │ ├── DescriptorHelper.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 │ │ │ │ ├── TableSeparator.php │ │ │ │ └── TableStyle.php │ │ │ ├── Input │ │ │ │ ├── ArgvInput.php │ │ │ │ ├── ArrayInput.php │ │ │ │ ├── Input.php │ │ │ │ ├── InputArgument.php │ │ │ │ ├── InputAwareInterface.php │ │ │ │ ├── InputDefinition.php │ │ │ │ ├── InputInterface.php │ │ │ │ ├── InputOption.php │ │ │ │ └── StringInput.php │ │ │ ├── LICENSE │ │ │ ├── Logger │ │ │ │ └── ConsoleLogger.php │ │ │ ├── Output │ │ │ │ ├── BufferedOutput.php │ │ │ │ ├── ConsoleOutput.php │ │ │ │ ├── ConsoleOutputInterface.php │ │ │ │ ├── NullOutput.php │ │ │ │ ├── Output.php │ │ │ │ ├── OutputInterface.php │ │ │ │ └── StreamOutput.php │ │ │ ├── Question │ │ │ │ ├── ChoiceQuestion.php │ │ │ │ ├── ConfirmationQuestion.php │ │ │ │ └── Question.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── bin │ │ │ │ │ └── hiddeninput.exe │ │ │ ├── Style │ │ │ │ ├── OutputStyle.php │ │ │ │ ├── StyleInterface.php │ │ │ │ └── SymfonyStyle.php │ │ │ ├── Tester │ │ │ │ ├── ApplicationTester.php │ │ │ │ └── CommandTester.php │ │ │ ├── Tests │ │ │ │ ├── ApplicationTest.php │ │ │ │ ├── Command │ │ │ │ │ ├── CommandTest.php │ │ │ │ │ ├── HelpCommandTest.php │ │ │ │ │ └── ListCommandTest.php │ │ │ │ ├── Descriptor │ │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ │ ├── MarkdownDescriptorTest.php │ │ │ │ │ ├── ObjectsProvider.php │ │ │ │ │ ├── TextDescriptorTest.php │ │ │ │ │ └── XmlDescriptorTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── BarBucCommand.php │ │ │ │ │ ├── DescriptorApplication1.php │ │ │ │ │ ├── DescriptorApplication2.php │ │ │ │ │ ├── DescriptorCommand1.php │ │ │ │ │ ├── DescriptorCommand2.php │ │ │ │ │ ├── DummyOutput.php │ │ │ │ │ ├── Foo1Command.php │ │ │ │ │ ├── Foo2Command.php │ │ │ │ │ ├── Foo3Command.php │ │ │ │ │ ├── Foo4Command.php │ │ │ │ │ ├── Foo5Command.php │ │ │ │ │ ├── Foo6Command.php │ │ │ │ │ ├── FooCommand.php │ │ │ │ │ ├── FooSubnamespaced1Command.php │ │ │ │ │ ├── FooSubnamespaced2Command.php │ │ │ │ │ ├── FoobarCommand.php │ │ │ │ │ ├── Style │ │ │ │ │ │ └── SymfonyStyle │ │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── command_0.php │ │ │ │ │ │ │ ├── command_1.php │ │ │ │ │ │ │ ├── command_10.php │ │ │ │ │ │ │ ├── command_11.php │ │ │ │ │ │ │ ├── command_12.php │ │ │ │ │ │ │ ├── command_13.php │ │ │ │ │ │ │ ├── command_14.php │ │ │ │ │ │ │ ├── command_15.php │ │ │ │ │ │ │ ├── command_16.php │ │ │ │ │ │ │ ├── command_2.php │ │ │ │ │ │ │ ├── command_3.php │ │ │ │ │ │ │ ├── command_4.php │ │ │ │ │ │ │ ├── command_5.php │ │ │ │ │ │ │ ├── command_6.php │ │ │ │ │ │ │ ├── command_7.php │ │ │ │ │ │ │ ├── command_8.php │ │ │ │ │ │ │ └── command_9.php │ │ │ │ │ │ │ └── output │ │ │ │ │ │ │ ├── output_0.txt │ │ │ │ │ │ │ ├── output_1.txt │ │ │ │ │ │ │ ├── output_10.txt │ │ │ │ │ │ │ ├── output_11.txt │ │ │ │ │ │ │ ├── output_12.txt │ │ │ │ │ │ │ ├── output_13.txt │ │ │ │ │ │ │ ├── output_14.txt │ │ │ │ │ │ │ ├── output_15.txt │ │ │ │ │ │ │ ├── output_16.txt │ │ │ │ │ │ │ ├── output_2.txt │ │ │ │ │ │ │ ├── output_3.txt │ │ │ │ │ │ │ ├── output_4.txt │ │ │ │ │ │ │ ├── output_5.txt │ │ │ │ │ │ │ ├── output_6.txt │ │ │ │ │ │ │ ├── output_7.txt │ │ │ │ │ │ │ ├── output_8.txt │ │ │ │ │ │ │ └── output_9.txt │ │ │ │ │ ├── TestCommand.php │ │ │ │ │ ├── application_1.json │ │ │ │ │ ├── application_1.md │ │ │ │ │ ├── application_1.txt │ │ │ │ │ ├── application_1.xml │ │ │ │ │ ├── application_2.json │ │ │ │ │ ├── application_2.md │ │ │ │ │ ├── application_2.txt │ │ │ │ │ ├── application_2.xml │ │ │ │ │ ├── application_astext1.txt │ │ │ │ │ ├── application_astext2.txt │ │ │ │ │ ├── application_gethelp.txt │ │ │ │ │ ├── application_renderexception1.txt │ │ │ │ │ ├── application_renderexception2.txt │ │ │ │ │ ├── application_renderexception3.txt │ │ │ │ │ ├── application_renderexception3decorated.txt │ │ │ │ │ ├── application_renderexception4.txt │ │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ │ ├── application_run1.txt │ │ │ │ │ ├── application_run2.txt │ │ │ │ │ ├── application_run3.txt │ │ │ │ │ ├── application_run4.txt │ │ │ │ │ ├── command_1.json │ │ │ │ │ ├── command_1.md │ │ │ │ │ ├── command_1.txt │ │ │ │ │ ├── command_1.xml │ │ │ │ │ ├── command_2.json │ │ │ │ │ ├── command_2.md │ │ │ │ │ ├── command_2.txt │ │ │ │ │ ├── command_2.xml │ │ │ │ │ ├── command_astext.txt │ │ │ │ │ ├── command_asxml.txt │ │ │ │ │ ├── definition_astext.txt │ │ │ │ │ ├── definition_asxml.txt │ │ │ │ │ ├── input_argument_1.json │ │ │ │ │ ├── input_argument_1.md │ │ │ │ │ ├── input_argument_1.txt │ │ │ │ │ ├── input_argument_1.xml │ │ │ │ │ ├── input_argument_2.json │ │ │ │ │ ├── input_argument_2.md │ │ │ │ │ ├── input_argument_2.txt │ │ │ │ │ ├── input_argument_2.xml │ │ │ │ │ ├── input_argument_3.json │ │ │ │ │ ├── input_argument_3.md │ │ │ │ │ ├── input_argument_3.txt │ │ │ │ │ ├── input_argument_3.xml │ │ │ │ │ ├── input_argument_4.json │ │ │ │ │ ├── input_argument_4.md │ │ │ │ │ ├── input_argument_4.txt │ │ │ │ │ ├── input_argument_4.xml │ │ │ │ │ ├── input_definition_1.json │ │ │ │ │ ├── input_definition_1.md │ │ │ │ │ ├── input_definition_1.txt │ │ │ │ │ ├── input_definition_1.xml │ │ │ │ │ ├── input_definition_2.json │ │ │ │ │ ├── input_definition_2.md │ │ │ │ │ ├── input_definition_2.txt │ │ │ │ │ ├── input_definition_2.xml │ │ │ │ │ ├── input_definition_3.json │ │ │ │ │ ├── input_definition_3.md │ │ │ │ │ ├── input_definition_3.txt │ │ │ │ │ ├── input_definition_3.xml │ │ │ │ │ ├── input_definition_4.json │ │ │ │ │ ├── input_definition_4.md │ │ │ │ │ ├── input_definition_4.txt │ │ │ │ │ ├── input_definition_4.xml │ │ │ │ │ ├── input_option_1.json │ │ │ │ │ ├── input_option_1.md │ │ │ │ │ ├── input_option_1.txt │ │ │ │ │ ├── input_option_1.xml │ │ │ │ │ ├── input_option_2.json │ │ │ │ │ ├── input_option_2.md │ │ │ │ │ ├── input_option_2.txt │ │ │ │ │ ├── input_option_2.xml │ │ │ │ │ ├── input_option_3.json │ │ │ │ │ ├── input_option_3.md │ │ │ │ │ ├── input_option_3.txt │ │ │ │ │ ├── input_option_3.xml │ │ │ │ │ ├── input_option_4.json │ │ │ │ │ ├── input_option_4.md │ │ │ │ │ ├── input_option_4.txt │ │ │ │ │ ├── input_option_4.xml │ │ │ │ │ ├── input_option_5.json │ │ │ │ │ ├── input_option_5.md │ │ │ │ │ ├── input_option_5.txt │ │ │ │ │ ├── input_option_5.xml │ │ │ │ │ ├── input_option_6.json │ │ │ │ │ ├── input_option_6.md │ │ │ │ │ ├── input_option_6.txt │ │ │ │ │ └── input_option_6.xml │ │ │ │ ├── Formatter │ │ │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ │ │ ├── OutputFormatterStyleTest.php │ │ │ │ │ └── OutputFormatterTest.php │ │ │ │ ├── Helper │ │ │ │ │ ├── FormatterHelperTest.php │ │ │ │ │ ├── HelperSetTest.php │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ ├── ProcessHelperTest.php │ │ │ │ │ ├── ProgressBarTest.php │ │ │ │ │ ├── ProgressIndicatorTest.php │ │ │ │ │ ├── QuestionHelperTest.php │ │ │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ │ │ ├── TableStyleTest.php │ │ │ │ │ └── TableTest.php │ │ │ │ ├── Input │ │ │ │ │ ├── ArgvInputTest.php │ │ │ │ │ ├── ArrayInputTest.php │ │ │ │ │ ├── InputArgumentTest.php │ │ │ │ │ ├── InputDefinitionTest.php │ │ │ │ │ ├── InputOptionTest.php │ │ │ │ │ ├── InputTest.php │ │ │ │ │ └── StringInputTest.php │ │ │ │ ├── Logger │ │ │ │ │ └── ConsoleLoggerTest.php │ │ │ │ ├── Output │ │ │ │ │ ├── ConsoleOutputTest.php │ │ │ │ │ ├── NullOutputTest.php │ │ │ │ │ ├── OutputTest.php │ │ │ │ │ └── StreamOutputTest.php │ │ │ │ ├── Style │ │ │ │ │ └── SymfonyStyleTest.php │ │ │ │ └── Tester │ │ │ │ │ ├── ApplicationTesterTest.php │ │ │ │ │ └── CommandTesterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── css-selector │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CssSelectorConverter.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── ExpressionErrorException.php │ │ │ │ ├── InternalErrorException.php │ │ │ │ ├── ParseException.php │ │ │ │ └── SyntaxErrorException.php │ │ │ ├── LICENSE │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── AttributeNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ ├── CombinedSelectorNode.php │ │ │ │ ├── ElementNode.php │ │ │ │ ├── FunctionNode.php │ │ │ │ ├── HashNode.php │ │ │ │ ├── NegationNode.php │ │ │ │ ├── NodeInterface.php │ │ │ │ ├── PseudoNode.php │ │ │ │ ├── SelectorNode.php │ │ │ │ └── Specificity.php │ │ │ ├── Parser │ │ │ │ ├── Handler │ │ │ │ │ ├── CommentHandler.php │ │ │ │ │ ├── HandlerInterface.php │ │ │ │ │ ├── HashHandler.php │ │ │ │ │ ├── IdentifierHandler.php │ │ │ │ │ ├── NumberHandler.php │ │ │ │ │ ├── StringHandler.php │ │ │ │ │ └── WhitespaceHandler.php │ │ │ │ ├── Parser.php │ │ │ │ ├── ParserInterface.php │ │ │ │ ├── Reader.php │ │ │ │ ├── Shortcut │ │ │ │ │ ├── ClassParser.php │ │ │ │ │ ├── ElementParser.php │ │ │ │ │ ├── EmptyStringParser.php │ │ │ │ │ └── HashParser.php │ │ │ │ ├── Token.php │ │ │ │ ├── TokenStream.php │ │ │ │ └── Tokenizer │ │ │ │ │ ├── Tokenizer.php │ │ │ │ │ ├── TokenizerEscaping.php │ │ │ │ │ └── TokenizerPatterns.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── CssSelectorConverterTest.php │ │ │ │ ├── Node │ │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ │ ├── AttributeNodeTest.php │ │ │ │ │ ├── ClassNodeTest.php │ │ │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ │ │ ├── ElementNodeTest.php │ │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ │ ├── HashNodeTest.php │ │ │ │ │ ├── NegationNodeTest.php │ │ │ │ │ ├── PseudoNodeTest.php │ │ │ │ │ ├── SelectorNodeTest.php │ │ │ │ │ └── SpecificityTest.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ │ │ ├── HashHandlerTest.php │ │ │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ │ │ ├── StringHandlerTest.php │ │ │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ ├── Shortcut │ │ │ │ │ │ ├── ClassParserTest.php │ │ │ │ │ │ ├── ElementParserTest.php │ │ │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ │ │ └── HashParserTest.php │ │ │ │ │ └── TokenStreamTest.php │ │ │ │ └── XPath │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ids.html │ │ │ │ │ ├── lang.xml │ │ │ │ │ └── shakespear.html │ │ │ │ │ └── TranslatorTest.php │ │ │ ├── XPath │ │ │ │ ├── Extension │ │ │ │ │ ├── AbstractExtension.php │ │ │ │ │ ├── AttributeMatchingExtension.php │ │ │ │ │ ├── CombinationExtension.php │ │ │ │ │ ├── ExtensionInterface.php │ │ │ │ │ ├── FunctionExtension.php │ │ │ │ │ ├── HtmlExtension.php │ │ │ │ │ ├── NodeExtension.php │ │ │ │ │ └── PseudoClassExtension.php │ │ │ │ ├── Translator.php │ │ │ │ ├── TranslatorInterface.php │ │ │ │ └── XPathExpr.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── debug │ │ │ ├── .gitignore │ │ │ ├── BufferingLogger.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Debug.php │ │ │ ├── DebugClassLoader.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ContextErrorException.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── FatalThrowableError.php │ │ │ │ ├── FlattenException.php │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ └── UndefinedMethodException.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── FatalErrorHandler │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── ext │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.m4 │ │ │ │ │ ├── config.w32 │ │ │ │ │ ├── php_symfony_debug.h │ │ │ │ │ ├── symfony_debug.c │ │ │ │ │ └── tests │ │ │ │ │ ├── 001.phpt │ │ │ │ │ ├── 002.phpt │ │ │ │ │ ├── 002_1.phpt │ │ │ │ │ └── 003.phpt │ │ │ ├── Tests │ │ │ │ ├── DebugClassLoaderTest.php │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ ├── Exception │ │ │ │ │ └── FlattenExceptionTest.php │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ClassAlias.php │ │ │ │ │ ├── DeprecatedClass.php │ │ │ │ │ ├── DeprecatedInterface.php │ │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ ├── ToStringThrower.php │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ ├── psr4 │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ ├── Fixtures2 │ │ │ │ │ └── RequiredTwice.php │ │ │ │ ├── HeaderMock.php │ │ │ │ └── MockExceptionHandler.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── dom-crawler │ │ │ ├── .gitignore │ │ │ ├── AbstractUriElement.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Crawler.php │ │ │ ├── Field │ │ │ │ ├── ChoiceFormField.php │ │ │ │ ├── FileFormField.php │ │ │ │ ├── FormField.php │ │ │ │ ├── InputFormField.php │ │ │ │ └── TextareaFormField.php │ │ │ ├── Form.php │ │ │ ├── FormFieldRegistry.php │ │ │ ├── Image.php │ │ │ ├── LICENSE │ │ │ ├── Link.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── CrawlerTest.php │ │ │ │ ├── Field │ │ │ │ │ ├── ChoiceFormFieldTest.php │ │ │ │ │ ├── FileFormFieldTest.php │ │ │ │ │ ├── FormFieldTest.php │ │ │ │ │ ├── FormFieldTestCase.php │ │ │ │ │ ├── InputFormFieldTest.php │ │ │ │ │ └── TextareaFormFieldTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── no-extension │ │ │ │ │ └── windows-1250.html │ │ │ │ ├── FormTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ └── LinkTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── event-dispatcher │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ ├── Debug │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ └── WrappedListener.php │ │ │ ├── DependencyInjection │ │ │ │ └── RegisterListenersPass.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── EventSubscriberInterface.php │ │ │ ├── GenericEvent.php │ │ │ ├── ImmutableEventDispatcher.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── TraceableEventDispatcherTest.php │ │ │ │ │ └── WrappedListenerTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPassTest.php │ │ │ │ ├── EventDispatcherTest.php │ │ │ │ ├── EventTest.php │ │ │ │ ├── GenericEventTest.php │ │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── finder │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Comparator │ │ │ │ ├── Comparator.php │ │ │ │ ├── DateComparator.php │ │ │ │ └── NumberComparator.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ └── ExceptionInterface.php │ │ │ ├── Finder.php │ │ │ ├── Glob.php │ │ │ ├── Iterator │ │ │ │ ├── CustomFilterIterator.php │ │ │ │ ├── DateRangeFilterIterator.php │ │ │ │ ├── DepthRangeFilterIterator.php │ │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ │ ├── FileTypeFilterIterator.php │ │ │ │ ├── FilecontentFilterIterator.php │ │ │ │ ├── FilenameFilterIterator.php │ │ │ │ ├── FilterIterator.php │ │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ │ ├── PathFilterIterator.php │ │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ │ ├── SizeRangeFilterIterator.php │ │ │ │ └── SortableIterator.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SplFileInfo.php │ │ │ ├── Tests │ │ │ │ ├── Comparator │ │ │ │ │ ├── ComparatorTest.php │ │ │ │ │ ├── DateComparatorTest.php │ │ │ │ │ └── NumberComparatorTest.php │ │ │ │ ├── FinderTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── A │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── abc.dat │ │ │ │ │ │ │ └── ab.dat │ │ │ │ │ │ └── a.dat │ │ │ │ │ ├── copy │ │ │ │ │ │ └── A │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ │ │ └── a.dat.copy │ │ │ │ │ ├── dolor.txt │ │ │ │ │ ├── ipsum.txt │ │ │ │ │ ├── lorem.txt │ │ │ │ │ ├── one │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ │ │ └── dir │ │ │ │ │ │ │ └── bar.dat │ │ │ │ │ └── with space │ │ │ │ │ │ └── foo.txt │ │ │ │ ├── GlobTest.php │ │ │ │ └── Iterator │ │ │ │ │ ├── CustomFilterIteratorTest.php │ │ │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ │ │ ├── FilterIteratorTest.php │ │ │ │ │ ├── Iterator.php │ │ │ │ │ ├── IteratorTestCase.php │ │ │ │ │ ├── MockFileListIterator.php │ │ │ │ │ ├── MockSplFileInfo.php │ │ │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ │ │ ├── PathFilterIteratorTest.php │ │ │ │ │ ├── RealIteratorTestCase.php │ │ │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ │ │ └── SortableIteratorTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── http-foundation │ │ │ ├── .gitignore │ │ │ ├── AcceptHeader.php │ │ │ ├── AcceptHeaderItem.php │ │ │ ├── ApacheRequest.php │ │ │ ├── BinaryFileResponse.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Cookie.php │ │ │ ├── Exception │ │ │ │ └── ConflictingHeadersException.php │ │ │ ├── ExpressionRequestMatcher.php │ │ │ ├── File │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── FileException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ └── UploadException.php │ │ │ │ ├── File.php │ │ │ │ ├── MimeType │ │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ │ └── UploadedFile.php │ │ │ ├── FileBag.php │ │ │ ├── HeaderBag.php │ │ │ ├── IpUtils.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE │ │ │ ├── ParameterBag.php │ │ │ ├── README.md │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── RequestMatcher.php │ │ │ ├── RequestMatcherInterface.php │ │ │ ├── RequestStack.php │ │ │ ├── Response.php │ │ │ ├── ResponseHeaderBag.php │ │ │ ├── ServerBag.php │ │ │ ├── Session │ │ │ │ ├── Attribute │ │ │ │ │ ├── AttributeBag.php │ │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ │ └── NamespacedAttributeBag.php │ │ │ │ ├── Flash │ │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ │ ├── FlashBag.php │ │ │ │ │ └── FlashBagInterface.php │ │ │ │ ├── Session.php │ │ │ │ ├── SessionBagInterface.php │ │ │ │ ├── SessionInterface.php │ │ │ │ └── Storage │ │ │ │ │ ├── Handler │ │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ ├── Proxy │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ ├── NativeProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedResponse.php │ │ │ ├── Tests │ │ │ │ ├── AcceptHeaderItemTest.php │ │ │ │ ├── AcceptHeaderTest.php │ │ │ │ ├── ApacheRequestTest.php │ │ │ │ ├── BinaryFileResponseTest.php │ │ │ │ ├── CookieTest.php │ │ │ │ ├── ExpressionRequestMatcherTest.php │ │ │ │ ├── File │ │ │ │ │ ├── FakeFile.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── .unknownextension │ │ │ │ │ │ ├── directory │ │ │ │ │ │ │ └── .empty │ │ │ │ │ │ ├── other-file.example │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── test.gif │ │ │ │ │ ├── MimeType │ │ │ │ │ │ └── MimeTypeTest.php │ │ │ │ │ └── UploadedFileTest.php │ │ │ │ ├── FileBagTest.php │ │ │ │ ├── HeaderBagTest.php │ │ │ │ ├── IpUtilsTest.php │ │ │ │ ├── JsonResponseTest.php │ │ │ │ ├── ParameterBagTest.php │ │ │ │ ├── RedirectResponseTest.php │ │ │ │ ├── RequestMatcherTest.php │ │ │ │ ├── RequestStackTest.php │ │ │ │ ├── RequestTest.php │ │ │ │ ├── ResponseHeaderBagTest.php │ │ │ │ ├── ResponseTest.php │ │ │ │ ├── ResponseTestCase.php │ │ │ │ ├── ServerBagTest.php │ │ │ │ ├── Session │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── AttributeBagTest.php │ │ │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ │ │ ├── Flash │ │ │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ │ │ └── FlashBagTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ └── Storage │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ │ │ ├── MetadataBagTest.php │ │ │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ │ │ └── Proxy │ │ │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ │ │ ├── NativeProxyTest.php │ │ │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ │ └── StreamedResponseTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── http-kernel │ │ │ ├── .gitignore │ │ │ ├── Bundle │ │ │ │ ├── Bundle.php │ │ │ │ └── BundleInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheClearer │ │ │ │ ├── CacheClearerInterface.php │ │ │ │ └── ChainCacheClearer.php │ │ │ ├── CacheWarmer │ │ │ │ ├── CacheWarmer.php │ │ │ │ ├── CacheWarmerAggregate.php │ │ │ │ ├── CacheWarmerInterface.php │ │ │ │ └── WarmableInterface.php │ │ │ ├── Client.php │ │ │ ├── Config │ │ │ │ ├── EnvParametersResource.php │ │ │ │ └── FileLocator.php │ │ │ ├── Controller │ │ │ │ ├── ControllerReference.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ ├── ControllerResolverInterface.php │ │ │ │ └── TraceableControllerResolver.php │ │ │ ├── DataCollector │ │ │ │ ├── AjaxDataCollector.php │ │ │ │ ├── ConfigDataCollector.php │ │ │ │ ├── DataCollector.php │ │ │ │ ├── DataCollectorInterface.php │ │ │ │ ├── DumpDataCollector.php │ │ │ │ ├── EventDataCollector.php │ │ │ │ ├── ExceptionDataCollector.php │ │ │ │ ├── LateDataCollectorInterface.php │ │ │ │ ├── LoggerDataCollector.php │ │ │ │ ├── MemoryDataCollector.php │ │ │ │ ├── RequestDataCollector.php │ │ │ │ ├── RouterDataCollector.php │ │ │ │ ├── TimeDataCollector.php │ │ │ │ └── Util │ │ │ │ │ └── ValueExporter.php │ │ │ ├── Debug │ │ │ │ └── TraceableEventDispatcher.php │ │ │ ├── DependencyInjection │ │ │ │ ├── AddClassesToCachePass.php │ │ │ │ ├── ConfigurableExtension.php │ │ │ │ ├── Extension.php │ │ │ │ ├── FragmentRendererPass.php │ │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ │ └── MergeExtensionConfigurationPass.php │ │ │ ├── Event │ │ │ │ ├── FilterControllerEvent.php │ │ │ │ ├── FilterResponseEvent.php │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ ├── GetResponseEvent.php │ │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ │ ├── KernelEvent.php │ │ │ │ └── PostResponseEvent.php │ │ │ ├── EventListener │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ ├── DumpListener.php │ │ │ │ ├── ExceptionListener.php │ │ │ │ ├── FragmentListener.php │ │ │ │ ├── LocaleListener.php │ │ │ │ ├── ProfilerListener.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── RouterListener.php │ │ │ │ ├── SaveSessionListener.php │ │ │ │ ├── SessionListener.php │ │ │ │ ├── StreamedResponseListener.php │ │ │ │ ├── SurrogateListener.php │ │ │ │ ├── TestSessionListener.php │ │ │ │ ├── TranslatorListener.php │ │ │ │ └── ValidateRequestListener.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedHttpException.php │ │ │ │ ├── BadRequestHttpException.php │ │ │ │ ├── ConflictHttpException.php │ │ │ │ ├── GoneHttpException.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpExceptionInterface.php │ │ │ │ ├── LengthRequiredHttpException.php │ │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ │ ├── NotAcceptableHttpException.php │ │ │ │ ├── NotFoundHttpException.php │ │ │ │ ├── PreconditionFailedHttpException.php │ │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ │ ├── TooManyRequestsHttpException.php │ │ │ │ ├── UnauthorizedHttpException.php │ │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ │ ├── Fragment │ │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ │ ├── EsiFragmentRenderer.php │ │ │ │ ├── FragmentHandler.php │ │ │ │ ├── FragmentRendererInterface.php │ │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ │ ├── InlineFragmentRenderer.php │ │ │ │ ├── RoutableFragmentRenderer.php │ │ │ │ └── SsiFragmentRenderer.php │ │ │ ├── HttpCache │ │ │ │ ├── Esi.php │ │ │ │ ├── HttpCache.php │ │ │ │ ├── ResponseCacheStrategy.php │ │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ │ ├── Ssi.php │ │ │ │ ├── Store.php │ │ │ │ ├── StoreInterface.php │ │ │ │ └── SurrogateInterface.php │ │ │ ├── HttpKernel.php │ │ │ ├── HttpKernelInterface.php │ │ │ ├── Kernel.php │ │ │ ├── KernelEvents.php │ │ │ ├── KernelInterface.php │ │ │ ├── LICENSE │ │ │ ├── Log │ │ │ │ └── DebugLoggerInterface.php │ │ │ ├── Profiler │ │ │ │ ├── FileProfilerStorage.php │ │ │ │ ├── Profile.php │ │ │ │ ├── Profiler.php │ │ │ │ └── ProfilerStorageInterface.php │ │ │ ├── README.md │ │ │ ├── TerminableInterface.php │ │ │ ├── Tests │ │ │ │ ├── Bundle │ │ │ │ │ └── BundleTest.php │ │ │ │ ├── CacheClearer │ │ │ │ │ └── ChainCacheClearerTest.php │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ │ │ └── CacheWarmerTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ ├── Config │ │ │ │ │ ├── EnvParametersResourceTest.php │ │ │ │ │ └── FileLocatorTest.php │ │ │ │ ├── Controller │ │ │ │ │ └── ControllerResolverTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ ├── ConfigDataCollectorTest.php │ │ │ │ │ ├── DumpDataCollectorTest.php │ │ │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ │ │ ├── LoggerDataCollectorTest.php │ │ │ │ │ ├── MemoryDataCollectorTest.php │ │ │ │ │ ├── RequestDataCollectorTest.php │ │ │ │ │ ├── TimeDataCollectorTest.php │ │ │ │ │ └── Util │ │ │ │ │ │ └── ValueExporterTest.php │ │ │ │ ├── Debug │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── FragmentRendererPassTest.php │ │ │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ │ │ └── MergeExtensionConfigurationPassTest.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ │ │ ├── DebugHandlersListenerTest.php │ │ │ │ │ ├── DumpListenerTest.php │ │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ │ ├── FragmentListenerTest.php │ │ │ │ │ ├── LocaleListenerTest.php │ │ │ │ │ ├── ProfilerListenerTest.php │ │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ │ ├── RouterListenerTest.php │ │ │ │ │ ├── SurrogateListenerTest.php │ │ │ │ │ ├── TestSessionListenerTest.php │ │ │ │ │ ├── TranslatorListenerTest.php │ │ │ │ │ └── ValidateRequestListenerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── Bundle2Bundle │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── VariadicController.php │ │ │ │ │ ├── ExtensionAbsentBundle │ │ │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ │ │ ├── ExtensionLoadedBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ │ │ ├── ExtensionNotValidBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ │ │ ├── ExtensionPresentBundle │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ │ │ └── FooCommand.php │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ │ │ └── ExtensionPresentBundle.php │ │ │ │ │ ├── KernelForOverrideName.php │ │ │ │ │ ├── KernelForTest.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── TestClient.php │ │ │ │ │ └── TestEventDispatcher.php │ │ │ │ ├── Fragment │ │ │ │ │ ├── EsiFragmentRendererTest.php │ │ │ │ │ ├── FragmentHandlerTest.php │ │ │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ │ │ ├── InlineFragmentRendererTest.php │ │ │ │ │ └── RoutableFragmentRendererTest.php │ │ │ │ ├── HttpCache │ │ │ │ │ ├── EsiTest.php │ │ │ │ │ ├── HttpCacheTest.php │ │ │ │ │ ├── HttpCacheTestCase.php │ │ │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ │ │ ├── SsiTest.php │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ ├── TestHttpKernel.php │ │ │ │ │ └── TestMultipleHttpKernel.php │ │ │ │ ├── HttpKernelTest.php │ │ │ │ ├── KernelTest.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Profiler │ │ │ │ │ ├── FileProfilerStorageTest.php │ │ │ │ │ └── ProfilerTest.php │ │ │ │ ├── TestHttpKernel.php │ │ │ │ └── UriSignerTest.php │ │ │ ├── UriSigner.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── polyfill-ctype │ │ │ ├── Ctype.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── unidata │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ ├── process │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── ProcessFailedException.php │ │ │ │ ├── ProcessTimedOutException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── ExecutableFinder.php │ │ │ ├── LICENSE │ │ │ ├── PhpExecutableFinder.php │ │ │ ├── PhpProcess.php │ │ │ ├── Pipes │ │ │ │ ├── AbstractPipes.php │ │ │ │ ├── PipesInterface.php │ │ │ │ ├── UnixPipes.php │ │ │ │ └── WindowsPipes.php │ │ │ ├── Process.php │ │ │ ├── ProcessBuilder.php │ │ │ ├── ProcessUtils.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── ExecutableFinderTest.php │ │ │ │ ├── NonStopableProcess.php │ │ │ │ ├── PhpExecutableFinderTest.php │ │ │ │ ├── PhpProcessTest.php │ │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ │ ├── ProcessBuilderTest.php │ │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ │ ├── ProcessTest.php │ │ │ │ ├── ProcessUtilsTest.php │ │ │ │ └── SignalListener.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── routing │ │ │ ├── .gitignore │ │ │ ├── Annotation │ │ │ │ └── Route.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CompiledRoute.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidParameterException.php │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ ├── MissingMandatoryParametersException.php │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ └── RouteNotFoundException.php │ │ │ ├── Generator │ │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── GeneratorDumper.php │ │ │ │ │ ├── GeneratorDumperInterface.php │ │ │ │ │ └── PhpGeneratorDumper.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlGeneratorInterface.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ │ ├── AnnotationClassLoader.php │ │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ │ ├── AnnotationFileLoader.php │ │ │ │ ├── ClosureLoader.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ServiceRouterLoader.php │ │ │ │ ├── DirectoryLoader.php │ │ │ │ ├── ObjectRouteLoader.php │ │ │ │ ├── PhpFileLoader.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ └── schema │ │ │ │ │ └── routing │ │ │ │ │ └── routing-1.0.xsd │ │ │ ├── Matcher │ │ │ │ ├── Dumper │ │ │ │ │ ├── DumperCollection.php │ │ │ │ │ ├── DumperPrefixCollection.php │ │ │ │ │ ├── DumperRoute.php │ │ │ │ │ ├── MatcherDumper.php │ │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ │ └── PhpMatcherDumper.php │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ ├── RedirectableUrlMatcherInterface.php │ │ │ │ ├── RequestMatcherInterface.php │ │ │ │ ├── TraceableUrlMatcher.php │ │ │ │ ├── UrlMatcher.php │ │ │ │ └── UrlMatcherInterface.php │ │ │ ├── README.md │ │ │ ├── RequestContext.php │ │ │ ├── RequestContextAwareInterface.php │ │ │ ├── Route.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteCollectionBuilder.php │ │ │ ├── RouteCompiler.php │ │ │ ├── RouteCompilerInterface.php │ │ │ ├── Router.php │ │ │ ├── RouterInterface.php │ │ │ ├── Tests │ │ │ │ ├── Annotation │ │ │ │ │ └── RouteTest.php │ │ │ │ ├── CompiledRouteTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ │ ├── BarClass.php │ │ │ │ │ │ ├── FooClass.php │ │ │ │ │ │ └── FooTrait.php │ │ │ │ │ ├── CustomXmlFileLoader.php │ │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ │ │ └── VariadicClass.php │ │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ │ ├── annotated.php │ │ │ │ │ ├── bad_format.yml │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── directory │ │ │ │ │ │ ├── recurse │ │ │ │ │ │ │ ├── routes1.yml │ │ │ │ │ │ │ └── routes2.yml │ │ │ │ │ │ └── routes3.yml │ │ │ │ │ ├── directory_import │ │ │ │ │ │ └── import.yml │ │ │ │ │ ├── dumper │ │ │ │ │ │ ├── url_matcher1.apache │ │ │ │ │ │ ├── url_matcher1.php │ │ │ │ │ │ ├── url_matcher2.apache │ │ │ │ │ │ ├── url_matcher2.php │ │ │ │ │ │ └── url_matcher3.php │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── file_resource.yml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── foo1.xml │ │ │ │ │ ├── incomplete.yml │ │ │ │ │ ├── missing_id.xml │ │ │ │ │ ├── missing_path.xml │ │ │ │ │ ├── namespaceprefix.xml │ │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ │ ├── nonvalid.xml │ │ │ │ │ ├── nonvalid.yml │ │ │ │ │ ├── nonvalid2.yml │ │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ │ ├── nonvalidnode.xml │ │ │ │ │ ├── nonvalidroute.xml │ │ │ │ │ ├── null_values.xml │ │ │ │ │ ├── special_route_name.yml │ │ │ │ │ ├── validpattern.php │ │ │ │ │ ├── validpattern.xml │ │ │ │ │ ├── validpattern.yml │ │ │ │ │ ├── validresource.php │ │ │ │ │ ├── validresource.xml │ │ │ │ │ ├── validresource.yml │ │ │ │ │ ├── with_define_path_variable.php │ │ │ │ │ └── withdoctype.xml │ │ │ │ ├── Generator │ │ │ │ │ ├── Dumper │ │ │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ │ │ └── UrlGeneratorTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ │ │ ├── ClosureLoaderTest.php │ │ │ │ │ ├── DirectoryLoaderTest.php │ │ │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── Matcher │ │ │ │ │ ├── Dumper │ │ │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ │ │ ├── DumperPrefixCollectionTest.php │ │ │ │ │ │ └── PhpMatcherDumperTest.php │ │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ │ │ └── UrlMatcherTest.php │ │ │ │ ├── RequestContextTest.php │ │ │ │ ├── RouteCollectionBuilderTest.php │ │ │ │ ├── RouteCollectionTest.php │ │ │ │ ├── RouteCompilerTest.php │ │ │ │ ├── RouteTest.php │ │ │ │ └── RouterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ ├── translation │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Catalogue │ │ │ │ ├── AbstractOperation.php │ │ │ │ ├── MergeOperation.php │ │ │ │ ├── OperationInterface.php │ │ │ │ └── TargetOperation.php │ │ │ ├── DataCollector │ │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.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 │ │ │ │ ├── InvalidResourceException.php │ │ │ │ └── NotFoundResourceException.php │ │ │ ├── Extractor │ │ │ │ ├── AbstractFileExtractor.php │ │ │ │ ├── ChainExtractor.php │ │ │ │ └── ExtractorInterface.php │ │ │ ├── IdentityTranslator.php │ │ │ ├── Interval.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 │ │ │ │ └── schema │ │ │ │ │ └── dic │ │ │ │ │ └── xliff-core │ │ │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MessageSelector.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── PluralizationRules.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── Catalogue │ │ │ │ │ ├── AbstractOperationTest.php │ │ │ │ │ ├── MergeOperationTest.php │ │ │ │ │ └── TargetOperationTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── TranslationDataCollectorTest.php │ │ │ │ ├── DataCollectorTranslatorTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── CsvFileDumperTest.php │ │ │ │ │ ├── FileDumperTest.php │ │ │ │ │ ├── IcuResFileDumperTest.php │ │ │ │ │ ├── IniFileDumperTest.php │ │ │ │ │ ├── JsonFileDumperTest.php │ │ │ │ │ ├── MoFileDumperTest.php │ │ │ │ │ ├── PhpFileDumperTest.php │ │ │ │ │ ├── PoFileDumperTest.php │ │ │ │ │ ├── QtFileDumperTest.php │ │ │ │ │ ├── XliffFileDumperTest.php │ │ │ │ │ └── YamlFileDumperTest.php │ │ │ │ ├── IdentityTranslatorTest.php │ │ │ │ ├── IntervalTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── CsvFileLoaderTest.php │ │ │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ │ │ ├── IcuResFileLoaderTest.php │ │ │ │ │ ├── IniFileLoaderTest.php │ │ │ │ │ ├── JsonFileLoaderTest.php │ │ │ │ │ ├── LocalizedTestCase.php │ │ │ │ │ ├── MoFileLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── PoFileLoaderTest.php │ │ │ │ │ ├── QtFileLoaderTest.php │ │ │ │ │ ├── XliffFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── LoggingTranslatorTest.php │ │ │ │ ├── MessageCatalogueTest.php │ │ │ │ ├── MessageSelectorTest.php │ │ │ │ ├── PluralizationRulesTest.php │ │ │ │ ├── TranslatorCacheTest.php │ │ │ │ ├── TranslatorTest.php │ │ │ │ ├── Util │ │ │ │ │ └── ArrayConverterTest.php │ │ │ │ ├── Writer │ │ │ │ │ └── TranslationWriterTest.php │ │ │ │ └── fixtures │ │ │ │ │ ├── empty-translation.mo │ │ │ │ │ ├── empty-translation.po │ │ │ │ │ ├── empty.csv │ │ │ │ │ ├── empty.ini │ │ │ │ │ ├── empty.json │ │ │ │ │ ├── empty.mo │ │ │ │ │ ├── empty.po │ │ │ │ │ ├── empty.xlf │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── encoding.xlf │ │ │ │ │ ├── escaped-id-plurals.po │ │ │ │ │ ├── escaped-id.po │ │ │ │ │ ├── fuzzy-translations.po │ │ │ │ │ ├── invalid-xml-resources.xlf │ │ │ │ │ ├── malformed.json │ │ │ │ │ ├── messages.yml │ │ │ │ │ ├── messages_linear.yml │ │ │ │ │ ├── non-valid.xlf │ │ │ │ │ ├── non-valid.yml │ │ │ │ │ ├── plurals.mo │ │ │ │ │ ├── plurals.po │ │ │ │ │ ├── resname.xlf │ │ │ │ │ ├── resourcebundle │ │ │ │ │ ├── corrupted │ │ │ │ │ │ └── resources.dat │ │ │ │ │ ├── dat │ │ │ │ │ │ ├── en.res │ │ │ │ │ │ ├── en.txt │ │ │ │ │ │ ├── fr.res │ │ │ │ │ │ ├── fr.txt │ │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ │ └── resources.dat │ │ │ │ │ └── res │ │ │ │ │ │ └── en.res │ │ │ │ │ ├── resources-2.0-clean.xlf │ │ │ │ │ ├── resources-2.0.xlf │ │ │ │ │ ├── resources-clean.xlf │ │ │ │ │ ├── resources-target-attributes.xlf │ │ │ │ │ ├── resources-tool-info.xlf │ │ │ │ │ ├── resources.csv │ │ │ │ │ ├── resources.dump.json │ │ │ │ │ ├── resources.ini │ │ │ │ │ ├── resources.json │ │ │ │ │ ├── resources.mo │ │ │ │ │ ├── resources.php │ │ │ │ │ ├── resources.po │ │ │ │ │ ├── resources.ts │ │ │ │ │ ├── resources.xlf │ │ │ │ │ ├── resources.yml │ │ │ │ │ ├── valid.csv │ │ │ │ │ ├── with-attributes.xlf │ │ │ │ │ ├── withdoctype.xlf │ │ │ │ │ └── withnote.xlf │ │ │ ├── Translator.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── Util │ │ │ │ └── ArrayConverter.php │ │ │ ├── Writer │ │ │ │ └── TranslationWriter.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ └── var-dumper │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Caster │ │ │ ├── AmqpCaster.php │ │ │ ├── Caster.php │ │ │ ├── ConstStub.php │ │ │ ├── CutArrayStub.php │ │ │ ├── CutStub.php │ │ │ ├── DOMCaster.php │ │ │ ├── DoctrineCaster.php │ │ │ ├── EnumStub.php │ │ │ ├── ExceptionCaster.php │ │ │ ├── FrameStub.php │ │ │ ├── MongoCaster.php │ │ │ ├── PdoCaster.php │ │ │ ├── PgSqlCaster.php │ │ │ ├── ReflectionCaster.php │ │ │ ├── ResourceCaster.php │ │ │ ├── SplCaster.php │ │ │ ├── StubCaster.php │ │ │ ├── TraceStub.php │ │ │ └── XmlResourceCaster.php │ │ │ ├── Cloner │ │ │ ├── AbstractCloner.php │ │ │ ├── ClonerInterface.php │ │ │ ├── Cursor.php │ │ │ ├── Data.php │ │ │ ├── DumperInterface.php │ │ │ ├── Stub.php │ │ │ └── VarCloner.php │ │ │ ├── Dumper │ │ │ ├── AbstractDumper.php │ │ │ ├── CliDumper.php │ │ │ ├── DataDumperInterface.php │ │ │ └── HtmlDumper.php │ │ │ ├── Exception │ │ │ └── ThrowingCasterException.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ └── functions │ │ │ │ └── dump.php │ │ │ ├── Test │ │ │ └── VarDumperTestTrait.php │ │ │ ├── Tests │ │ │ ├── Caster │ │ │ │ ├── CasterTest.php │ │ │ │ ├── PdoCasterTest.php │ │ │ │ ├── ReflectionCasterTest.php │ │ │ │ └── SplCasterTest.php │ │ │ ├── CliDumperTest.php │ │ │ ├── Fixtures │ │ │ │ ├── GeneratorDemo.php │ │ │ │ ├── NotLoadableClass.php │ │ │ │ ├── Twig.php │ │ │ │ └── dumb-var.php │ │ │ ├── HtmlDumperTest.php │ │ │ ├── Test │ │ │ │ └── VarDumperTestTraitTest.php │ │ │ └── VarClonerTest.php │ │ │ ├── VarDumper.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ └── vlucas │ │ └── phpdotenv │ │ ├── LICENSE.txt │ │ ├── composer.json │ │ └── src │ │ ├── Dotenv.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidCallbackException.php │ │ ├── InvalidFileException.php │ │ ├── InvalidPathException.php │ │ └── ValidationException.php │ │ ├── Loader.php │ │ ├── Parser.php │ │ └── Validator.php └── version ├── docker-compose.yml ├── docker ├── composer.dockerfile ├── nginx.dockerfile ├── nginx │ ├── default.conf │ └── nginx.conf ├── php.dockerfile └── php │ ├── www.conf │ └── xdebug.ini ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── images ├── favicon.ico ├── mc_bone.png ├── pattern_lodyas.png └── placeholder.png ├── index.php ├── robots.txt ├── scripts ├── admin.js ├── admin.js.map ├── install.js ├── install.js.map ├── site.js └── site.js.map ├── styles ├── admin.css ├── admin.css.map ├── install.css ├── install.css.map ├── site.css └── site.css.map └── updates.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/.htaccess -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/README.md -------------------------------------------------------------------------------- /application/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/.env.example -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/app/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Commands/Command.php -------------------------------------------------------------------------------- /application/app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /application/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Console/Kernel.php -------------------------------------------------------------------------------- /application/app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Events/Event.php -------------------------------------------------------------------------------- /application/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /application/app/Handlers/Commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/app/Handlers/Events/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/app/Helpers/LanguageDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Helpers/LanguageDetector.php -------------------------------------------------------------------------------- /application/app/Helpers/RandomMessageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Helpers/RandomMessageHelper.php -------------------------------------------------------------------------------- /application/app/Helpers/TimePasedToPercent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Helpers/TimePasedToPercent.php -------------------------------------------------------------------------------- /application/app/Helpers/UuidConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Helpers/UuidConverter.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/AdminController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/ApiController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/ConfigurationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/ConfigurationController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/InstallController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerAdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerAdminController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerBanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerBanController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerBanRecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerBanRecordController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerKickController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerKickController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerMuteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerMuteController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerNoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerNoteController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/PlayerWarningController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/PlayerWarningController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/ServerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/ServerController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/StaticPageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/StaticPageController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/StatsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/StatsController.php -------------------------------------------------------------------------------- /application/app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /application/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Kernel.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/AdminAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/AdminAuthenticate.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/ModeratorAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/ModeratorAuthenticate.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/SuperuserAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/SuperuserAuthenticate.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/VerifyInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/VerifyInstalled.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/VerifyNotInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/VerifyNotInstalled.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/VerifyServers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/VerifyServers.php -------------------------------------------------------------------------------- /application/app/Http/Middleware/VerifyServersUpgraded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Middleware/VerifyServersUpgraded.php -------------------------------------------------------------------------------- /application/app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /application/app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Http/routes.php -------------------------------------------------------------------------------- /application/app/IpBan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/IpBan.php -------------------------------------------------------------------------------- /application/app/IpBanRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/IpBanRecord.php -------------------------------------------------------------------------------- /application/app/PastRecordBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PastRecordBaseModel.php -------------------------------------------------------------------------------- /application/app/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Player.php -------------------------------------------------------------------------------- /application/app/PlayerBan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerBan.php -------------------------------------------------------------------------------- /application/app/PlayerBanRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerBanRecord.php -------------------------------------------------------------------------------- /application/app/PlayerKick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerKick.php -------------------------------------------------------------------------------- /application/app/PlayerMute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerMute.php -------------------------------------------------------------------------------- /application/app/PlayerMuteRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerMuteRecord.php -------------------------------------------------------------------------------- /application/app/PlayerNote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerNote.php -------------------------------------------------------------------------------- /application/app/PlayerWarning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/PlayerWarning.php -------------------------------------------------------------------------------- /application/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/ConfigServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Providers/ConfigServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/HelperServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Providers/HelperServiceProvider.php -------------------------------------------------------------------------------- /application/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /application/app/RecordBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/RecordBaseModel.php -------------------------------------------------------------------------------- /application/app/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/Server.php -------------------------------------------------------------------------------- /application/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/app/User.php -------------------------------------------------------------------------------- /application/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/artisan -------------------------------------------------------------------------------- /application/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/bootstrap/app.php -------------------------------------------------------------------------------- /application/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/bootstrap/autoload.php -------------------------------------------------------------------------------- /application/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /application/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/composer.json -------------------------------------------------------------------------------- /application/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/composer.lock -------------------------------------------------------------------------------- /application/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/app.php -------------------------------------------------------------------------------- /application/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/auth.php -------------------------------------------------------------------------------- /application/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/cache.php -------------------------------------------------------------------------------- /application/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/compile.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/filesystems.php -------------------------------------------------------------------------------- /application/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/mail.php -------------------------------------------------------------------------------- /application/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/queue.php -------------------------------------------------------------------------------- /application/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/services.php -------------------------------------------------------------------------------- /application/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/session.php -------------------------------------------------------------------------------- /application/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/config/view.php -------------------------------------------------------------------------------- /application/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /application/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /application/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/gulpfile.js -------------------------------------------------------------------------------- /application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/package.json -------------------------------------------------------------------------------- /application/resources/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/admin.css -------------------------------------------------------------------------------- /application/resources/assets/css/admin.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/admin.css.map -------------------------------------------------------------------------------- /application/resources/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/app.css -------------------------------------------------------------------------------- /application/resources/assets/css/app.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/app.css.map -------------------------------------------------------------------------------- /application/resources/assets/css/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /application/resources/assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /application/resources/assets/css/bootstrap3-dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/bootstrap3-dialog.css -------------------------------------------------------------------------------- /application/resources/assets/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /application/resources/assets/css/dataTables.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/dataTables.responsive.css -------------------------------------------------------------------------------- /application/resources/assets/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/font-awesome.css -------------------------------------------------------------------------------- /application/resources/assets/css/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/install.css -------------------------------------------------------------------------------- /application/resources/assets/css/install.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/install.css.map -------------------------------------------------------------------------------- /application/resources/assets/css/metismenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/metismenu.css -------------------------------------------------------------------------------- /application/resources/assets/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/sb-admin.css -------------------------------------------------------------------------------- /application/resources/assets/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/site.css -------------------------------------------------------------------------------- /application/resources/assets/css/site.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/site.css.map -------------------------------------------------------------------------------- /application/resources/assets/css/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/css/timeline.css -------------------------------------------------------------------------------- /application/resources/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/admin.js -------------------------------------------------------------------------------- /application/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/app.js -------------------------------------------------------------------------------- /application/resources/assets/js/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /application/resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /application/resources/assets/js/bootstrap3-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/bootstrap3-dialog.js -------------------------------------------------------------------------------- /application/resources/assets/js/bootstrap3-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/bootstrap3-typeahead.js -------------------------------------------------------------------------------- /application/resources/assets/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/chart.js -------------------------------------------------------------------------------- /application/resources/assets/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /application/resources/assets/js/install.js: -------------------------------------------------------------------------------- 1 | function enableButton() { 2 | $('#start').removeClass("disabled").show(); 3 | } -------------------------------------------------------------------------------- /application/resources/assets/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/jquery.dataTables.js -------------------------------------------------------------------------------- /application/resources/assets/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/jquery.js -------------------------------------------------------------------------------- /application/resources/assets/js/metismenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/metismenu.js -------------------------------------------------------------------------------- /application/resources/assets/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/moment.js -------------------------------------------------------------------------------- /application/resources/assets/js/sb-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/js/sb-admin.js -------------------------------------------------------------------------------- /application/resources/assets/js/site.js: -------------------------------------------------------------------------------- 1 | // SITE SCRIPTS -------------------------------------------------------------------------------- /application/resources/assets/sass/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/sass/admin.scss -------------------------------------------------------------------------------- /application/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /application/resources/assets/sass/install.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/sass/install.scss -------------------------------------------------------------------------------- /application/resources/assets/sass/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/assets/sass/site.scss -------------------------------------------------------------------------------- /application/resources/lang/de/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/de/app.php -------------------------------------------------------------------------------- /application/resources/lang/de/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/de/pagination.php -------------------------------------------------------------------------------- /application/resources/lang/de/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/de/passwords.php -------------------------------------------------------------------------------- /application/resources/lang/de/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/de/validation.php -------------------------------------------------------------------------------- /application/resources/lang/en/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/en/app.php -------------------------------------------------------------------------------- /application/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /application/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /application/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/lang/en/validation.php -------------------------------------------------------------------------------- /application/resources/views/admin/activePunishments.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/activePunishments.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/activity.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/activity.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/app.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/bans/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/bans/create.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/bans/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/bans/edit.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/config.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/config.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/mutes/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/mutes/create.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/mutes/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/mutes/edit.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/notes/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/notes/create.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/notes/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/notes/edit.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/notes/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/notes/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/players/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/players/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/players/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/players/show.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/servers/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/servers/create.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/servers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/servers/edit.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/servers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/servers/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/users/edit.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/users/show.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/warnings/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/warnings/create.blade.php -------------------------------------------------------------------------------- /application/resources/views/admin/warnings/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/admin/warnings/edit.blade.php -------------------------------------------------------------------------------- /application/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/app.blade.php -------------------------------------------------------------------------------- /application/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /application/resources/views/auth/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/auth/password.blade.php -------------------------------------------------------------------------------- /application/resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /application/resources/views/auth/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/auth/reset.blade.php -------------------------------------------------------------------------------- /application/resources/views/emails/password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/emails/password.blade.php -------------------------------------------------------------------------------- /application/resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /application/resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /application/resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /application/resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/install/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/install/app.blade.php -------------------------------------------------------------------------------- /application/resources/views/install/config.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/install/config.blade.php -------------------------------------------------------------------------------- /application/resources/views/install/finish.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/install/finish.blade.php -------------------------------------------------------------------------------- /application/resources/views/install/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/install/index.blade.php -------------------------------------------------------------------------------- /application/resources/views/install/run.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/install/run.blade.php -------------------------------------------------------------------------------- /application/resources/views/partials/activityItem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/partials/activityItem.blade.php -------------------------------------------------------------------------------- /application/resources/views/partials/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/partials/flash.blade.php -------------------------------------------------------------------------------- /application/resources/views/partials/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/partials/navigation.blade.php -------------------------------------------------------------------------------- /application/resources/views/partials/noscript.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/partials/noscript.blade.php -------------------------------------------------------------------------------- /application/resources/views/partials/timelineItem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/partials/timelineItem.blade.php -------------------------------------------------------------------------------- /application/resources/views/player.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/player.blade.php -------------------------------------------------------------------------------- /application/resources/views/stats.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/resources/views/stats.blade.php -------------------------------------------------------------------------------- /application/resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/server.php -------------------------------------------------------------------------------- /application/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /application/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/storage/framework/.gitignore -------------------------------------------------------------------------------- /application/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /application/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /application/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/autoload.php -------------------------------------------------------------------------------- /application/vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /application/vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /application/vendor/bin/upgrade-carbon: -------------------------------------------------------------------------------- 1 | ../nesbot/carbon/bin/upgrade-carbon -------------------------------------------------------------------------------- /application/vendor/classpreloader/classpreloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/classpreloader/classpreloader/LICENSE -------------------------------------------------------------------------------- /application/vendor/classpreloader/classpreloader/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/classpreloader/classpreloader/composer.json -------------------------------------------------------------------------------- /application/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /application/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/LICENSE -------------------------------------------------------------------------------- /application/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /application/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /application/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /application/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /application/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /application/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /application/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/composer/installed.json -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/dnoegel/php-xdg-base-dir/composer.json -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/dnoegel/php-xdg-base-dir/phpunit.xml.dist -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/src/Xdg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/dnoegel/php-xdg-base-dir/src/Xdg.php -------------------------------------------------------------------------------- /application/vendor/dnoegel/php-xdg-base-dir/tests/XdgTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/dnoegel/php-xdg-base-dir/tests/XdgTest.php -------------------------------------------------------------------------------- /application/vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /application/vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /application/vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /application/vendor/doctrine/inflector/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/doctrine/inflector/docs/en/index.rst -------------------------------------------------------------------------------- /application/vendor/doctrine/inflector/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/doctrine/inflector/phpstan.neon.dist -------------------------------------------------------------------------------- /application/vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /application/vendor/jakub-onderka/php-console-color/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/jakub-onderka/php-console-color/.travis.yml -------------------------------------------------------------------------------- /application/vendor/jakub-onderka/php-console-color/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/jakub-onderka/php-console-color/LICENSE -------------------------------------------------------------------------------- /application/vendor/jakub-onderka/php-console-color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/jakub-onderka/php-console-color/README.md -------------------------------------------------------------------------------- /application/vendor/jakub-onderka/php-console-color/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/jakub-onderka/php-console-color/build.xml -------------------------------------------------------------------------------- /application/vendor/jeremeamia/superclosure/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/jeremeamia/superclosure/LICENSE.md -------------------------------------------------------------------------------- /application/vendor/jeremeamia/superclosure/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/jeremeamia/superclosure/composer.json -------------------------------------------------------------------------------- /application/vendor/kylekatarnls/update-helper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/kylekatarnls/update-helper/LICENSE -------------------------------------------------------------------------------- /application/vendor/kylekatarnls/update-helper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/kylekatarnls/update-helper/composer.json -------------------------------------------------------------------------------- /application/vendor/laravel/framework/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravel/framework/LICENSE.txt -------------------------------------------------------------------------------- /application/vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /application/vendor/laravel/framework/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravel/framework/readme.md -------------------------------------------------------------------------------- /application/vendor/laravelcollective/html/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravelcollective/html/CONTRIBUTING.md -------------------------------------------------------------------------------- /application/vendor/laravelcollective/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravelcollective/html/LICENSE.txt -------------------------------------------------------------------------------- /application/vendor/laravelcollective/html/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravelcollective/html/composer.json -------------------------------------------------------------------------------- /application/vendor/laravelcollective/html/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravelcollective/html/readme.md -------------------------------------------------------------------------------- /application/vendor/laravelcollective/html/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/laravelcollective/html/src/helpers.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /application/vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /application/vendor/league/flysystem/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/SECURITY.md -------------------------------------------------------------------------------- /application/vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /application/vendor/league/flysystem/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/deprecations.md -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Adapter/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Adapter/Ftp.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Adapter/Ftpd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Adapter/Ftpd.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Adapter/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Adapter/Local.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/MountManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/MountManager.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Plugin/EmptyDir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Plugin/EmptyDir.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Plugin/ListWith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Plugin/ListWith.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/PluginInterface.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/ReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/ReadInterface.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/SafeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/SafeStorage.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /application/vendor/league/flysystem/src/Util/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/flysystem/src/Util/MimeType.php -------------------------------------------------------------------------------- /application/vendor/league/mime-type-detection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/mime-type-detection/LICENSE -------------------------------------------------------------------------------- /application/vendor/league/mime-type-detection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/league/mime-type-detection/composer.json -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/src/Monolog/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/src/Monolog/Logger.php -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/src/Monolog/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/src/Monolog/Registry.php -------------------------------------------------------------------------------- /application/vendor/monolog/monolog/src/Monolog/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/monolog/monolog/src/Monolog/Utils.php -------------------------------------------------------------------------------- /application/vendor/mtdowling/cron-expression/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/mtdowling/cron-expression/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/mtdowling/cron-expression/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/mtdowling/cron-expression/LICENSE -------------------------------------------------------------------------------- /application/vendor/mtdowling/cron-expression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/mtdowling/cron-expression/README.md -------------------------------------------------------------------------------- /application/vendor/mtdowling/cron-expression/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/mtdowling/cron-expression/composer.json -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/bin/upgrade-carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/bin/upgrade-carbon -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/bin/upgrade-carbon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/bin/upgrade-carbon.bat -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Carbon.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/af.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/af.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ar.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/az.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/bg.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/bn.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ca.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/cs.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/cy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/cy.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/da.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/de.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/el.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/en.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/eo.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/es.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/et.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/eu.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/fa.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/fi.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/fo.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/fr.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/gl.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/gu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/gu.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/he.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/hi.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/hr.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/hu.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/hy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/hy.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/id.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/is.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/it.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ja.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ka.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/kk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/kk.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/km.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/km.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ko.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/lt.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/lv.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/mk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/mk.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/mn.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ms.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/my.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ne.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/nl.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/no.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/oc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/oc.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/pl.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ps.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/pt.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ro.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ru.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sh.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sk.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sl.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sq.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sr.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sv.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/sw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/sw.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/th.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/tr.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/uk.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/ur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/ur.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/uz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/uz.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/vi.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/zh.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Translator.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/Carbon/Upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/Carbon/Upgrade.php -------------------------------------------------------------------------------- /application/vendor/nesbot/carbon/src/JsonSerializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nesbot/carbon/src/JsonSerializable.php -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/.gitignore -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/.travis.yml -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/UPGRADE-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/UPGRADE-1.0.md -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/UPGRADE-2.0.md -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/composer.json -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/README.md -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/analyze.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/analyze.php -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/parser.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/parser.template -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/php5.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/php5.y -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/php7.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/php7.y -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/tokens.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/tokens.template -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/grammar/tokens.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/grammar/tokens.y -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/lib/PhpParser/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/lib/PhpParser/Error.php -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/lib/PhpParser/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/lib/PhpParser/Lexer.php -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/lib/PhpParser/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/nikic/php-parser/lib/PhpParser/Node.php -------------------------------------------------------------------------------- /application/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /application/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /application/vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Command/HelpCommand.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Command/ListCommand.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Event/ConsoleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Event/ConsoleEvent.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/HelperSet.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/ProgressBar.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/TableCell.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Helper/TableStyle.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/ArrayInput.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/InputArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/InputArgument.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/InputInterface.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/InputOption.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Input/StringInput.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /application/vendor/symfony/console/Logger/ConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Logger/ConsoleLogger.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Output/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Output/ConsoleOutput.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Output/NullOutput.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Output/StreamOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Output/StreamOutput.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Question/Question.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /application/vendor/symfony/console/Style/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Style/OutputStyle.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Style/StyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Style/StyleInterface.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Style/SymfonyStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Style/SymfonyStyle.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Tester/CommandTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/Tester/CommandTester.php -------------------------------------------------------------------------------- /application/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /application/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /application/vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/LICENSE -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/Node/ClassNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/Node/ClassNode.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/Node/HashNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/Node/HashNode.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/Node/PseudoNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/Node/PseudoNode.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/Parser/Parser.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/Parser/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/Parser/Reader.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/Parser/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/Parser/Token.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/README.md -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/XPath/XPathExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/XPath/XPathExpr.php -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/composer.json -------------------------------------------------------------------------------- /application/vendor/symfony/css-selector/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/css-selector/phpunit.xml.dist -------------------------------------------------------------------------------- /application/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /application/vendor/symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /application/vendor/symfony/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /application/vendor/symfony/debug/DebugClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/DebugClassLoader.php -------------------------------------------------------------------------------- /application/vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /application/vendor/symfony/debug/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/ExceptionHandler.php -------------------------------------------------------------------------------- /application/vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /application/vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /application/vendor/symfony/debug/Resources/ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/Resources/ext/README.md -------------------------------------------------------------------------------- /application/vendor/symfony/debug/Resources/ext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/Resources/ext/config.m4 -------------------------------------------------------------------------------- /application/vendor/symfony/debug/Resources/ext/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/Resources/ext/config.w32 -------------------------------------------------------------------------------- /application/vendor/symfony/debug/Tests/ErrorHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/debug/Tests/ErrorHandlerTest.php -------------------------------------------------------------------------------- /application/vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /application/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /application/vendor/symfony/translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/translation/Translator.php -------------------------------------------------------------------------------- /application/vendor/symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/translation/composer.json -------------------------------------------------------------------------------- /application/vendor/symfony/translation/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/translation/phpunit.xml.dist -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/CHANGELOG.md -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/AmqpCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/AmqpCaster.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/Caster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/Caster.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/ConstStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/ConstStub.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/CutStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/CutStub.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/DOMCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/DOMCaster.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/EnumStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/EnumStub.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/FrameStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/FrameStub.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/PdoCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/PdoCaster.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/SplCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/SplCaster.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/StubCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/StubCaster.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Caster/TraceStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Caster/TraceStub.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Cloner/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Cloner/Cursor.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Cloner/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Cloner/Data.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Cloner/Stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Cloner/Stub.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Cloner/VarCloner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Cloner/VarCloner.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Dumper/CliDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Dumper/CliDumper.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/Dumper/HtmlDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/Dumper/HtmlDumper.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /application/vendor/symfony/var-dumper/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/symfony/var-dumper/phpunit.xml.dist -------------------------------------------------------------------------------- /application/vendor/vlucas/phpdotenv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/vlucas/phpdotenv/LICENSE.txt -------------------------------------------------------------------------------- /application/vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /application/vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /application/vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /application/vendor/vlucas/phpdotenv/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/vlucas/phpdotenv/src/Parser.php -------------------------------------------------------------------------------- /application/vendor/vlucas/phpdotenv/src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/application/vendor/vlucas/phpdotenv/src/Validator.php -------------------------------------------------------------------------------- /application/version: -------------------------------------------------------------------------------- 1 | v1.5 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/composer.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/composer.dockerfile -------------------------------------------------------------------------------- /docker/nginx.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/nginx.dockerfile -------------------------------------------------------------------------------- /docker/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/nginx/default.conf -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/php.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/php.dockerfile -------------------------------------------------------------------------------- /docker/php/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/php/www.conf -------------------------------------------------------------------------------- /docker/php/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/docker/php/xdebug.ini -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/mc_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/images/mc_bone.png -------------------------------------------------------------------------------- /images/pattern_lodyas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/images/pattern_lodyas.png -------------------------------------------------------------------------------- /images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/images/placeholder.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/index.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /application 3 | -------------------------------------------------------------------------------- /scripts/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/scripts/admin.js -------------------------------------------------------------------------------- /scripts/admin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/scripts/admin.js.map -------------------------------------------------------------------------------- /scripts/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/scripts/install.js -------------------------------------------------------------------------------- /scripts/install.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/scripts/install.js.map -------------------------------------------------------------------------------- /scripts/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/scripts/site.js -------------------------------------------------------------------------------- /scripts/site.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/scripts/site.js.map -------------------------------------------------------------------------------- /styles/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/styles/admin.css -------------------------------------------------------------------------------- /styles/admin.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/styles/admin.css.map -------------------------------------------------------------------------------- /styles/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/styles/install.css -------------------------------------------------------------------------------- /styles/install.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/styles/install.css.map -------------------------------------------------------------------------------- /styles/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/styles/site.css -------------------------------------------------------------------------------- /styles/site.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/styles/site.css.map -------------------------------------------------------------------------------- /updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftbastler/BoNeMEAL/HEAD/updates.json --------------------------------------------------------------------------------