├── .gitattributes ├── LICENSE ├── README.md ├── README_CN.md ├── autoload.php ├── bitcoinecdsa └── BitcoinECDSA │ ├── .gitignore │ ├── .travis.yml │ ├── Examples │ ├── generateAddress.php │ ├── signMessage.php │ ├── verifyMessage.php │ └── wif.php │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpconfig.ini │ ├── phpunit.xml │ └── src │ └── BitcoinPHP │ ├── BitcoinECDSA │ └── BitcoinECDSA.php │ └── Tests │ ├── BitcoinECDSATest.php │ └── BootStrap.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 ├── doctrine └── inflector │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── lib │ └── Doctrine │ └── Common │ └── Inflector │ └── Inflector.php ├── filp └── whoops │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── composer.json │ └── src │ └── Whoops │ ├── Exception │ ├── ErrorException.php │ ├── Formatter.php │ ├── Frame.php │ ├── FrameCollection.php │ └── Inspector.php │ ├── Handler │ ├── CallbackHandler.php │ ├── Handler.php │ ├── HandlerInterface.php │ ├── JsonResponseHandler.php │ ├── PlainTextHandler.php │ ├── PrettyPageHandler.php │ └── XmlResponseHandler.php │ ├── Resources │ ├── css │ │ └── whoops.base.css │ ├── js │ │ ├── clipboard.min.js │ │ ├── prettify.min.js │ │ ├── whoops.base.js │ │ └── zepto.min.js │ └── views │ │ ├── env_details.html.php │ │ ├── frame_code.html.php │ │ ├── frame_list.html.php │ │ ├── frames_container.html.php │ │ ├── frames_description.html.php │ │ ├── header.html.php │ │ ├── header_outer.html.php │ │ ├── layout.html.php │ │ ├── panel_details.html.php │ │ ├── panel_details_outer.html.php │ │ ├── panel_left.html.php │ │ └── panel_left_outer.html.php │ ├── Run.php │ ├── RunInterface.php │ └── Util │ ├── HtmlDumperOutput.php │ ├── Misc.php │ ├── SystemFacade.php │ └── TemplateHelper.php ├── graylog2 └── gelf-php │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Gelf │ ├── Encoder │ ├── CompressedJsonEncoder.php │ ├── EncoderInterface.php │ └── JsonEncoder.php │ ├── Logger.php │ ├── Message.php │ ├── MessageInterface.php │ ├── MessageValidator.php │ ├── MessageValidatorInterface.php │ ├── Publisher.php │ ├── PublisherInterface.php │ └── Transport │ ├── AbstractTransport.php │ ├── AmqpTransport.php │ ├── HttpTransport.php │ ├── IgnoreErrorTransportWrapper.php │ ├── SslOptions.php │ ├── StreamSocketClient.php │ ├── TcpTransport.php │ ├── TransportInterface.php │ └── UdpTransport.php ├── hassankhan └── config │ ├── .scrutinizer.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── composer.json │ └── src │ ├── AbstractConfig.php │ ├── Config.php │ ├── ConfigInterface.php │ ├── ErrorException.php │ ├── Exception.php │ ├── Exception │ ├── EmptyDirectoryException.php │ ├── FileNotFoundException.php │ ├── ParseException.php │ └── UnsupportedFormatException.php │ └── FileParser │ ├── AbstractFileParser.php │ ├── FileParserInterface.php │ ├── Ini.php │ ├── Json.php │ ├── Php.php │ ├── Xml.php │ └── Yaml.php ├── illuminate ├── container │ ├── BoundMethod.php │ ├── Container.php │ ├── ContextualBindingBuilder.php │ ├── EntryNotFoundException.php │ ├── LICENSE.md │ ├── RewindableGenerator.php │ └── composer.json ├── contracts │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── Gate.php │ │ ├── Authenticatable.php │ │ ├── CanResetPassword.php │ │ ├── Factory.php │ │ ├── Guard.php │ │ ├── MustVerifyEmail.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerFactory.php │ │ ├── StatefulGuard.php │ │ ├── SupportsBasicAuth.php │ │ └── UserProvider.php │ ├── Broadcasting │ │ ├── Broadcaster.php │ │ ├── Factory.php │ │ ├── ShouldBroadcast.php │ │ └── ShouldBroadcastNow.php │ ├── Bus │ │ ├── Dispatcher.php │ │ └── QueueingDispatcher.php │ ├── Cache │ │ ├── Factory.php │ │ ├── Lock.php │ │ ├── LockProvider.php │ │ ├── LockTimeoutException.php │ │ ├── Repository.php │ │ └── Store.php │ ├── Config │ │ └── Repository.php │ ├── Console │ │ ├── Application.php │ │ └── Kernel.php │ ├── Container │ │ ├── BindingResolutionException.php │ │ ├── Container.php │ │ └── ContextualBindingBuilder.php │ ├── Cookie │ │ ├── Factory.php │ │ └── QueueingFactory.php │ ├── Database │ │ ├── Events │ │ │ └── MigrationEvent.php │ │ └── ModelIdentifier.php │ ├── Debug │ │ └── ExceptionHandler.php │ ├── Encryption │ │ ├── DecryptException.php │ │ ├── EncryptException.php │ │ └── Encrypter.php │ ├── Events │ │ └── Dispatcher.php │ ├── Filesystem │ │ ├── Cloud.php │ │ ├── Factory.php │ │ ├── FileExistsException.php │ │ ├── FileNotFoundException.php │ │ └── Filesystem.php │ ├── Foundation │ │ └── Application.php │ ├── Hashing │ │ └── Hasher.php │ ├── Http │ │ └── Kernel.php │ ├── LICENSE.md │ ├── Mail │ │ ├── MailQueue.php │ │ ├── Mailable.php │ │ └── Mailer.php │ ├── Notifications │ │ ├── Dispatcher.php │ │ └── Factory.php │ ├── Pagination │ │ ├── LengthAwarePaginator.php │ │ └── Paginator.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 │ │ ├── Connection.php │ │ ├── Factory.php │ │ └── LimiterTimeoutException.php │ ├── Routing │ │ ├── BindingRegistrar.php │ │ ├── Registrar.php │ │ ├── ResponseFactory.php │ │ ├── UrlGenerator.php │ │ └── UrlRoutable.php │ ├── Session │ │ └── Session.php │ ├── Support │ │ ├── Arrayable.php │ │ ├── DeferrableProvider.php │ │ ├── Htmlable.php │ │ ├── Jsonable.php │ │ ├── MessageBag.php │ │ ├── MessageProvider.php │ │ ├── Renderable.php │ │ └── Responsable.php │ ├── Translation │ │ ├── HasLocalePreference.php │ │ ├── Loader.php │ │ └── Translator.php │ ├── Validation │ │ ├── Factory.php │ │ ├── ImplicitRule.php │ │ ├── Rule.php │ │ ├── ValidatesWhenResolved.php │ │ └── Validator.php │ ├── View │ │ ├── Engine.php │ │ ├── Factory.php │ │ └── View.php │ └── composer.json ├── events │ ├── CallQueuedListener.php │ ├── Dispatcher.php │ ├── EventServiceProvider.php │ ├── LICENSE.md │ └── composer.json ├── filesystem │ ├── Cache.php │ ├── Filesystem.php │ ├── FilesystemAdapter.php │ ├── FilesystemManager.php │ ├── FilesystemServiceProvider.php │ ├── LICENSE.md │ └── composer.json ├── support │ ├── AggregateServiceProvider.php │ ├── Arr.php │ ├── Carbon.php │ ├── Collection.php │ ├── Composer.php │ ├── DateFactory.php │ ├── Facades │ │ ├── App.php │ │ ├── Artisan.php │ │ ├── Auth.php │ │ ├── Blade.php │ │ ├── Broadcast.php │ │ ├── Bus.php │ │ ├── Cache.php │ │ ├── Config.php │ │ ├── Cookie.php │ │ ├── Crypt.php │ │ ├── DB.php │ │ ├── Date.php │ │ ├── Event.php │ │ ├── Facade.php │ │ ├── File.php │ │ ├── Gate.php │ │ ├── Hash.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Log.php │ │ ├── Mail.php │ │ ├── Notification.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 │ ├── HigherOrderCollectionProxy.php │ ├── HigherOrderTapProxy.php │ ├── HtmlString.php │ ├── InteractsWithTime.php │ ├── LICENSE.md │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Optional.php │ ├── Pluralizer.php │ ├── ProcessUtils.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── Testing │ │ └── Fakes │ │ │ ├── BusFake.php │ │ │ ├── EventFake.php │ │ │ ├── MailFake.php │ │ │ ├── NotificationFake.php │ │ │ ├── PendingMailFake.php │ │ │ └── QueueFake.php │ ├── Traits │ │ ├── CapsuleManagerTrait.php │ │ ├── ForwardsCalls.php │ │ ├── Localizable.php │ │ ├── Macroable.php │ │ └── Tappable.php │ ├── ViewErrorBag.php │ ├── composer.json │ └── helpers.php └── view │ ├── Compilers │ ├── BladeCompiler.php │ ├── Compiler.php │ ├── CompilerInterface.php │ └── Concerns │ │ ├── CompilesAuthorizations.php │ │ ├── CompilesComments.php │ │ ├── CompilesComponents.php │ │ ├── CompilesConditionals.php │ │ ├── CompilesEchos.php │ │ ├── CompilesErrors.php │ │ ├── CompilesHelpers.php │ │ ├── CompilesIncludes.php │ │ ├── CompilesInjections.php │ │ ├── CompilesJson.php │ │ ├── CompilesLayouts.php │ │ ├── CompilesLoops.php │ │ ├── CompilesRawPhp.php │ │ ├── CompilesStacks.php │ │ └── CompilesTranslations.php │ ├── Concerns │ ├── ManagesComponents.php │ ├── ManagesEvents.php │ ├── ManagesLayouts.php │ ├── ManagesLoops.php │ ├── ManagesStacks.php │ └── ManagesTranslations.php │ ├── Engines │ ├── CompilerEngine.php │ ├── Engine.php │ ├── EngineResolver.php │ ├── FileEngine.php │ └── PhpEngine.php │ ├── Factory.php │ ├── FileViewFinder.php │ ├── LICENSE.md │ ├── Middleware │ └── ShareErrorsFromSession.php │ ├── View.php │ ├── ViewFinderInterface.php │ ├── ViewName.php │ ├── ViewServiceProvider.php │ └── composer.json ├── mongodb └── mongodb │ ├── .gitignore │ ├── .travis.yml │ ├── .travis │ ├── debug-core.sh │ ├── mo.sh │ └── setup_mo.sh │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── docs │ ├── .static │ │ └── .mongodb │ ├── images │ │ └── save-flowchart.png │ ├── includes │ │ ├── apiargs-MongoDBClient-common-option.yaml │ │ ├── apiargs-MongoDBClient-method-construct-driverOptions.yaml │ │ ├── apiargs-MongoDBClient-method-construct-param.yaml │ │ ├── apiargs-MongoDBClient-method-dropDatabase-option.yaml │ │ ├── apiargs-MongoDBClient-method-dropDatabase-param.yaml │ │ ├── apiargs-MongoDBClient-method-get-param.yaml │ │ ├── apiargs-MongoDBClient-method-listDatabases-option.yaml │ │ ├── apiargs-MongoDBClient-method-listDatabases-param.yaml │ │ ├── apiargs-MongoDBClient-method-selectCollection-option.yaml │ │ ├── apiargs-MongoDBClient-method-selectCollection-param.yaml │ │ ├── apiargs-MongoDBClient-method-selectDatabase-option.yaml │ │ ├── apiargs-MongoDBClient-method-selectDatabase-param.yaml │ │ ├── apiargs-MongoDBClient-method-watch-option.yaml │ │ ├── apiargs-MongoDBClient-method-watch-param.yaml │ │ ├── apiargs-MongoDBCollection-common-option.yaml │ │ ├── apiargs-MongoDBCollection-common-param.yaml │ │ ├── apiargs-MongoDBCollection-method-aggregate-option.yaml │ │ ├── apiargs-MongoDBCollection-method-aggregate-param.yaml │ │ ├── apiargs-MongoDBCollection-method-bulkWrite-option.yaml │ │ ├── apiargs-MongoDBCollection-method-bulkWrite-param.yaml │ │ ├── apiargs-MongoDBCollection-method-construct-option.yaml │ │ ├── apiargs-MongoDBCollection-method-construct-param.yaml │ │ ├── apiargs-MongoDBCollection-method-count-option.yaml │ │ ├── apiargs-MongoDBCollection-method-count-param.yaml │ │ ├── apiargs-MongoDBCollection-method-countDocuments-option.yaml │ │ ├── apiargs-MongoDBCollection-method-countDocuments-param.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndex-option.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndex-param.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndexes-option.yaml │ │ ├── apiargs-MongoDBCollection-method-createIndexes-param.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteMany-option.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteMany-param.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-deleteOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-distinct-option.yaml │ │ ├── apiargs-MongoDBCollection-method-distinct-param.yaml │ │ ├── apiargs-MongoDBCollection-method-drop-option.yaml │ │ ├── apiargs-MongoDBCollection-method-drop-param.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndex-option.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndex-param.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndexes-option.yaml │ │ ├── apiargs-MongoDBCollection-method-dropIndexes-param.yaml │ │ ├── apiargs-MongoDBCollection-method-estimateDocumentCount-option.yaml │ │ ├── apiargs-MongoDBCollection-method-estimateDocumentCount-param.yaml │ │ ├── apiargs-MongoDBCollection-method-explain-option.yaml │ │ ├── apiargs-MongoDBCollection-method-explain-param.yaml │ │ ├── apiargs-MongoDBCollection-method-find-option.yaml │ │ ├── apiargs-MongoDBCollection-method-find-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndDelete-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndDelete-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndReplace-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndReplace-param.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndUpdate-option.yaml │ │ ├── apiargs-MongoDBCollection-method-findOneAndUpdate-param.yaml │ │ ├── apiargs-MongoDBCollection-method-insertMany-option.yaml │ │ ├── apiargs-MongoDBCollection-method-insertMany-param.yaml │ │ ├── apiargs-MongoDBCollection-method-insertOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-insertOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-listIndexes-option.yaml │ │ ├── apiargs-MongoDBCollection-method-listIndexes-param.yaml │ │ ├── apiargs-MongoDBCollection-method-mapReduce-option.yaml │ │ ├── apiargs-MongoDBCollection-method-mapReduce-param.yaml │ │ ├── apiargs-MongoDBCollection-method-replaceOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-replaceOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-updateMany-option.yaml │ │ ├── apiargs-MongoDBCollection-method-updateMany-param.yaml │ │ ├── apiargs-MongoDBCollection-method-updateOne-option.yaml │ │ ├── apiargs-MongoDBCollection-method-updateOne-param.yaml │ │ ├── apiargs-MongoDBCollection-method-watch-option.yaml │ │ ├── apiargs-MongoDBCollection-method-watch-param.yaml │ │ ├── apiargs-MongoDBCollection-method-withOptions-option.yaml │ │ ├── apiargs-MongoDBCollection-method-withOptions-param.yaml │ │ ├── apiargs-MongoDBDatabase-common-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-command-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-command-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-construct-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-construct-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-createCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-createCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-drop-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-drop-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-dropCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-dropCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-get-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-listCollections-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-listCollections-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-modifyCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-modifyCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectCollection-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectCollection-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectGridFSBucket-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-selectGridFSBucket-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-watch-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-watch-param.yaml │ │ ├── apiargs-MongoDBDatabase-method-withOptions-option.yaml │ │ ├── apiargs-MongoDBDatabase-method-withOptions-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-common-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-common-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-construct-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-construct-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-delete-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-downloadToStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-downloadToStreamByName-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-downloadToStreamByName-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-find-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-findOne-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-getFileDocumentForStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-getFileIdForStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openDownloadStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openDownloadStreamByName-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openDownloadStreamByName-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openUploadStream-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-openUploadStream-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-rename-param.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-uploadFromStream-option.yaml │ │ ├── apiargs-MongoDBGridFSBucket-method-uploadFromStream-param.yaml │ │ ├── apiargs-common-option.yaml │ │ ├── apiargs-common-param.yaml │ │ ├── apiargs-method-watch-option.yaml │ │ ├── apiargs-method-watch-param.yaml │ │ ├── extracts-bulkwriteexception.yaml │ │ ├── extracts-error.yaml │ │ └── extracts-note.yaml │ ├── index.txt │ ├── pretty.js │ ├── reference.txt │ ├── reference │ │ ├── bson.txt │ │ ├── class │ │ │ ├── MongoDBClient.txt │ │ │ ├── MongoDBCollection.txt │ │ │ ├── MongoDBDatabase.txt │ │ │ └── MongoDBGridFSBucket.txt │ │ ├── enumeration-classes.txt │ │ ├── exception-classes.txt │ │ ├── method │ │ │ ├── MongoDBBulkWriteResult-getDeletedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getInsertedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getInsertedIds.txt │ │ │ ├── MongoDBBulkWriteResult-getMatchedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getModifiedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getUpsertedCount.txt │ │ │ ├── MongoDBBulkWriteResult-getUpsertedIds.txt │ │ │ ├── MongoDBBulkWriteResult-isAcknowledged.txt │ │ │ ├── MongoDBChangeStream-current.txt │ │ │ ├── MongoDBChangeStream-getCursorId.txt │ │ │ ├── MongoDBChangeStream-key.txt │ │ │ ├── MongoDBChangeStream-next.txt │ │ │ ├── MongoDBChangeStream-rewind.txt │ │ │ ├── MongoDBChangeStream-valid.txt │ │ │ ├── MongoDBClient-dropDatabase.txt │ │ │ ├── MongoDBClient-getManager.txt │ │ │ ├── MongoDBClient-getReadConcern.txt │ │ │ ├── MongoDBClient-getReadPreference.txt │ │ │ ├── MongoDBClient-getTypeMap.txt │ │ │ ├── MongoDBClient-getWriteConcern.txt │ │ │ ├── MongoDBClient-listDatabases.txt │ │ │ ├── MongoDBClient-selectCollection.txt │ │ │ ├── MongoDBClient-selectDatabase.txt │ │ │ ├── MongoDBClient-startSession.txt │ │ │ ├── MongoDBClient-watch.txt │ │ │ ├── MongoDBClient__construct.txt │ │ │ ├── MongoDBClient__get.txt │ │ │ ├── MongoDBCollection-aggregate.txt │ │ │ ├── MongoDBCollection-bulkWrite.txt │ │ │ ├── MongoDBCollection-count.txt │ │ │ ├── MongoDBCollection-countDocuments.txt │ │ │ ├── MongoDBCollection-createIndex.txt │ │ │ ├── MongoDBCollection-createIndexes.txt │ │ │ ├── MongoDBCollection-deleteMany.txt │ │ │ ├── MongoDBCollection-deleteOne.txt │ │ │ ├── MongoDBCollection-distinct.txt │ │ │ ├── MongoDBCollection-drop.txt │ │ │ ├── MongoDBCollection-dropIndex.txt │ │ │ ├── MongoDBCollection-dropIndexes.txt │ │ │ ├── MongoDBCollection-estimatedDocumentCount.txt │ │ │ ├── MongoDBCollection-explain.txt │ │ │ ├── MongoDBCollection-find.txt │ │ │ ├── MongoDBCollection-findOne.txt │ │ │ ├── MongoDBCollection-findOneAndDelete.txt │ │ │ ├── MongoDBCollection-findOneAndReplace.txt │ │ │ ├── MongoDBCollection-findOneAndUpdate.txt │ │ │ ├── MongoDBCollection-getCollectionName.txt │ │ │ ├── MongoDBCollection-getDatabaseName.txt │ │ │ ├── MongoDBCollection-getManager.txt │ │ │ ├── MongoDBCollection-getNamespace.txt │ │ │ ├── MongoDBCollection-getReadConcern.txt │ │ │ ├── MongoDBCollection-getReadPreference.txt │ │ │ ├── MongoDBCollection-getTypeMap.txt │ │ │ ├── MongoDBCollection-getWriteConcern.txt │ │ │ ├── MongoDBCollection-insertMany.txt │ │ │ ├── MongoDBCollection-insertOne.txt │ │ │ ├── MongoDBCollection-listIndexes.txt │ │ │ ├── MongoDBCollection-mapReduce.txt │ │ │ ├── MongoDBCollection-replaceOne.txt │ │ │ ├── MongoDBCollection-updateMany.txt │ │ │ ├── MongoDBCollection-updateOne.txt │ │ │ ├── MongoDBCollection-watch.txt │ │ │ ├── MongoDBCollection-withOptions.txt │ │ │ ├── MongoDBCollection__construct.txt │ │ │ ├── MongoDBDatabase-command.txt │ │ │ ├── MongoDBDatabase-createCollection.txt │ │ │ ├── MongoDBDatabase-drop.txt │ │ │ ├── MongoDBDatabase-dropCollection.txt │ │ │ ├── MongoDBDatabase-getDatabaseName.txt │ │ │ ├── MongoDBDatabase-getManager.txt │ │ │ ├── MongoDBDatabase-getReadConcern.txt │ │ │ ├── MongoDBDatabase-getReadPreference.txt │ │ │ ├── MongoDBDatabase-getTypeMap.txt │ │ │ ├── MongoDBDatabase-getWriteConcern.txt │ │ │ ├── MongoDBDatabase-listCollections.txt │ │ │ ├── MongoDBDatabase-modifyCollection.txt │ │ │ ├── MongoDBDatabase-selectCollection.txt │ │ │ ├── MongoDBDatabase-selectGridFSBucket.txt │ │ │ ├── MongoDBDatabase-watch.txt │ │ │ ├── MongoDBDatabase-withOptions.txt │ │ │ ├── MongoDBDatabase__construct.txt │ │ │ ├── MongoDBDatabase__get.txt │ │ │ ├── MongoDBDeleteResult-getDeletedCount.txt │ │ │ ├── MongoDBDeleteResult-isAcknowledged.txt │ │ │ ├── MongoDBGridFSBucket-delete.txt │ │ │ ├── MongoDBGridFSBucket-downloadToStream.txt │ │ │ ├── MongoDBGridFSBucket-downloadToStreamByName.txt │ │ │ ├── MongoDBGridFSBucket-drop.txt │ │ │ ├── MongoDBGridFSBucket-find.txt │ │ │ ├── MongoDBGridFSBucket-findOne.txt │ │ │ ├── MongoDBGridFSBucket-getBucketName.txt │ │ │ ├── MongoDBGridFSBucket-getChunkSizeBytes.txt │ │ │ ├── MongoDBGridFSBucket-getChunksCollection.txt │ │ │ ├── MongoDBGridFSBucket-getDatabaseName.txt │ │ │ ├── MongoDBGridFSBucket-getFileDocumentForStream.txt │ │ │ ├── MongoDBGridFSBucket-getFileIdForStream.txt │ │ │ ├── MongoDBGridFSBucket-getFilesCollection.txt │ │ │ ├── MongoDBGridFSBucket-getReadConcern.txt │ │ │ ├── MongoDBGridFSBucket-getReadPreference.txt │ │ │ ├── MongoDBGridFSBucket-getTypeMap.txt │ │ │ ├── MongoDBGridFSBucket-getWriteConcern.txt │ │ │ ├── MongoDBGridFSBucket-openDownloadStream.txt │ │ │ ├── MongoDBGridFSBucket-openDownloadStreamByName.txt │ │ │ ├── MongoDBGridFSBucket-openUploadStream.txt │ │ │ ├── MongoDBGridFSBucket-rename.txt │ │ │ ├── MongoDBGridFSBucket-uploadFromStream.txt │ │ │ ├── MongoDBGridFSBucket__construct.txt │ │ │ ├── MongoDBInsertManyResult-getInsertedCount.txt │ │ │ ├── MongoDBInsertManyResult-getInsertedIds.txt │ │ │ ├── MongoDBInsertManyResult-isAcknowledged.txt │ │ │ ├── MongoDBInsertOneResult-getInsertedCount.txt │ │ │ ├── MongoDBInsertOneResult-getInsertedId.txt │ │ │ ├── MongoDBInsertOneResult-isAcknowledged.txt │ │ │ ├── MongoDBMapReduceResult-getCounts.txt │ │ │ ├── MongoDBMapReduceResult-getExecutionTimeMS.txt │ │ │ ├── MongoDBMapReduceResult-getIterator.txt │ │ │ ├── MongoDBMapReduceResult-getTiming.txt │ │ │ ├── MongoDBModelCollectionInfo-getCappedMax.txt │ │ │ ├── MongoDBModelCollectionInfo-getCappedSize.txt │ │ │ ├── MongoDBModelCollectionInfo-getName.txt │ │ │ ├── MongoDBModelCollectionInfo-getOptions.txt │ │ │ ├── MongoDBModelCollectionInfo-isCapped.txt │ │ │ ├── MongoDBModelDatabaseInfo-getName.txt │ │ │ ├── MongoDBModelDatabaseInfo-getSizeOnDisk.txt │ │ │ ├── MongoDBModelDatabaseInfo-isEmpty.txt │ │ │ ├── MongoDBModelIndexInfo-getKey.txt │ │ │ ├── MongoDBModelIndexInfo-getName.txt │ │ │ ├── MongoDBModelIndexInfo-getNamespace.txt │ │ │ ├── MongoDBModelIndexInfo-getVersion.txt │ │ │ ├── MongoDBModelIndexInfo-is2dSphere.txt │ │ │ ├── MongoDBModelIndexInfo-isGeoHaystack.txt │ │ │ ├── MongoDBModelIndexInfo-isSparse.txt │ │ │ ├── MongoDBModelIndexInfo-isText.txt │ │ │ ├── MongoDBModelIndexInfo-isTtl.txt │ │ │ ├── MongoDBModelIndexInfo-isUnique.txt │ │ │ ├── MongoDBUpdateResult-getMatchedCount.txt │ │ │ ├── MongoDBUpdateResult-getModifiedCount.txt │ │ │ ├── MongoDBUpdateResult-getUpsertedCount.txt │ │ │ ├── MongoDBUpdateResult-getUpsertedId.txt │ │ │ └── MongoDBUpdateResult-isAcknowledged.txt │ │ ├── result-classes.txt │ │ └── write-result-classes.txt │ ├── tutorial.txt │ ├── tutorial │ │ ├── collation.txt │ │ ├── commands.txt │ │ ├── crud.txt │ │ ├── custom-types.txt │ │ ├── decimal128.txt │ │ ├── example-data.txt │ │ ├── gridfs.txt │ │ ├── indexes.txt │ │ ├── install-php-library.txt │ │ └── tailable-cursor.txt │ └── upgrade.txt │ ├── mongo-orchestration │ ├── replica_sets │ │ ├── replicaset-old.json │ │ ├── replicaset-one-node.json │ │ └── replicaset.json │ ├── sharded_clusters │ │ ├── cluster.json │ │ └── cluster_replset.json │ ├── ssl │ │ ├── ca.pem │ │ ├── client.pem │ │ ├── crl.pem │ │ └── server.pem │ └── standalone │ │ ├── standalone-auth.json │ │ ├── standalone-old.json │ │ ├── standalone-ssl.json │ │ └── standalone.json │ ├── phpunit.xml.dist │ ├── src │ ├── BulkWriteResult.php │ ├── ChangeStream.php │ ├── Client.php │ ├── Collection.php │ ├── Database.php │ ├── DeleteResult.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── ResumeTokenException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedValueException.php │ │ └── UnsupportedException.php │ ├── GridFS │ │ ├── Bucket.php │ │ ├── CollectionWrapper.php │ │ ├── Exception │ │ │ ├── CorruptFileException.php │ │ │ └── FileNotFoundException.php │ │ ├── ReadableStream.php │ │ ├── StreamWrapper.php │ │ └── WritableStream.php │ ├── InsertManyResult.php │ ├── InsertOneResult.php │ ├── MapReduceResult.php │ ├── Model │ │ ├── BSONArray.php │ │ ├── BSONDocument.php │ │ ├── BSONIterator.php │ │ ├── CachingIterator.php │ │ ├── ChangeStreamIterator.php │ │ ├── CollectionInfo.php │ │ ├── CollectionInfoCommandIterator.php │ │ ├── CollectionInfoIterator.php │ │ ├── DatabaseInfo.php │ │ ├── DatabaseInfoIterator.php │ │ ├── DatabaseInfoLegacyIterator.php │ │ ├── IndexInfo.php │ │ ├── IndexInfoIterator.php │ │ ├── IndexInfoIteratorIterator.php │ │ ├── IndexInput.php │ │ └── TypeMapArrayIterator.php │ ├── Operation │ │ ├── Aggregate.php │ │ ├── BulkWrite.php │ │ ├── Count.php │ │ ├── CountDocuments.php │ │ ├── CreateCollection.php │ │ ├── CreateIndexes.php │ │ ├── DatabaseCommand.php │ │ ├── Delete.php │ │ ├── DeleteMany.php │ │ ├── DeleteOne.php │ │ ├── Distinct.php │ │ ├── DropCollection.php │ │ ├── DropDatabase.php │ │ ├── DropIndexes.php │ │ ├── EstimatedDocumentCount.php │ │ ├── Executable.php │ │ ├── Explain.php │ │ ├── Explainable.php │ │ ├── Find.php │ │ ├── FindAndModify.php │ │ ├── FindOne.php │ │ ├── FindOneAndDelete.php │ │ ├── FindOneAndReplace.php │ │ ├── FindOneAndUpdate.php │ │ ├── InsertMany.php │ │ ├── InsertOne.php │ │ ├── ListCollections.php │ │ ├── ListDatabases.php │ │ ├── ListIndexes.php │ │ ├── MapReduce.php │ │ ├── ModifyCollection.php │ │ ├── ReplaceOne.php │ │ ├── Update.php │ │ ├── UpdateMany.php │ │ ├── UpdateOne.php │ │ └── Watch.php │ ├── UpdateResult.php │ └── functions.php │ └── tests │ ├── ClientFunctionalTest.php │ ├── ClientTest.php │ ├── Collection │ ├── CollectionFunctionalTest.php │ ├── CrudSpecFunctionalTest.php │ ├── FunctionalTestCase.php │ └── spec-tests │ │ ├── read │ │ ├── aggregate-collation.json │ │ ├── aggregate-out.json │ │ ├── aggregate.json │ │ ├── count-collation.json │ │ ├── count-empty.json │ │ ├── count.json │ │ ├── distinct-collation.json │ │ ├── distinct.json │ │ ├── find-collation.json │ │ └── find.json │ │ └── write │ │ ├── bulkWrite-arrayFilters.json │ │ ├── bulkWrite-collation.json │ │ ├── bulkWrite.json │ │ ├── deleteMany-collation.json │ │ ├── deleteMany.json │ │ ├── deleteOne-collation.json │ │ ├── deleteOne.json │ │ ├── findOneAndDelete-collation.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace-collation.json │ │ ├── findOneAndReplace-upsert.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate-arrayFilters.json │ │ ├── findOneAndUpdate-collation.json │ │ ├── findOneAndUpdate.json │ │ ├── insertMany.json │ │ ├── insertOne.json │ │ ├── replaceOne-collation.json │ │ ├── replaceOne.json │ │ ├── updateMany-arrayFilters.json │ │ ├── updateMany-collation.json │ │ ├── updateMany.json │ │ ├── updateOne-arrayFilters.json │ │ ├── updateOne-collation.json │ │ └── updateOne.json │ ├── CommandObserver.php │ ├── Database │ ├── CollectionManagementFunctionalTest.php │ ├── DatabaseFunctionalTest.php │ └── FunctionalTestCase.php │ ├── DocumentationExamplesTest.php │ ├── FunctionalTestCase.php │ ├── FunctionsTest.php │ ├── GridFS │ ├── BucketFunctionalTest.php │ ├── FunctionalTestCase.php │ ├── ReadableStreamFunctionalTest.php │ ├── SpecFunctionalTest.php │ ├── StreamWrapperFunctionalTest.php │ ├── WritableStreamFunctionalTest.php │ └── spec-tests │ │ ├── delete.json │ │ ├── download.json │ │ ├── download_by_name.json │ │ └── upload.json │ ├── Model │ ├── BSONArrayTest.php │ ├── BSONDocumentTest.php │ ├── BSONIteratorTest.php │ ├── CachingIteratorTest.php │ ├── ChangeStreamIteratorTest.php │ ├── CollectionInfoTest.php │ ├── DatabaseInfoTest.php │ ├── IndexInfoFunctionalTest.php │ ├── IndexInfoTest.php │ ├── IndexInputTest.php │ ├── TypeMapArrayIteratorTest.php │ └── UncloneableObject.php │ ├── Operation │ ├── AggregateFunctionalTest.php │ ├── AggregateTest.php │ ├── BulkWriteFunctionalTest.php │ ├── BulkWriteTest.php │ ├── CountDocumentsFunctionalTest.php │ ├── CountDocumentsTest.php │ ├── CountFunctionalTest.php │ ├── CountTest.php │ ├── CreateCollectionFunctionalTest.php │ ├── CreateCollectionTest.php │ ├── CreateIndexesFunctionalTest.php │ ├── CreateIndexesTest.php │ ├── DatabaseCommandFunctionalTest.php │ ├── DatabaseCommandTest.php │ ├── DeleteFunctionalTest.php │ ├── DeleteTest.php │ ├── DistinctFunctionalTest.php │ ├── DistinctTest.php │ ├── DropCollectionFunctionalTest.php │ ├── DropCollectionTest.php │ ├── DropDatabaseFunctionalTest.php │ ├── DropDatabaseTest.php │ ├── DropIndexesFunctionalTest.php │ ├── DropIndexesTest.php │ ├── EstimatedDocumentCountTest.php │ ├── ExplainFunctionalTest.php │ ├── ExplainTest.php │ ├── FindAndModifyFunctionalTest.php │ ├── FindAndModifyTest.php │ ├── FindFunctionalTest.php │ ├── FindOneAndDeleteTest.php │ ├── FindOneAndReplaceTest.php │ ├── FindOneAndUpdateTest.php │ ├── FindOneFunctionalTest.php │ ├── FindTest.php │ ├── FunctionalTestCase.php │ ├── InsertManyFunctionalTest.php │ ├── InsertManyTest.php │ ├── InsertOneFunctionalTest.php │ ├── InsertOneTest.php │ ├── ListCollectionsFunctionalTest.php │ ├── ListCollectionsTest.php │ ├── ListDatabasesFunctionalTest.php │ ├── ListDatabasesTest.php │ ├── ListIndexesFunctionalTest.php │ ├── ListIndexesTest.php │ ├── MapReduceFunctionalTest.php │ ├── MapReduceTest.php │ ├── ModifyCollectionFunctionalTest.php │ ├── ModifyCollectionTest.php │ ├── ReplaceOneTest.php │ ├── TestCase.php │ ├── UpdateFunctionalTest.php │ ├── UpdateManyTest.php │ ├── UpdateOneTest.php │ ├── UpdateTest.php │ ├── WatchFunctionalTest.php │ └── WatchTest.php │ ├── PedantryTest.php │ ├── SpecTests │ ├── ChangeStreamsSpecTest.php │ ├── CommandExpectations.php │ ├── CommandMonitoringSpecTest.php │ ├── Context.php │ ├── DocumentsMatchConstraint.php │ ├── DocumentsMatchConstraintTest.php │ ├── ErrorExpectation.php │ ├── FunctionalTestCase.php │ ├── Operation.php │ ├── ResultExpectation.php │ ├── RetryableWritesSpecTest.php │ ├── TransactionsSpecTest.php │ ├── change-streams │ │ ├── README.rst │ │ ├── change-streams-errors.json │ │ ├── change-streams-errors.yml │ │ ├── change-streams.json │ │ └── change-streams.yml │ ├── command-monitoring │ │ ├── bulkWrite.json │ │ ├── command.json │ │ ├── deleteMany.json │ │ ├── deleteOne.json │ │ ├── find.json │ │ ├── insertMany.json │ │ ├── insertOne.json │ │ ├── unacknowledgedBulkWrite.json │ │ ├── updateMany.json │ │ └── updateOne.json │ ├── retryable-writes │ │ ├── bulkWrite-serverErrors.json │ │ ├── bulkWrite.json │ │ ├── deleteMany.json │ │ ├── deleteOne-serverErrors.json │ │ ├── deleteOne.json │ │ ├── findOneAndDelete-serverErrors.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace-serverErrors.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate-serverErrors.json │ │ ├── findOneAndUpdate.json │ │ ├── insertMany-serverErrors.json │ │ ├── insertMany.json │ │ ├── insertOne-serverErrors.json │ │ ├── insertOne.json │ │ ├── replaceOne-serverErrors.json │ │ ├── replaceOne.json │ │ ├── updateMany.json │ │ ├── updateOne-serverErrors.json │ │ └── updateOne.json │ └── transactions │ │ ├── abort.json │ │ ├── bulk.json │ │ ├── causal-consistency.json │ │ ├── commit.json │ │ ├── count.json │ │ ├── delete.json │ │ ├── error-labels.json │ │ ├── errors.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate.json │ │ ├── insert.json │ │ ├── isolation.json │ │ ├── mongos-pin-auto.json │ │ ├── mongos-recovery-token.json │ │ ├── pin-mongos.json │ │ ├── read-concern.json │ │ ├── read-pref.json │ │ ├── reads.json │ │ ├── retryable-abort.json │ │ ├── retryable-commit.json │ │ ├── retryable-writes.json │ │ ├── run-command.json │ │ ├── transaction-options.json │ │ ├── update.json │ │ └── write-concern.json │ ├── TestCase.php │ └── bootstrap.php ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── 01-usage.md │ ├── 02-handlers-formatters-processors.md │ ├── 03-utilities.md │ ├── 04-extending.md │ └── sockets.md │ ├── phpunit.xml.dist │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── FluentdFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── MongoDBFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DeduplicationHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FleepHookHandlerTest.php │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GelfMockMessagePublisher.php │ ├── GroupHandlerTest.php │ ├── HandlerWrapperTest.php │ ├── HipChatHandlerTest.php │ ├── InsightOpsHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RollbarHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── Slack │ │ └── SlackRecordTest.php │ ├── SlackHandlerTest.php │ ├── SlackWebhookHandlerTest.php │ ├── SlackbotHandlerTest.php │ ├── SocketHandlerTest.php │ ├── StreamHandlerTest.php │ ├── SwiftMailerHandlerTest.php │ ├── SyslogHandlerTest.php │ ├── SyslogUdpHandlerTest.php │ ├── TestHandlerTest.php │ ├── UdpSocketTest.php │ ├── WhatFailureGroupHandlerTest.php │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ ├── GitProcessorTest.php │ ├── IntrospectionProcessorTest.php │ ├── MemoryPeakUsageProcessorTest.php │ ├── MemoryUsageProcessorTest.php │ ├── MercurialProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ ├── SignalHandlerTest.php │ └── TestCase.php ├── nesbot └── carbon │ ├── .github │ └── ISSUE_TEMPLATE.md │ ├── .multi-tester.yml │ ├── LICENSE │ ├── composer.json │ ├── contributing.md │ ├── phpmd.xml │ ├── readme.md │ └── src │ └── Carbon │ ├── Carbon.php │ ├── CarbonImmutable.php │ ├── CarbonInterface.php │ ├── CarbonInterval.php │ ├── CarbonPeriod.php │ ├── CarbonTimeZone.php │ ├── Exceptions │ └── InvalidDateException.php │ ├── Factory.php │ ├── FactoryImmutable.php │ ├── Lang │ ├── aa.php │ ├── aa_DJ.php │ ├── aa_ER.php │ ├── aa_ER@saaho.php │ ├── aa_ET.php │ ├── af.php │ ├── af_NA.php │ ├── af_ZA.php │ ├── agq.php │ ├── agr.php │ ├── agr_PE.php │ ├── ak.php │ ├── ak_GH.php │ ├── am.php │ ├── am_ET.php │ ├── an.php │ ├── an_ES.php │ ├── anp.php │ ├── anp_IN.php │ ├── ar.php │ ├── ar_AE.php │ ├── ar_BH.php │ ├── ar_DJ.php │ ├── ar_DZ.php │ ├── ar_EG.php │ ├── ar_EH.php │ ├── ar_ER.php │ ├── ar_IL.php │ ├── ar_IN.php │ ├── ar_IQ.php │ ├── ar_JO.php │ ├── ar_KM.php │ ├── ar_KW.php │ ├── ar_LB.php │ ├── ar_LY.php │ ├── ar_MA.php │ ├── ar_MR.php │ ├── ar_OM.php │ ├── ar_PS.php │ ├── ar_QA.php │ ├── ar_SA.php │ ├── ar_SD.php │ ├── ar_SO.php │ ├── ar_SS.php │ ├── ar_SY.php │ ├── ar_Shakl.php │ ├── ar_TD.php │ ├── ar_TN.php │ ├── ar_YE.php │ ├── as.php │ ├── as_IN.php │ ├── asa.php │ ├── ast.php │ ├── ast_ES.php │ ├── ayc.php │ ├── ayc_PE.php │ ├── az.php │ ├── az_AZ.php │ ├── az_Cyrl.php │ ├── az_IR.php │ ├── az_Latn.php │ ├── bas.php │ ├── be.php │ ├── be_BY.php │ ├── be_BY@latin.php │ ├── bem.php │ ├── bem_ZM.php │ ├── ber.php │ ├── ber_DZ.php │ ├── ber_MA.php │ ├── bez.php │ ├── bg.php │ ├── bg_BG.php │ ├── bhb.php │ ├── bhb_IN.php │ ├── bho.php │ ├── bho_IN.php │ ├── bi.php │ ├── bi_VU.php │ ├── bm.php │ ├── bn.php │ ├── bn_BD.php │ ├── bn_IN.php │ ├── bo.php │ ├── bo_CN.php │ ├── bo_IN.php │ ├── br.php │ ├── br_FR.php │ ├── brx.php │ ├── brx_IN.php │ ├── bs.php │ ├── bs_BA.php │ ├── bs_Cyrl.php │ ├── bs_Latn.php │ ├── byn.php │ ├── byn_ER.php │ ├── ca.php │ ├── ca_AD.php │ ├── ca_ES.php │ ├── ca_ES_Valencia.php │ ├── ca_FR.php │ ├── ca_IT.php │ ├── ccp.php │ ├── ccp_IN.php │ ├── ce.php │ ├── ce_RU.php │ ├── cgg.php │ ├── chr.php │ ├── chr_US.php │ ├── cmn.php │ ├── cmn_TW.php │ ├── crh.php │ ├── crh_UA.php │ ├── cs.php │ ├── cs_CZ.php │ ├── csb.php │ ├── csb_PL.php │ ├── cu.php │ ├── cv.php │ ├── cv_RU.php │ ├── cy.php │ ├── cy_GB.php │ ├── da.php │ ├── da_DK.php │ ├── da_GL.php │ ├── dav.php │ ├── de.php │ ├── de_AT.php │ ├── de_BE.php │ ├── de_CH.php │ ├── de_DE.php │ ├── de_IT.php │ ├── de_LI.php │ ├── de_LU.php │ ├── dje.php │ ├── doi.php │ ├── doi_IN.php │ ├── dsb.php │ ├── dsb_DE.php │ ├── dua.php │ ├── dv.php │ ├── dv_MV.php │ ├── dyo.php │ ├── dz.php │ ├── dz_BT.php │ ├── ebu.php │ ├── ee.php │ ├── ee_TG.php │ ├── el.php │ ├── el_CY.php │ ├── el_GR.php │ ├── en.php │ ├── en_001.php │ ├── en_150.php │ ├── en_AG.php │ ├── en_AI.php │ ├── en_AS.php │ ├── en_AT.php │ ├── en_AU.php │ ├── en_BB.php │ ├── en_BE.php │ ├── en_BI.php │ ├── en_BM.php │ ├── en_BS.php │ ├── en_BW.php │ ├── en_BZ.php │ ├── en_CA.php │ ├── en_CC.php │ ├── en_CH.php │ ├── en_CK.php │ ├── en_CM.php │ ├── en_CX.php │ ├── en_CY.php │ ├── en_DE.php │ ├── en_DG.php │ ├── en_DK.php │ ├── en_DM.php │ ├── en_ER.php │ ├── en_FI.php │ ├── en_FJ.php │ ├── en_FK.php │ ├── en_FM.php │ ├── en_GB.php │ ├── en_GD.php │ ├── en_GG.php │ ├── en_GH.php │ ├── en_GI.php │ ├── en_GM.php │ ├── en_GU.php │ ├── en_GY.php │ ├── en_HK.php │ ├── en_IE.php │ ├── en_IL.php │ ├── en_IM.php │ ├── en_IN.php │ ├── en_IO.php │ ├── en_ISO.php │ ├── en_JE.php │ ├── en_JM.php │ ├── en_KE.php │ ├── en_KI.php │ ├── en_KN.php │ ├── en_KY.php │ ├── en_LC.php │ ├── en_LR.php │ ├── en_LS.php │ ├── en_MG.php │ ├── en_MH.php │ ├── en_MO.php │ ├── en_MP.php │ ├── en_MS.php │ ├── en_MT.php │ ├── en_MU.php │ ├── en_MW.php │ ├── en_MY.php │ ├── en_NA.php │ ├── en_NF.php │ ├── en_NG.php │ ├── en_NL.php │ ├── en_NR.php │ ├── en_NU.php │ ├── en_NZ.php │ ├── en_PG.php │ ├── en_PH.php │ ├── en_PK.php │ ├── en_PN.php │ ├── en_PR.php │ ├── en_PW.php │ ├── en_RW.php │ ├── en_SB.php │ ├── en_SC.php │ ├── en_SD.php │ ├── en_SE.php │ ├── en_SG.php │ ├── en_SH.php │ ├── en_SI.php │ ├── en_SL.php │ ├── en_SS.php │ ├── en_SX.php │ ├── en_SZ.php │ ├── en_TC.php │ ├── en_TK.php │ ├── en_TO.php │ ├── en_TT.php │ ├── en_TV.php │ ├── en_TZ.php │ ├── en_UG.php │ ├── en_UM.php │ ├── en_US.php │ ├── en_US_Posix.php │ ├── en_VC.php │ ├── en_VG.php │ ├── en_VI.php │ ├── en_VU.php │ ├── en_WS.php │ ├── en_ZA.php │ ├── en_ZM.php │ ├── en_ZW.php │ ├── eo.php │ ├── es.php │ ├── es_419.php │ ├── es_AR.php │ ├── es_BO.php │ ├── es_BR.php │ ├── es_BZ.php │ ├── es_CL.php │ ├── es_CO.php │ ├── es_CR.php │ ├── es_CU.php │ ├── es_DO.php │ ├── es_EA.php │ ├── es_EC.php │ ├── es_ES.php │ ├── es_GQ.php │ ├── es_GT.php │ ├── es_HN.php │ ├── es_IC.php │ ├── es_MX.php │ ├── es_NI.php │ ├── es_PA.php │ ├── es_PE.php │ ├── es_PH.php │ ├── es_PR.php │ ├── es_PY.php │ ├── es_SV.php │ ├── es_US.php │ ├── es_UY.php │ ├── es_VE.php │ ├── et.php │ ├── et_EE.php │ ├── eu.php │ ├── eu_ES.php │ ├── ewo.php │ ├── fa.php │ ├── fa_AF.php │ ├── fa_IR.php │ ├── ff.php │ ├── ff_CM.php │ ├── ff_GN.php │ ├── ff_MR.php │ ├── ff_SN.php │ ├── fi.php │ ├── fi_FI.php │ ├── fil.php │ ├── fil_PH.php │ ├── fo.php │ ├── fo_DK.php │ ├── fo_FO.php │ ├── fr.php │ ├── fr_BE.php │ ├── fr_BF.php │ ├── fr_BI.php │ ├── fr_BJ.php │ ├── fr_BL.php │ ├── fr_CA.php │ ├── fr_CD.php │ ├── fr_CF.php │ ├── fr_CG.php │ ├── fr_CH.php │ ├── fr_CI.php │ ├── fr_CM.php │ ├── fr_DJ.php │ ├── fr_DZ.php │ ├── fr_FR.php │ ├── fr_GA.php │ ├── fr_GF.php │ ├── fr_GN.php │ ├── fr_GP.php │ ├── fr_GQ.php │ ├── fr_HT.php │ ├── fr_KM.php │ ├── fr_LU.php │ ├── fr_MA.php │ ├── fr_MC.php │ ├── fr_MF.php │ ├── fr_MG.php │ ├── fr_ML.php │ ├── fr_MQ.php │ ├── fr_MR.php │ ├── fr_MU.php │ ├── fr_NC.php │ ├── fr_NE.php │ ├── fr_PF.php │ ├── fr_PM.php │ ├── fr_RE.php │ ├── fr_RW.php │ ├── fr_SC.php │ ├── fr_SN.php │ ├── fr_SY.php │ ├── fr_TD.php │ ├── fr_TG.php │ ├── fr_TN.php │ ├── fr_VU.php │ ├── fr_WF.php │ ├── fr_YT.php │ ├── fur.php │ ├── fur_IT.php │ ├── fy.php │ ├── fy_DE.php │ ├── fy_NL.php │ ├── ga.php │ ├── ga_IE.php │ ├── gd.php │ ├── gd_GB.php │ ├── gez.php │ ├── gez_ER.php │ ├── gez_ET.php │ ├── gl.php │ ├── gl_ES.php │ ├── gom.php │ ├── gom_Latn.php │ ├── gsw.php │ ├── gsw_CH.php │ ├── gsw_FR.php │ ├── gsw_LI.php │ ├── gu.php │ ├── gu_IN.php │ ├── guz.php │ ├── gv.php │ ├── gv_GB.php │ ├── ha.php │ ├── ha_GH.php │ ├── ha_NE.php │ ├── ha_NG.php │ ├── hak.php │ ├── hak_TW.php │ ├── haw.php │ ├── he.php │ ├── he_IL.php │ ├── hi.php │ ├── hi_IN.php │ ├── hif.php │ ├── hif_FJ.php │ ├── hne.php │ ├── hne_IN.php │ ├── hr.php │ ├── hr_BA.php │ ├── hr_HR.php │ ├── hsb.php │ ├── hsb_DE.php │ ├── ht.php │ ├── ht_HT.php │ ├── hu.php │ ├── hu_HU.php │ ├── hy.php │ ├── hy_AM.php │ ├── i18n.php │ ├── ia.php │ ├── ia_FR.php │ ├── id.php │ ├── id_ID.php │ ├── ig.php │ ├── ig_NG.php │ ├── ii.php │ ├── ik.php │ ├── ik_CA.php │ ├── in.php │ ├── is.php │ ├── is_IS.php │ ├── it.php │ ├── it_CH.php │ ├── it_IT.php │ ├── it_SM.php │ ├── it_VA.php │ ├── iu.php │ ├── iu_CA.php │ ├── iw.php │ ├── ja.php │ ├── ja_JP.php │ ├── jgo.php │ ├── jmc.php │ ├── jv.php │ ├── ka.php │ ├── ka_GE.php │ ├── kab.php │ ├── kab_DZ.php │ ├── kam.php │ ├── kde.php │ ├── kea.php │ ├── khq.php │ ├── ki.php │ ├── kk.php │ ├── kk_KZ.php │ ├── kkj.php │ ├── kl.php │ ├── kl_GL.php │ ├── kln.php │ ├── km.php │ ├── km_KH.php │ ├── kn.php │ ├── kn_IN.php │ ├── ko.php │ ├── ko_KP.php │ ├── ko_KR.php │ ├── kok.php │ ├── kok_IN.php │ ├── ks.php │ ├── ks_IN.php │ ├── ks_IN@devanagari.php │ ├── ksb.php │ ├── ksf.php │ ├── ksh.php │ ├── ku.php │ ├── ku_TR.php │ ├── kw.php │ ├── kw_GB.php │ ├── ky.php │ ├── ky_KG.php │ ├── lag.php │ ├── lb.php │ ├── lb_LU.php │ ├── lg.php │ ├── lg_UG.php │ ├── li.php │ ├── li_NL.php │ ├── lij.php │ ├── lij_IT.php │ ├── lkt.php │ ├── ln.php │ ├── ln_AO.php │ ├── ln_CD.php │ ├── ln_CF.php │ ├── ln_CG.php │ ├── lo.php │ ├── lo_LA.php │ ├── lrc.php │ ├── lrc_IQ.php │ ├── lt.php │ ├── lt_LT.php │ ├── lu.php │ ├── luo.php │ ├── luy.php │ ├── lv.php │ ├── lv_LV.php │ ├── lzh.php │ ├── lzh_TW.php │ ├── mag.php │ ├── mag_IN.php │ ├── mai.php │ ├── mai_IN.php │ ├── mas.php │ ├── mas_TZ.php │ ├── me.php │ ├── mer.php │ ├── mfe.php │ ├── mfe_MU.php │ ├── mg.php │ ├── mg_MG.php │ ├── mgh.php │ ├── mgo.php │ ├── mhr.php │ ├── mhr_RU.php │ ├── mi.php │ ├── mi_NZ.php │ ├── miq.php │ ├── miq_NI.php │ ├── mjw.php │ ├── mjw_IN.php │ ├── mk.php │ ├── mk_MK.php │ ├── ml.php │ ├── ml_IN.php │ ├── mn.php │ ├── mn_MN.php │ ├── mni.php │ ├── mni_IN.php │ ├── mo.php │ ├── mr.php │ ├── mr_IN.php │ ├── ms.php │ ├── ms_BN.php │ ├── ms_MY.php │ ├── ms_SG.php │ ├── mt.php │ ├── mt_MT.php │ ├── mua.php │ ├── my.php │ ├── my_MM.php │ ├── mzn.php │ ├── nan.php │ ├── nan_TW.php │ ├── nan_TW@latin.php │ ├── naq.php │ ├── nb.php │ ├── nb_NO.php │ ├── nb_SJ.php │ ├── nd.php │ ├── nds.php │ ├── nds_DE.php │ ├── nds_NL.php │ ├── ne.php │ ├── ne_IN.php │ ├── ne_NP.php │ ├── nhn.php │ ├── nhn_MX.php │ ├── niu.php │ ├── niu_NU.php │ ├── nl.php │ ├── nl_AW.php │ ├── nl_BE.php │ ├── nl_BQ.php │ ├── nl_CW.php │ ├── nl_NL.php │ ├── nl_SR.php │ ├── nl_SX.php │ ├── nmg.php │ ├── nn.php │ ├── nn_NO.php │ ├── nnh.php │ ├── no.php │ ├── nr.php │ ├── nr_ZA.php │ ├── nso.php │ ├── nso_ZA.php │ ├── nus.php │ ├── nyn.php │ ├── oc.php │ ├── oc_FR.php │ ├── om.php │ ├── om_ET.php │ ├── om_KE.php │ ├── or.php │ ├── or_IN.php │ ├── os.php │ ├── os_RU.php │ ├── pa.php │ ├── pa_Arab.php │ ├── pa_Guru.php │ ├── pa_IN.php │ ├── pa_PK.php │ ├── pap.php │ ├── pap_AW.php │ ├── pap_CW.php │ ├── pl.php │ ├── pl_PL.php │ ├── prg.php │ ├── ps.php │ ├── ps_AF.php │ ├── pt.php │ ├── pt_AO.php │ ├── pt_BR.php │ ├── pt_CH.php │ ├── pt_CV.php │ ├── pt_GQ.php │ ├── pt_GW.php │ ├── pt_LU.php │ ├── pt_MO.php │ ├── pt_MZ.php │ ├── pt_PT.php │ ├── pt_ST.php │ ├── pt_TL.php │ ├── qu.php │ ├── qu_BO.php │ ├── qu_EC.php │ ├── quz.php │ ├── quz_PE.php │ ├── raj.php │ ├── raj_IN.php │ ├── rm.php │ ├── rn.php │ ├── ro.php │ ├── ro_MD.php │ ├── ro_RO.php │ ├── rof.php │ ├── ru.php │ ├── ru_BY.php │ ├── ru_KG.php │ ├── ru_KZ.php │ ├── ru_MD.php │ ├── ru_RU.php │ ├── ru_UA.php │ ├── rw.php │ ├── rw_RW.php │ ├── rwk.php │ ├── sa.php │ ├── sa_IN.php │ ├── sah.php │ ├── sah_RU.php │ ├── saq.php │ ├── sat.php │ ├── sat_IN.php │ ├── sbp.php │ ├── sc.php │ ├── sc_IT.php │ ├── scr.php │ ├── sd.php │ ├── sd_IN.php │ ├── sd_IN@devanagari.php │ ├── se.php │ ├── se_FI.php │ ├── se_NO.php │ ├── se_SE.php │ ├── seh.php │ ├── ses.php │ ├── sg.php │ ├── sgs.php │ ├── sgs_LT.php │ ├── sh.php │ ├── shi.php │ ├── shi_Latn.php │ ├── shi_Tfng.php │ ├── shn.php │ ├── shn_MM.php │ ├── shs.php │ ├── shs_CA.php │ ├── si.php │ ├── si_LK.php │ ├── sid.php │ ├── sid_ET.php │ ├── sk.php │ ├── sk_SK.php │ ├── sl.php │ ├── sl_SI.php │ ├── sm.php │ ├── sm_WS.php │ ├── smn.php │ ├── sn.php │ ├── so.php │ ├── so_DJ.php │ ├── so_ET.php │ ├── so_KE.php │ ├── so_SO.php │ ├── sq.php │ ├── sq_AL.php │ ├── sq_MK.php │ ├── sq_XK.php │ ├── sr.php │ ├── sr_Cyrl.php │ ├── sr_Cyrl_BA.php │ ├── sr_Cyrl_ME.php │ ├── sr_Cyrl_XK.php │ ├── sr_Latn.php │ ├── sr_Latn_BA.php │ ├── sr_Latn_ME.php │ ├── sr_Latn_XK.php │ ├── sr_ME.php │ ├── sr_RS.php │ ├── sr_RS@latin.php │ ├── ss.php │ ├── ss_ZA.php │ ├── st.php │ ├── st_ZA.php │ ├── sv.php │ ├── sv_AX.php │ ├── sv_FI.php │ ├── sv_SE.php │ ├── sw.php │ ├── sw_CD.php │ ├── sw_KE.php │ ├── sw_TZ.php │ ├── sw_UG.php │ ├── szl.php │ ├── szl_PL.php │ ├── ta.php │ ├── ta_IN.php │ ├── ta_LK.php │ ├── ta_MY.php │ ├── ta_SG.php │ ├── tcy.php │ ├── tcy_IN.php │ ├── te.php │ ├── te_IN.php │ ├── teo.php │ ├── teo_KE.php │ ├── tet.php │ ├── tg.php │ ├── tg_TJ.php │ ├── th.php │ ├── th_TH.php │ ├── the.php │ ├── the_NP.php │ ├── ti.php │ ├── ti_ER.php │ ├── ti_ET.php │ ├── tig.php │ ├── tig_ER.php │ ├── tk.php │ ├── tk_TM.php │ ├── tl.php │ ├── tl_PH.php │ ├── tlh.php │ ├── tn.php │ ├── tn_ZA.php │ ├── to.php │ ├── to_TO.php │ ├── tpi.php │ ├── tpi_PG.php │ ├── tr.php │ ├── tr_CY.php │ ├── tr_TR.php │ ├── ts.php │ ├── ts_ZA.php │ ├── tt.php │ ├── tt_RU.php │ ├── tt_RU@iqtelif.php │ ├── twq.php │ ├── tzl.php │ ├── tzm.php │ ├── tzm_Latn.php │ ├── ug.php │ ├── ug_CN.php │ ├── uk.php │ ├── uk_UA.php │ ├── unm.php │ ├── unm_US.php │ ├── ur.php │ ├── ur_IN.php │ ├── ur_PK.php │ ├── uz.php │ ├── uz_Arab.php │ ├── uz_Cyrl.php │ ├── uz_Latn.php │ ├── uz_UZ.php │ ├── uz_UZ@cyrillic.php │ ├── vai.php │ ├── vai_Latn.php │ ├── vai_Vaii.php │ ├── ve.php │ ├── ve_ZA.php │ ├── vi.php │ ├── vi_VN.php │ ├── vo.php │ ├── vun.php │ ├── wa.php │ ├── wa_BE.php │ ├── wae.php │ ├── wae_CH.php │ ├── wal.php │ ├── wal_ET.php │ ├── wo.php │ ├── wo_SN.php │ ├── xh.php │ ├── xh_ZA.php │ ├── xog.php │ ├── yav.php │ ├── yi.php │ ├── yi_US.php │ ├── yo.php │ ├── yo_BJ.php │ ├── yo_NG.php │ ├── yue.php │ ├── yue_HK.php │ ├── yue_Hans.php │ ├── yue_Hant.php │ ├── yuw.php │ ├── yuw_PG.php │ ├── zgh.php │ ├── zh.php │ ├── zh_CN.php │ ├── zh_HK.php │ ├── zh_Hans.php │ ├── zh_Hans_HK.php │ ├── zh_Hans_MO.php │ ├── zh_Hans_SG.php │ ├── zh_Hant.php │ ├── zh_Hant_HK.php │ ├── zh_Hant_MO.php │ ├── zh_MO.php │ ├── zh_SG.php │ ├── zh_TW.php │ ├── zh_YUE.php │ ├── zu.php │ └── zu_ZA.php │ ├── Language.php │ ├── Laravel │ └── ServiceProvider.php │ ├── List │ ├── languages.php │ └── regions.php │ ├── Traits │ ├── Boundaries.php │ ├── Comparison.php │ ├── Converter.php │ ├── Creator.php │ ├── Date.php │ ├── Difference.php │ ├── Localization.php │ ├── Macro.php │ ├── Modifiers.php │ ├── Mutability.php │ ├── Options.php │ ├── Rounding.php │ ├── Serialization.php │ ├── Test.php │ ├── Timestamp.php │ ├── Units.php │ └── Week.php │ └── Translator.php ├── ocsystem └── swooledistributed │ ├── .gitignore │ ├── CHANGERLOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Install.php │ ├── Server │ ├── Aspects │ │ └── RunAspect.php │ ├── Asyn │ │ ├── AMQP │ │ │ ├── AMQP.php │ │ │ ├── AMQPNonBlockChannel.php │ │ │ └── SwooleIO.php │ │ ├── AsynPool.php │ │ ├── HttpClient │ │ │ ├── HttpClient.php │ │ │ ├── HttpClientPool.php │ │ │ └── HttpClientRequestCoroutine.php │ │ ├── IAsynPool.php │ │ ├── MQTT │ │ │ ├── CMDStore.php │ │ │ ├── Debug.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── BadUTF8.php │ │ │ │ ├── ConnectError.php │ │ │ │ ├── NetworkError.php │ │ │ │ ├── Protocol.php │ │ │ │ └── UTF8Null.php │ │ │ ├── IMqtt.php │ │ │ ├── MQTT.php │ │ │ ├── Message.php │ │ │ ├── Message │ │ │ │ ├── Base.php │ │ │ │ ├── CONNACK.php │ │ │ │ ├── CONNECT.php │ │ │ │ ├── DISCONNECT.php │ │ │ │ ├── Header │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── CONNACK.php │ │ │ │ │ ├── CONNECT.php │ │ │ │ │ ├── DISCONNECT.php │ │ │ │ │ ├── PINGREQ.php │ │ │ │ │ ├── PINGRESP.php │ │ │ │ │ ├── PUBACK.php │ │ │ │ │ ├── PUBCOMP.php │ │ │ │ │ ├── PUBLISH.php │ │ │ │ │ ├── PUBREC.php │ │ │ │ │ ├── PUBREL.php │ │ │ │ │ ├── SUBACK.php │ │ │ │ │ ├── SUBSCRIBE.php │ │ │ │ │ ├── UNSUBACK.php │ │ │ │ │ └── UNSUBSCRIBE.php │ │ │ │ ├── PINGREQ.php │ │ │ │ ├── PINGRESP.php │ │ │ │ ├── PUBACK.php │ │ │ │ ├── PUBCOMP.php │ │ │ │ ├── PUBLISH.php │ │ │ │ ├── PUBREC.php │ │ │ │ ├── PUBREL.php │ │ │ │ ├── SUBACK.php │ │ │ │ ├── SUBSCRIBE.php │ │ │ │ ├── UNSUBACK.php │ │ │ │ ├── UNSUBSCRIBE.php │ │ │ │ └── Will.php │ │ │ ├── MessageHandler.php │ │ │ ├── PacketIdentifier.php │ │ │ ├── SwooleClient.php │ │ │ └── Utility.php │ │ ├── Mysql │ │ │ ├── Miner.php │ │ │ ├── MySqlCoroutine.php │ │ │ ├── MysqlAsynPool.php │ │ │ └── MysqlSyncHelp.php │ │ ├── README.md │ │ ├── Redis │ │ │ ├── CoroutineRedisHelp.php │ │ │ ├── RedisAsynPool.php │ │ │ ├── RedisCoroutine.php │ │ │ ├── RedisLuaManager.php │ │ │ └── RedisRoute.php │ │ └── TcpClient │ │ │ ├── SdTcpRpcPool.php │ │ │ ├── TcpClientPool.php │ │ │ └── TcpClientRequestCoroutine.php │ ├── Components │ │ ├── AMQPTaskSystem │ │ │ ├── AMQPTask.php │ │ │ └── AMQPTaskProcess.php │ │ ├── AOP │ │ │ ├── AOP.php │ │ │ ├── AOPManager.php │ │ │ ├── Aspect.php │ │ │ ├── IAOP.php │ │ │ └── Proxy.php │ │ ├── Backstage │ │ │ ├── BackstageHelp.php │ │ │ ├── BackstageProcess.php │ │ │ ├── ChannelMonitorClient.php │ │ │ ├── Console.php │ │ │ └── ConsoleModel.php │ │ ├── Blade │ │ │ └── Blade.php │ │ ├── CatCache │ │ │ ├── CatCacheHash.php │ │ │ ├── CatCacheProcess.php │ │ │ ├── CatCacheRpc.php │ │ │ ├── CatCacheRpcProxy.php │ │ │ └── TimerCallBack.php │ │ ├── Cluster │ │ │ ├── ClusterClient.php │ │ │ ├── ClusterController.php │ │ │ ├── ClusterCoroutine.php │ │ │ ├── ClusterHelp.php │ │ │ └── ClusterProcess.php │ │ ├── Consul │ │ │ ├── ConsulHelp.php │ │ │ ├── ConsulLeader.php │ │ │ ├── ConsulProcess.php │ │ │ ├── ConsulRest.php │ │ │ ├── ConsulRpc.php │ │ │ └── ConsulServices.php │ │ ├── Event │ │ │ ├── Event.php │ │ │ ├── EventCoroutine.php │ │ │ └── EventDispatcher.php │ │ ├── GrayLog │ │ │ ├── GrayLogHelp.php │ │ │ └── UdpTransport.php │ │ ├── Middleware │ │ │ ├── HttpMiddleware.php │ │ │ ├── IMiddleware.php │ │ │ ├── Middleware.php │ │ │ ├── MiddlewareManager.php │ │ │ └── TcpMiddleware.php │ │ ├── Process │ │ │ ├── Process.php │ │ │ ├── ProcessManager.php │ │ │ ├── ProcessRPC.php │ │ │ └── RPCCall.php │ │ ├── Reload │ │ │ └── InotifyReload.php │ │ ├── SDDebug │ │ │ └── SDDebug.php │ │ ├── SDHelp │ │ │ └── SDHelpProcess.php │ │ ├── TimerTask │ │ │ ├── Timer.php │ │ │ └── TimerTask.php │ │ ├── Whoops │ │ │ ├── Handler │ │ │ │ └── SDPageHandler.php │ │ │ └── Resources │ │ │ │ ├── css │ │ │ │ └── whoops.base.css │ │ │ │ ├── js │ │ │ │ ├── clipboard.min.js │ │ │ │ ├── prettify.min.js │ │ │ │ ├── whoops.base.js │ │ │ │ └── zepto.min.js │ │ │ │ └── views │ │ │ │ ├── env_details.html.php │ │ │ │ ├── frame_code.html.php │ │ │ │ ├── frame_list.html.php │ │ │ │ ├── frames_container.html.php │ │ │ │ ├── frames_description.html.php │ │ │ │ ├── header.html.php │ │ │ │ ├── header_outer.html.php │ │ │ │ ├── layout.html.php │ │ │ │ ├── panel_details.html.php │ │ │ │ ├── panel_details_outer.html.php │ │ │ │ ├── panel_left.html.php │ │ │ │ └── panel_left_outer.html.php │ │ └── log │ │ │ └── SDJsonFormatter.php │ ├── Console │ │ ├── ChannelCmd.php │ │ ├── ClearCmd.php │ │ ├── CoverageCmd.php │ │ ├── KillCmd.php │ │ ├── ModelCmd.php │ │ ├── OptimizationCmd.php │ │ ├── ProtoCmd.php │ │ ├── ReloadCmd.php │ │ ├── RestartCmd.php │ │ ├── StartCmd.php │ │ ├── StatusCmd.php │ │ ├── StopCmd.php │ │ ├── TestCmd.php │ │ └── XDebugCmd.php │ ├── Controllers │ │ ├── AppController.php │ │ ├── Error.php │ │ ├── MqttController.php │ │ ├── README.md │ │ ├── Status.php │ │ ├── Test.php │ │ └── TestActor.php │ ├── CoreBase │ │ ├── Actor.php │ │ ├── ActorContext.php │ │ ├── ActorRpc.php │ │ ├── Child.php │ │ ├── ChildProxy.php │ │ ├── Controller.php │ │ ├── ControllerFactory.php │ │ ├── CoreBase.php │ │ ├── HttpInput.php │ │ ├── HttpOutput.php │ │ ├── ILoader.php │ │ ├── JWT.php │ │ ├── Loader.php │ │ ├── Model.php │ │ ├── ModelFactory.php │ │ ├── PortManager.php │ │ ├── RPCThrowable.php │ │ ├── SwooleException.php │ │ ├── SwooleInterruptException.php │ │ ├── SwooleRedirectException.php │ │ ├── Task.php │ │ ├── TaskCoroutine.php │ │ ├── TaskProxy.php │ │ └── XssClean.php │ ├── Coroutine │ │ ├── CoroutineBase.php │ │ ├── CoroutineChangeToken.php │ │ ├── CoroutineNull.php │ │ ├── Fuse.php │ │ ├── ICoroutineBase.php │ │ └── README.md │ ├── Memory │ │ ├── Cache.php │ │ ├── Lock.php │ │ └── Pool.php │ ├── Middlewares │ │ ├── MonitorMiddleware.php │ │ └── NormalHttpMiddleware.php │ ├── Models │ │ ├── Error.php │ │ └── README.md │ ├── Pack │ │ ├── ClusterPack.php │ │ ├── ConsolePack.php │ │ ├── EofJsonPack.php │ │ ├── IPack.php │ │ ├── LenJsonPack.php │ │ ├── MqttPack.php │ │ ├── NonJsonPack.php │ │ └── README.md │ ├── Route │ │ ├── ConsoleRoute.php │ │ ├── IRoute.php │ │ ├── NormalRoute.php │ │ └── README.md │ ├── Start.php │ ├── SwooleDistributedServer.php │ ├── SwooleHttpServer.php │ ├── SwooleMarco.php │ ├── SwooleServer.php │ ├── SwooleWebSocketServer.php │ ├── Tasks │ │ ├── README.md │ │ └── UnitTestTask.php │ ├── Test │ │ ├── DocParser.php │ │ ├── SwooleTestException.php │ │ ├── TestCase.php │ │ ├── TestHttpCoroutine.php │ │ ├── TestModule.php │ │ ├── TestRequest.php │ │ └── TestResponse.php │ ├── Unity │ │ ├── CsvReader.php │ │ └── Random.php │ ├── Views │ │ ├── 404.blade.php │ │ ├── 419.blade.php │ │ ├── 429.blade.php │ │ ├── 500.blade.php │ │ ├── 503.blade.php │ │ ├── README.md │ │ ├── layout.blade.php │ │ └── welcome.blade.php │ └── helpers │ │ ├── Common.php │ │ └── README.md │ ├── app │ ├── AMQPTasks │ │ └── .gitkeep │ ├── Actors │ │ └── .gitkeep │ ├── AppServer.php │ ├── Aspects │ │ └── .gitkeep │ ├── Console │ │ └── .gitkeep │ ├── Controllers │ │ ├── .gitkeep │ │ ├── ActionController.php │ │ ├── AppController.php │ │ ├── AuditOrderController.php │ │ ├── BlockController.php │ │ ├── NodeController.php │ │ ├── OnlyvoteController.php │ │ ├── TestController.php │ │ ├── TimeController.php │ │ ├── TradingController.php │ │ └── VoteController.php │ ├── Models │ │ ├── .gitkeep │ │ ├── Action │ │ │ ├── ActionEncodeModel.php │ │ │ ├── ActionModel.php │ │ │ └── KeyStoreModel.php │ │ ├── Block │ │ │ ├── BlockBaseModel.php │ │ │ ├── BlockHeadModel.php │ │ │ └── MerkleTreeModel.php │ │ ├── Consensus │ │ │ └── ConsensusModel.php │ │ ├── Contract │ │ │ └── ContractModel.php │ │ ├── Incentives │ │ │ └── IncentivesModel.php │ │ ├── Index │ │ │ └── IndexModel.php │ │ ├── Node │ │ │ ├── NodeModel.php │ │ │ └── VoteModel.php │ │ ├── Peer │ │ │ └── PeerModel.php │ │ ├── Purse │ │ │ └── PurseModel.php │ │ ├── TimeClock │ │ │ └── TimeModel.php │ │ ├── Trading │ │ │ ├── CreateTradingModel.php │ │ │ ├── TradingEncodeModel.php │ │ │ ├── TradingModel.php │ │ │ ├── TradingUTXOModel.php │ │ │ └── ValidationModel.php │ │ └── Vote │ │ │ ├── VoteModel.php │ │ │ └── VoteNoteModel.php │ ├── Pack │ │ ├── .gitkeep │ │ ├── LenJsonPack.php │ │ └── WeecotPack.php │ ├── Process │ │ ├── .gitkeep │ │ ├── BlockProcess.php │ │ ├── ConsensusProcess.php │ │ ├── ConsensusProcess2.php │ │ ├── CoreNetworkProcess.php │ │ ├── IncentivesProcess.php │ │ ├── NodeEncodeProcess.php │ │ ├── NodeProcess.php │ │ ├── PeerProcess.php │ │ ├── PurseProcess.php │ │ ├── SuperNodeProcess.php │ │ ├── TimeClockProcess.php │ │ ├── TradingPoolProcess.php │ │ ├── TradingProcess.php │ │ └── VoteProcess.php │ ├── Route │ │ ├── .gitkeep │ │ ├── NormalRoute.php │ │ ├── SuperRoute.php │ │ ├── WeecotCompanyRoute.php │ │ ├── WeecotRoute.php │ │ └── WeecotSysRoute.php │ ├── Tasks │ │ ├── .gitkeep │ │ ├── LinkPoolTask.php │ │ ├── MongoOperationTask.php │ │ └── TimeClockTask.php │ └── Views │ │ └── .gitkeep │ ├── config │ ├── VERSION.php │ ├── amqp.php │ ├── aop.php │ ├── api_note.php │ ├── backstage.php │ ├── business.php │ ├── catCache.php │ ├── client.php │ ├── coinbase.php │ ├── consul.php │ ├── docker │ │ └── README.md │ ├── error.php │ ├── fileHeader.php │ ├── headutxo.php │ ├── incentives.php │ ├── log.php │ ├── mysql.php │ ├── ports.php │ ├── redis.php │ ├── seedNodes.php │ ├── server.php │ ├── site.php │ └── timerTask.php │ ├── lua │ └── sadd_from_count.lua │ ├── test │ ├── README.md │ ├── ServerActorTest.php │ ├── ServerEventTest.php │ ├── ServerMysqlTest.php │ ├── ServerRedisTest.php │ └── ServerUnitTest.php │ └── www │ └── .gitkeep ├── paragonie └── constant_time_encoding │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── psalm.xml │ ├── src │ ├── Base32.php │ ├── Base32Hex.php │ ├── Base64.php │ ├── Base64DotSlash.php │ ├── Base64DotSlashOrdered.php │ ├── Base64UrlSafe.php │ ├── Binary.php │ ├── EncoderInterface.php │ ├── Encoding.php │ ├── Hex.php │ └── RFC4648.php │ └── tests │ ├── Base32HexTest.php │ ├── Base32Test.php │ ├── Base64DotSlashOrderedTest.php │ ├── Base64DotSlashTest.php │ ├── Base64Test.php │ ├── Base64UrlSafeTest.php │ ├── EncodingTest.php │ ├── HexTest.php │ └── RFC4648Test.php ├── php-amqplib └── php-amqplib │ ├── .gitmodules │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── CREDITS │ ├── LICENSE │ ├── PhpAmqpLib │ ├── Channel │ │ ├── AMQPChannel.php │ │ └── AbstractChannel.php │ ├── Connection │ │ ├── AMQPConnection.php │ │ ├── AMQPLazyConnection.php │ │ ├── AMQPLazySocketConnection.php │ │ ├── AMQPSSLConnection.php │ │ ├── AMQPSocketConnection.php │ │ ├── AMQPStreamConnection.php │ │ └── AbstractConnection.php │ ├── Exception │ │ ├── AMQPBasicCancelException.php │ │ ├── AMQPChannelClosedException.php │ │ ├── AMQPChannelException.php │ │ ├── AMQPConnectionClosedException.php │ │ ├── AMQPConnectionException.php │ │ ├── AMQPDataReadException.php │ │ ├── AMQPException.php │ │ ├── AMQPExceptionInterface.php │ │ ├── AMQPHeartbeatMissedException.php │ │ ├── AMQPIOException.php │ │ ├── AMQPIOWaitException.php │ │ ├── AMQPInvalidArgumentException.php │ │ ├── AMQPInvalidFrameException.php │ │ ├── AMQPLogicException.php │ │ ├── AMQPNotImplementedException.php │ │ ├── AMQPOutOfBoundsException.php │ │ ├── AMQPOutOfRangeException.php │ │ ├── AMQPProtocolChannelException.php │ │ ├── AMQPProtocolConnectionException.php │ │ ├── AMQPProtocolException.php │ │ ├── AMQPRuntimeException.php │ │ ├── AMQPSocketException.php │ │ └── AMQPTimeoutException.php │ ├── Helper │ │ ├── DebugHelper.php │ │ ├── MiscHelper.php │ │ └── Protocol │ │ │ ├── MethodMap080.php │ │ │ ├── MethodMap091.php │ │ │ ├── Protocol080.php │ │ │ ├── Protocol091.php │ │ │ ├── Wait080.php │ │ │ └── Wait091.php │ ├── Message │ │ └── AMQPMessage.php │ └── Wire │ │ ├── AMQPAbstractCollection.php │ │ ├── AMQPArray.php │ │ ├── AMQPDecimal.php │ │ ├── AMQPReader.php │ │ ├── AMQPTable.php │ │ ├── AMQPWriter.php │ │ ├── AbstractClient.php │ │ ├── Constants080.php │ │ ├── Constants091.php │ │ ├── GenericContent.php │ │ └── IO │ │ ├── AbstractIO.php │ │ ├── SocketIO.php │ │ └── StreamIO.php │ ├── README.md │ ├── composer.json │ └── spec │ ├── amqp-rabbitmq-0.8.json │ ├── amqp-rabbitmq-0.9.1.json │ └── parser.php ├── php-ds └── php-ds │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Collection.php │ ├── Deque.php │ ├── Hashable.php │ ├── Map.php │ ├── Pair.php │ ├── PriorityQueue.php │ ├── Queue.php │ ├── Sequence.php │ ├── Set.php │ ├── Stack.php │ ├── Traits │ ├── Capacity.php │ ├── GenericCollection.php │ ├── GenericSequence.php │ └── SquaredCapacity.php │ └── Vector.php ├── psr ├── container │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ ├── LoggerInterfaceTest.php │ │ │ └── TestLogger.php │ ├── README.md │ └── composer.json └── simple-cache │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── CacheException.php │ ├── CacheInterface.php │ └── InvalidArgumentException.php └── symfony ├── console ├── .gitignore ├── Application.php ├── CHANGELOG.md ├── Command │ ├── Command.php │ ├── HelpCommand.php │ ├── ListCommand.php │ └── LockableTrait.php ├── CommandLoader │ ├── CommandLoaderInterface.php │ ├── ContainerCommandLoader.php │ └── FactoryCommandLoader.php ├── ConsoleEvents.php ├── DependencyInjection │ └── AddConsoleCommandPass.php ├── Descriptor │ ├── ApplicationDescription.php │ ├── Descriptor.php │ ├── DescriptorInterface.php │ ├── JsonDescriptor.php │ ├── MarkdownDescriptor.php │ ├── TextDescriptor.php │ └── XmlDescriptor.php ├── Event │ ├── ConsoleCommandEvent.php │ ├── ConsoleErrorEvent.php │ ├── ConsoleEvent.php │ └── ConsoleTerminateEvent.php ├── EventListener │ └── ErrorListener.php ├── Exception │ ├── CommandNotFoundException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── InvalidOptionException.php │ ├── LogicException.php │ ├── NamespaceNotFoundException.php │ └── RuntimeException.php ├── Formatter │ ├── OutputFormatter.php │ ├── OutputFormatterInterface.php │ ├── OutputFormatterStyle.php │ ├── OutputFormatterStyleInterface.php │ ├── OutputFormatterStyleStack.php │ └── WrappableOutputFormatterInterface.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 │ ├── TableRows.php │ ├── TableSeparator.php │ └── TableStyle.php ├── Input │ ├── ArgvInput.php │ ├── ArrayInput.php │ ├── Input.php │ ├── InputArgument.php │ ├── InputAwareInterface.php │ ├── InputDefinition.php │ ├── InputInterface.php │ ├── InputOption.php │ ├── StreamableInputInterface.php │ └── StringInput.php ├── LICENSE ├── Logger │ └── ConsoleLogger.php ├── Output │ ├── BufferedOutput.php │ ├── ConsoleOutput.php │ ├── ConsoleOutputInterface.php │ ├── ConsoleSectionOutput.php │ ├── NullOutput.php │ ├── Output.php │ ├── OutputInterface.php │ └── StreamOutput.php ├── Question │ ├── ChoiceQuestion.php │ ├── ConfirmationQuestion.php │ └── Question.php ├── README.md ├── Resources │ └── bin │ │ └── hiddeninput.exe ├── Style │ ├── OutputStyle.php │ ├── StyleInterface.php │ └── SymfonyStyle.php ├── Terminal.php ├── Tester │ ├── ApplicationTester.php │ ├── CommandTester.php │ └── TesterTrait.php ├── Tests │ ├── ApplicationTest.php │ ├── Command │ │ ├── CommandTest.php │ │ ├── HelpCommandTest.php │ │ ├── ListCommandTest.php │ │ └── LockableTraitTest.php │ ├── CommandLoader │ │ ├── ContainerCommandLoaderTest.php │ │ └── FactoryCommandLoaderTest.php │ ├── DependencyInjection │ │ └── AddConsoleCommandPassTest.php │ ├── Descriptor │ │ ├── AbstractDescriptorTest.php │ │ ├── JsonDescriptorTest.php │ │ ├── MarkdownDescriptorTest.php │ │ ├── ObjectsProvider.php │ │ ├── TextDescriptorTest.php │ │ └── XmlDescriptorTest.php │ ├── EventListener │ │ └── ErrorListenerTest.php │ ├── Fixtures │ │ ├── BarBucCommand.php │ │ ├── DescriptorApplication1.php │ │ ├── DescriptorApplication2.php │ │ ├── DescriptorApplicationMbString.php │ │ ├── DescriptorCommand1.php │ │ ├── DescriptorCommand2.php │ │ ├── DescriptorCommand3.php │ │ ├── DescriptorCommand4.php │ │ ├── DescriptorCommandMbString.php │ │ ├── DummyOutput.php │ │ ├── Foo1Command.php │ │ ├── Foo2Command.php │ │ ├── Foo3Command.php │ │ ├── Foo4Command.php │ │ ├── Foo5Command.php │ │ ├── Foo6Command.php │ │ ├── FooCommand.php │ │ ├── FooLock2Command.php │ │ ├── FooLockCommand.php │ │ ├── FooOptCommand.php │ │ ├── FooSameCaseLowercaseCommand.php │ │ ├── FooSameCaseUppercaseCommand.php │ │ ├── FooSubnamespaced1Command.php │ │ ├── FooSubnamespaced2Command.php │ │ ├── FooWithoutAliasCommand.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_17.php │ │ │ │ ├── command_2.php │ │ │ │ ├── command_3.php │ │ │ │ ├── command_4.php │ │ │ │ ├── command_4_with_iterators.php │ │ │ │ ├── command_5.php │ │ │ │ ├── command_6.php │ │ │ │ ├── command_7.php │ │ │ │ ├── command_8.php │ │ │ │ ├── command_9.php │ │ │ │ └── interactive_command_1.php │ │ │ │ └── output │ │ │ │ ├── interactive_output_1.txt │ │ │ │ ├── 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_17.txt │ │ │ │ ├── output_2.txt │ │ │ │ ├── output_3.txt │ │ │ │ ├── output_4.txt │ │ │ │ ├── output_4_with_iterators.txt │ │ │ │ ├── output_5.txt │ │ │ │ ├── output_6.txt │ │ │ │ ├── output_7.txt │ │ │ │ ├── output_8.txt │ │ │ │ └── output_9.txt │ │ ├── TestCommand.php │ │ ├── TestTiti.php │ │ ├── TestToto.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_filtered_namespace.txt │ │ ├── application_gethelp.txt │ │ ├── application_mbstring.md │ │ ├── application_mbstring.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_renderexception_escapeslines.txt │ │ ├── application_renderexception_linebreaks.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_mbstring.md │ │ ├── command_mbstring.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_argument_with_default_inf_value.json │ │ ├── input_argument_with_default_inf_value.md │ │ ├── input_argument_with_default_inf_value.txt │ │ ├── input_argument_with_default_inf_value.xml │ │ ├── input_argument_with_style.json │ │ ├── input_argument_with_style.md │ │ ├── input_argument_with_style.txt │ │ ├── input_argument_with_style.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 │ │ ├── input_option_with_default_inf_value.json │ │ ├── input_option_with_default_inf_value.md │ │ ├── input_option_with_default_inf_value.txt │ │ ├── input_option_with_default_inf_value.xml │ │ ├── input_option_with_style.json │ │ ├── input_option_with_style.md │ │ ├── input_option_with_style.txt │ │ ├── input_option_with_style.xml │ │ ├── input_option_with_style_array.json │ │ ├── input_option_with_style_array.md │ │ ├── input_option_with_style_array.txt │ │ └── input_option_with_style_array.xml │ ├── Formatter │ │ ├── OutputFormatterStyleStackTest.php │ │ ├── OutputFormatterStyleTest.php │ │ └── OutputFormatterTest.php │ ├── Helper │ │ ├── AbstractQuestionHelperTest.php │ │ ├── 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 │ │ ├── ConsoleSectionOutputTest.php │ │ ├── NullOutputTest.php │ │ ├── OutputTest.php │ │ └── StreamOutputTest.php │ ├── Question │ │ └── ConfirmationQuestionTest.php │ ├── Style │ │ └── SymfonyStyleTest.php │ ├── TerminalTest.php │ └── Tester │ │ ├── ApplicationTesterTest.php │ │ └── CommandTesterTest.php ├── composer.json └── phpunit.xml.dist ├── contracts ├── .gitignore ├── CHANGELOG.md ├── Cache │ ├── CacheInterface.php │ ├── CacheTrait.php │ ├── CallbackInterface.php │ ├── ItemInterface.php │ └── TagAwareCacheInterface.php ├── EventDispatcher │ ├── Event.php │ └── EventDispatcherInterface.php ├── HttpClient │ ├── ChunkInterface.php │ ├── Exception │ │ ├── ClientExceptionInterface.php │ │ ├── ExceptionInterface.php │ │ ├── HttpExceptionInterface.php │ │ ├── RedirectionExceptionInterface.php │ │ ├── ServerExceptionInterface.php │ │ └── TransportExceptionInterface.php │ ├── HttpClientInterface.php │ ├── ResponseInterface.php │ ├── ResponseStreamInterface.php │ └── Test │ │ ├── Fixtures │ │ └── web │ │ │ └── index.php │ │ ├── HttpClientTestCase.php │ │ └── TestHttpServer.php ├── LICENSE ├── README.md ├── Service │ ├── ResetInterface.php │ ├── ServiceLocatorTrait.php │ ├── ServiceProviderInterface.php │ ├── ServiceSubscriberInterface.php │ └── ServiceSubscriberTrait.php ├── Tests │ ├── Cache │ │ └── CacheTraitTest.php │ ├── Service │ │ ├── ServiceLocatorTest.php │ │ └── ServiceSubscriberTraitTest.php │ └── Translation │ │ └── TranslatorTest.php ├── Translation │ ├── LocaleAwareInterface.php │ ├── TranslatorInterface.php │ └── TranslatorTrait.php ├── composer.json └── phpunit.xml.dist ├── debug ├── .gitignore ├── BufferingLogger.php ├── CHANGELOG.md ├── Debug.php ├── DebugClassLoader.php ├── ErrorHandler.php ├── Exception │ ├── ClassNotFoundException.php │ ├── FatalErrorException.php │ ├── FatalThrowableError.php │ ├── FlattenException.php │ ├── OutOfMemoryException.php │ ├── SilencedErrorContext.php │ ├── UndefinedFunctionException.php │ └── UndefinedMethodException.php ├── ExceptionHandler.php ├── FatalErrorHandler │ ├── ClassNotFoundFatalErrorHandler.php │ ├── FatalErrorHandlerInterface.php │ ├── UndefinedFunctionFatalErrorHandler.php │ └── UndefinedMethodFatalErrorHandler.php ├── LICENSE ├── README.md ├── Tests │ ├── DebugClassLoaderTest.php │ ├── ErrorHandlerTest.php │ ├── Exception │ │ └── FlattenExceptionTest.php │ ├── ExceptionHandlerTest.php │ ├── FatalErrorHandler │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ ├── Fixtures │ │ ├── AnnotatedClass.php │ │ ├── ClassAlias.php │ │ ├── ClassWithAnnotatedParameters.php │ │ ├── DefinitionInEvaluatedCode.php │ │ ├── DeprecatedClass.php │ │ ├── DeprecatedInterface.php │ │ ├── ErrorHandlerThatUsesThePreviousOne.php │ │ ├── ExtendedFinalMethod.php │ │ ├── FinalClasses.php │ │ ├── FinalMethod.php │ │ ├── FinalMethod2Trait.php │ │ ├── InterfaceWithAnnotatedParameters.php │ │ ├── InternalClass.php │ │ ├── InternalInterface.php │ │ ├── InternalTrait.php │ │ ├── InternalTrait2.php │ │ ├── LoggerThatSetAnErrorHandler.php │ │ ├── NonDeprecatedInterface.php │ │ ├── PEARClass.php │ │ ├── SubClassWithAnnotatedParameters.php │ │ ├── Throwing.php │ │ ├── ToStringThrower.php │ │ ├── TraitWithAnnotatedParameters.php │ │ ├── TraitWithInternalMethod.php │ │ ├── casemismatch.php │ │ ├── notPsr0Bis.php │ │ ├── psr4 │ │ │ └── Psr4CaseMismatch.php │ │ └── reallyNotPsr0.php │ ├── Fixtures2 │ │ └── RequiredTwice.php │ ├── HeaderMock.php │ ├── MockExceptionHandler.php │ └── phpt │ │ ├── debug_class_loader.phpt │ │ ├── decorate_exception_hander.phpt │ │ ├── exception_rethrown.phpt │ │ └── fatal_with_nested_handlers.phpt ├── composer.json └── phpunit.xml.dist ├── finder ├── .gitignore ├── CHANGELOG.md ├── Comparator │ ├── Comparator.php │ ├── DateComparator.php │ └── NumberComparator.php ├── Exception │ └── AccessDeniedException.php ├── Finder.php ├── Glob.php ├── Iterator │ ├── CustomFilterIterator.php │ ├── DateRangeFilterIterator.php │ ├── DepthRangeFilterIterator.php │ ├── ExcludeDirectoryFilterIterator.php │ ├── FileTypeFilterIterator.php │ ├── FilecontentFilterIterator.php │ ├── FilenameFilterIterator.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 │ │ ├── .dot │ │ │ ├── a │ │ │ └── b │ │ │ │ ├── c.neon │ │ │ │ └── d.neon │ │ ├── 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 │ │ │ ├── .dot │ │ │ ├── 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 │ │ ├── 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 ├── polyfill-iconv ├── Iconv.php ├── LICENSE ├── README.md ├── Resources │ └── charset │ │ ├── from.big5.php │ │ ├── from.cp037.php │ │ ├── from.cp1006.php │ │ ├── from.cp1026.php │ │ ├── from.cp424.php │ │ ├── from.cp437.php │ │ ├── from.cp500.php │ │ ├── from.cp737.php │ │ ├── from.cp775.php │ │ ├── from.cp850.php │ │ ├── from.cp852.php │ │ ├── from.cp855.php │ │ ├── from.cp856.php │ │ ├── from.cp857.php │ │ ├── from.cp860.php │ │ ├── from.cp861.php │ │ ├── from.cp862.php │ │ ├── from.cp863.php │ │ ├── from.cp864.php │ │ ├── from.cp865.php │ │ ├── from.cp866.php │ │ ├── from.cp869.php │ │ ├── from.cp874.php │ │ ├── from.cp875.php │ │ ├── from.cp932.php │ │ ├── from.cp936.php │ │ ├── from.cp949.php │ │ ├── from.cp950.php │ │ ├── from.iso-8859-1.php │ │ ├── from.iso-8859-10.php │ │ ├── from.iso-8859-11.php │ │ ├── from.iso-8859-13.php │ │ ├── from.iso-8859-14.php │ │ ├── from.iso-8859-15.php │ │ ├── from.iso-8859-16.php │ │ ├── from.iso-8859-2.php │ │ ├── from.iso-8859-3.php │ │ ├── from.iso-8859-4.php │ │ ├── from.iso-8859-5.php │ │ ├── from.iso-8859-6.php │ │ ├── from.iso-8859-7.php │ │ ├── from.iso-8859-8.php │ │ ├── from.iso-8859-9.php │ │ ├── from.koi8-r.php │ │ ├── from.koi8-u.php │ │ ├── from.us-ascii.php │ │ ├── from.windows-1250.php │ │ ├── from.windows-1251.php │ │ ├── from.windows-1252.php │ │ ├── from.windows-1253.php │ │ ├── from.windows-1254.php │ │ ├── from.windows-1255.php │ │ ├── from.windows-1256.php │ │ ├── from.windows-1257.php │ │ ├── from.windows-1258.php │ │ └── translit.php ├── bootstrap.php └── composer.json ├── polyfill-intl-grapheme ├── Grapheme.php ├── LICENSE ├── README.md ├── bootstrap.php └── composer.json ├── polyfill-intl-normalizer ├── LICENSE ├── Normalizer.php ├── README.md ├── Resources │ ├── stubs │ │ └── Normalizer.php │ └── unidata │ │ ├── canonicalComposition.php │ │ ├── canonicalDecomposition.php │ │ ├── combiningClass.php │ │ └── compatibilityDecomposition.php ├── bootstrap.php └── composer.json ├── polyfill-mbstring ├── LICENSE ├── Mbstring.php ├── README.md ├── Resources │ └── unidata │ │ ├── lowerCase.php │ │ ├── titleCaseRegexp.php │ │ └── upperCase.php ├── bootstrap.php └── composer.json ├── polyfill-php72 ├── LICENSE ├── Php72.php ├── README.md ├── bootstrap.php └── composer.json └── translation ├── .gitignore ├── CHANGELOG.md ├── Catalogue ├── AbstractOperation.php ├── MergeOperation.php ├── OperationInterface.php └── TargetOperation.php ├── Command └── XliffLintCommand.php ├── DataCollector └── TranslationDataCollector.php ├── DataCollectorTranslator.php ├── DependencyInjection ├── TranslationDumperPass.php ├── TranslationExtractorPass.php └── TranslatorPass.php ├── Dumper ├── CsvFileDumper.php ├── DumperInterface.php ├── FileDumper.php ├── IcuResFileDumper.php ├── IniFileDumper.php ├── JsonFileDumper.php ├── MoFileDumper.php ├── PhpFileDumper.php ├── PoFileDumper.php ├── QtFileDumper.php ├── XliffFileDumper.php └── YamlFileDumper.php ├── Exception ├── ExceptionInterface.php ├── InvalidArgumentException.php ├── InvalidResourceException.php ├── LogicException.php ├── NotFoundResourceException.php └── RuntimeException.php ├── Extractor ├── AbstractFileExtractor.php ├── ChainExtractor.php ├── ExtractorInterface.php ├── PhpExtractor.php └── PhpStringTokenParser.php ├── Formatter ├── ChoiceMessageFormatterInterface.php ├── IntlFormatter.php ├── IntlFormatterInterface.php ├── MessageFormatter.php └── MessageFormatterInterface.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 ├── LoggingTranslator.php ├── MessageCatalogue.php ├── MessageCatalogueInterface.php ├── MessageSelector.php ├── MetadataAwareInterface.php ├── PluralizationRules.php ├── README.md ├── Reader ├── TranslationReader.php └── TranslationReaderInterface.php ├── Resources ├── bin │ └── translation-status.php ├── data │ └── parents.json └── schemas │ ├── xliff-core-1.2-strict.xsd │ ├── xliff-core-2.0.xsd │ └── xml.xsd ├── Tests ├── Catalogue │ ├── AbstractOperationTest.php │ ├── MergeOperationTest.php │ └── TargetOperationTest.php ├── Command │ └── XliffLintCommandTest.php ├── DataCollector │ └── TranslationDataCollectorTest.php ├── DataCollectorTranslatorTest.php ├── DependencyInjection │ ├── TranslationDumperPassTest.php │ ├── TranslationExtractorPassTest.php │ └── TranslationPassTest.php ├── Dumper │ ├── CsvFileDumperTest.php │ ├── FileDumperTest.php │ ├── IcuResFileDumperTest.php │ ├── IniFileDumperTest.php │ ├── JsonFileDumperTest.php │ ├── MoFileDumperTest.php │ ├── PhpFileDumperTest.php │ ├── PoFileDumperTest.php │ ├── QtFileDumperTest.php │ ├── XliffFileDumperTest.php │ └── YamlFileDumperTest.php ├── Extractor │ └── PhpExtractorTest.php ├── Formatter │ ├── IntlFormatterTest.php │ └── MessageFormatterTest.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 │ ├── extractor │ ├── resource.format.engine │ ├── this.is.a.template.format.engine │ └── translation.html.php │ ├── 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+intl-icu.xlf │ ├── resources-2.0-clean.xlf │ ├── resources-2.0-multi-segment-unit.xlf │ ├── resources-2.0.xlf │ ├── resources-clean.xlf │ ├── resources-notes-meta.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 └── XliffUtils.php ├── Writer ├── TranslationWriter.php └── TranslationWriterInterface.php ├── composer.json └── phpunit.xml.dist /.gitattributes: -------------------------------------------------------------------------------- 1 | *.php linguist-language=PHP 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/README_CN.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/autoload.php -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor 3 | build 4 | .idea 5 | 6 | -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/bitcoinecdsa/BitcoinECDSA/.travis.yml -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/bitcoinecdsa/BitcoinECDSA/README.md -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/bitcoinecdsa/BitcoinECDSA/composer.json -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/bitcoinecdsa/BitcoinECDSA/composer.lock -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/phpconfig.ini: -------------------------------------------------------------------------------- 1 | extension="php_gmp.so" -------------------------------------------------------------------------------- /bitcoinecdsa/BitcoinECDSA/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/bitcoinecdsa/BitcoinECDSA/phpunit.xml -------------------------------------------------------------------------------- /composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/ClassLoader.php -------------------------------------------------------------------------------- /composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/LICENSE -------------------------------------------------------------------------------- /composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/autoload_classmap.php -------------------------------------------------------------------------------- /composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/autoload_files.php -------------------------------------------------------------------------------- /composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/autoload_psr4.php -------------------------------------------------------------------------------- /composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/autoload_real.php -------------------------------------------------------------------------------- /composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/autoload_static.php -------------------------------------------------------------------------------- /composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/composer/installed.json -------------------------------------------------------------------------------- /doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/doctrine/inflector/README.md -------------------------------------------------------------------------------- /doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /filp/whoops/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/filp/whoops/CHANGELOG.md -------------------------------------------------------------------------------- /filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/filp/whoops/composer.json -------------------------------------------------------------------------------- /filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /filp/whoops/src/Whoops/RunInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/filp/whoops/src/Whoops/RunInterface.php -------------------------------------------------------------------------------- /filp/whoops/src/Whoops/Util/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/filp/whoops/src/Whoops/Util/Misc.php -------------------------------------------------------------------------------- /graylog2/gelf-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/graylog2/gelf-php/LICENSE -------------------------------------------------------------------------------- /graylog2/gelf-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/graylog2/gelf-php/README.md -------------------------------------------------------------------------------- /graylog2/gelf-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/graylog2/gelf-php/composer.json -------------------------------------------------------------------------------- /graylog2/gelf-php/src/Gelf/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/graylog2/gelf-php/src/Gelf/Logger.php -------------------------------------------------------------------------------- /graylog2/gelf-php/src/Gelf/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/graylog2/gelf-php/src/Gelf/Message.php -------------------------------------------------------------------------------- /hassankhan/config/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/.scrutinizer.yml -------------------------------------------------------------------------------- /hassankhan/config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/CHANGELOG.md -------------------------------------------------------------------------------- /hassankhan/config/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/CONTRIBUTING.md -------------------------------------------------------------------------------- /hassankhan/config/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/LICENSE.md -------------------------------------------------------------------------------- /hassankhan/config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/composer.json -------------------------------------------------------------------------------- /hassankhan/config/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/src/Config.php -------------------------------------------------------------------------------- /hassankhan/config/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/hassankhan/config/src/Exception.php -------------------------------------------------------------------------------- /illuminate/container/BoundMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/container/BoundMethod.php -------------------------------------------------------------------------------- /illuminate/container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/container/Container.php -------------------------------------------------------------------------------- /illuminate/container/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/container/LICENSE.md -------------------------------------------------------------------------------- /illuminate/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/container/composer.json -------------------------------------------------------------------------------- /illuminate/contracts/Auth/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Auth/Factory.php -------------------------------------------------------------------------------- /illuminate/contracts/Auth/Guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Auth/Guard.php -------------------------------------------------------------------------------- /illuminate/contracts/Bus/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Bus/Dispatcher.php -------------------------------------------------------------------------------- /illuminate/contracts/Cache/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Cache/Factory.php -------------------------------------------------------------------------------- /illuminate/contracts/Cache/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Cache/Lock.php -------------------------------------------------------------------------------- /illuminate/contracts/Cache/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Cache/Store.php -------------------------------------------------------------------------------- /illuminate/contracts/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Console/Kernel.php -------------------------------------------------------------------------------- /illuminate/contracts/Cookie/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Cookie/Factory.php -------------------------------------------------------------------------------- /illuminate/contracts/Hashing/Hasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Hashing/Hasher.php -------------------------------------------------------------------------------- /illuminate/contracts/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Http/Kernel.php -------------------------------------------------------------------------------- /illuminate/contracts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/LICENSE.md -------------------------------------------------------------------------------- /illuminate/contracts/Mail/MailQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Mail/MailQueue.php -------------------------------------------------------------------------------- /illuminate/contracts/Mail/Mailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Mail/Mailable.php -------------------------------------------------------------------------------- /illuminate/contracts/Mail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Mail/Mailer.php -------------------------------------------------------------------------------- /illuminate/contracts/Pipeline/Hub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Pipeline/Hub.php -------------------------------------------------------------------------------- /illuminate/contracts/Queue/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Queue/Factory.php -------------------------------------------------------------------------------- /illuminate/contracts/Queue/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Queue/Job.php -------------------------------------------------------------------------------- /illuminate/contracts/Queue/Monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Queue/Monitor.php -------------------------------------------------------------------------------- /illuminate/contracts/Queue/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Queue/Queue.php -------------------------------------------------------------------------------- /illuminate/contracts/Redis/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/Redis/Factory.php -------------------------------------------------------------------------------- /illuminate/contracts/View/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/View/Engine.php -------------------------------------------------------------------------------- /illuminate/contracts/View/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/View/Factory.php -------------------------------------------------------------------------------- /illuminate/contracts/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/View/View.php -------------------------------------------------------------------------------- /illuminate/contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/contracts/composer.json -------------------------------------------------------------------------------- /illuminate/events/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/events/Dispatcher.php -------------------------------------------------------------------------------- /illuminate/events/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/events/LICENSE.md -------------------------------------------------------------------------------- /illuminate/events/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/events/composer.json -------------------------------------------------------------------------------- /illuminate/filesystem/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/filesystem/Cache.php -------------------------------------------------------------------------------- /illuminate/filesystem/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/filesystem/Filesystem.php -------------------------------------------------------------------------------- /illuminate/filesystem/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/filesystem/LICENSE.md -------------------------------------------------------------------------------- /illuminate/filesystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/filesystem/composer.json -------------------------------------------------------------------------------- /illuminate/support/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Arr.php -------------------------------------------------------------------------------- /illuminate/support/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Carbon.php -------------------------------------------------------------------------------- /illuminate/support/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Collection.php -------------------------------------------------------------------------------- /illuminate/support/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Composer.php -------------------------------------------------------------------------------- /illuminate/support/DateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/DateFactory.php -------------------------------------------------------------------------------- /illuminate/support/Facades/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/App.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Artisan.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Auth.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Blade.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Bus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Bus.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Cache.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Config.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Cookie.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Crypt.php -------------------------------------------------------------------------------- /illuminate/support/Facades/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/DB.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Date.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Event.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Facade.php -------------------------------------------------------------------------------- /illuminate/support/Facades/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/File.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Gate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Gate.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Hash.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Input.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Lang.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Log.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Mail.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Password.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Queue.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Redirect.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Redis.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Request.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Response.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Route.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Schema.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Session.php -------------------------------------------------------------------------------- /illuminate/support/Facades/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/Storage.php -------------------------------------------------------------------------------- /illuminate/support/Facades/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/URL.php -------------------------------------------------------------------------------- /illuminate/support/Facades/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Facades/View.php -------------------------------------------------------------------------------- /illuminate/support/Fluent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Fluent.php -------------------------------------------------------------------------------- /illuminate/support/HtmlString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/HtmlString.php -------------------------------------------------------------------------------- /illuminate/support/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/LICENSE.md -------------------------------------------------------------------------------- /illuminate/support/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Manager.php -------------------------------------------------------------------------------- /illuminate/support/MessageBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/MessageBag.php -------------------------------------------------------------------------------- /illuminate/support/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Optional.php -------------------------------------------------------------------------------- /illuminate/support/Pluralizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Pluralizer.php -------------------------------------------------------------------------------- /illuminate/support/ProcessUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/ProcessUtils.php -------------------------------------------------------------------------------- /illuminate/support/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/ServiceProvider.php -------------------------------------------------------------------------------- /illuminate/support/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Str.php -------------------------------------------------------------------------------- /illuminate/support/Traits/Macroable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Traits/Macroable.php -------------------------------------------------------------------------------- /illuminate/support/Traits/Tappable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/Traits/Tappable.php -------------------------------------------------------------------------------- /illuminate/support/ViewErrorBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/ViewErrorBag.php -------------------------------------------------------------------------------- /illuminate/support/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/composer.json -------------------------------------------------------------------------------- /illuminate/support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/support/helpers.php -------------------------------------------------------------------------------- /illuminate/view/Compilers/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/Compilers/Compiler.php -------------------------------------------------------------------------------- /illuminate/view/Engines/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/Engines/Engine.php -------------------------------------------------------------------------------- /illuminate/view/Engines/FileEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/Engines/FileEngine.php -------------------------------------------------------------------------------- /illuminate/view/Engines/PhpEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/Engines/PhpEngine.php -------------------------------------------------------------------------------- /illuminate/view/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/Factory.php -------------------------------------------------------------------------------- /illuminate/view/FileViewFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/FileViewFinder.php -------------------------------------------------------------------------------- /illuminate/view/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/LICENSE.md -------------------------------------------------------------------------------- /illuminate/view/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/View.php -------------------------------------------------------------------------------- /illuminate/view/ViewFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/ViewFinderInterface.php -------------------------------------------------------------------------------- /illuminate/view/ViewName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/ViewName.php -------------------------------------------------------------------------------- /illuminate/view/ViewServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/ViewServiceProvider.php -------------------------------------------------------------------------------- /illuminate/view/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/illuminate/view/composer.json -------------------------------------------------------------------------------- /mongodb/mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/.gitignore -------------------------------------------------------------------------------- /mongodb/mongodb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/.travis.yml -------------------------------------------------------------------------------- /mongodb/mongodb/.travis/debug-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/.travis/debug-core.sh -------------------------------------------------------------------------------- /mongodb/mongodb/.travis/mo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/.travis/mo.sh -------------------------------------------------------------------------------- /mongodb/mongodb/.travis/setup_mo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/.travis/setup_mo.sh -------------------------------------------------------------------------------- /mongodb/mongodb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/CONTRIBUTING.md -------------------------------------------------------------------------------- /mongodb/mongodb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/LICENSE -------------------------------------------------------------------------------- /mongodb/mongodb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/Makefile -------------------------------------------------------------------------------- /mongodb/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/README.md -------------------------------------------------------------------------------- /mongodb/mongodb/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/composer.json -------------------------------------------------------------------------------- /mongodb/mongodb/docs/.static/.mongodb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongodb/mongodb/docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/index.txt -------------------------------------------------------------------------------- /mongodb/mongodb/docs/pretty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/pretty.js -------------------------------------------------------------------------------- /mongodb/mongodb/docs/reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/reference.txt -------------------------------------------------------------------------------- /mongodb/mongodb/docs/reference/bson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/reference/bson.txt -------------------------------------------------------------------------------- /mongodb/mongodb/docs/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/tutorial.txt -------------------------------------------------------------------------------- /mongodb/mongodb/docs/tutorial/crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/tutorial/crud.txt -------------------------------------------------------------------------------- /mongodb/mongodb/docs/upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/docs/upgrade.txt -------------------------------------------------------------------------------- /mongodb/mongodb/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/phpunit.xml.dist -------------------------------------------------------------------------------- /mongodb/mongodb/src/BulkWriteResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/BulkWriteResult.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/ChangeStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/ChangeStream.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Client.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Collection.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Database.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/DeleteResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/DeleteResult.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/GridFS/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/GridFS/Bucket.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/InsertOneResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/InsertOneResult.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/MapReduceResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/MapReduceResult.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Model/BSONArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Model/BSONArray.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Model/IndexInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Model/IndexInfo.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Operation/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Operation/Count.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Operation/Find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Operation/Find.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/Operation/Watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/Operation/Watch.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/UpdateResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/UpdateResult.php -------------------------------------------------------------------------------- /mongodb/mongodb/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/src/functions.php -------------------------------------------------------------------------------- /mongodb/mongodb/tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/tests/ClientTest.php -------------------------------------------------------------------------------- /mongodb/mongodb/tests/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/tests/FunctionsTest.php -------------------------------------------------------------------------------- /mongodb/mongodb/tests/PedantryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/tests/PedantryTest.php -------------------------------------------------------------------------------- /mongodb/mongodb/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/tests/TestCase.php -------------------------------------------------------------------------------- /mongodb/mongodb/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/mongodb/mongodb/tests/bootstrap.php -------------------------------------------------------------------------------- /monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /monolog/monolog/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/CHANGELOG.md -------------------------------------------------------------------------------- /monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/README.md -------------------------------------------------------------------------------- /monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/composer.json -------------------------------------------------------------------------------- /monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /monolog/monolog/doc/03-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/doc/03-utilities.md -------------------------------------------------------------------------------- /monolog/monolog/doc/04-extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/doc/04-extending.md -------------------------------------------------------------------------------- /monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /monolog/monolog/src/Monolog/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/src/Monolog/Logger.php -------------------------------------------------------------------------------- /monolog/monolog/src/Monolog/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/monolog/monolog/src/Monolog/Utils.php -------------------------------------------------------------------------------- /monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nesbot/carbon/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /nesbot/carbon/.multi-tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/.multi-tester.yml -------------------------------------------------------------------------------- /nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /nesbot/carbon/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/contributing.md -------------------------------------------------------------------------------- /nesbot/carbon/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/phpmd.xml -------------------------------------------------------------------------------- /nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Carbon.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Factory.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/aa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/aa.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/aa_DJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/aa_DJ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/aa_ER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/aa_ER.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/aa_ET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/aa_ET.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/af.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/af.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/af_NA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/af_NA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/af_ZA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/af_ZA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/agq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/agq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/agr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/agr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ak.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ak_GH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ak_GH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/am.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/am_ET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/am_ET.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/an.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/an.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/an_ES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/an_ES.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/anp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/anp.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_AE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_AE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_BH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_BH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_DJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_DJ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_DZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_DZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_EG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_EG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_EH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_EH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_ER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_ER.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_IL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_IL.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_IN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_IN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_IQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_IQ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_JO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_JO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_KM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_KM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_KW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_KW.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_LB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_LB.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_LY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_LY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_MA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_MA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_MR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_MR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_OM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_OM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_PS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_PS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_QA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_QA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_SA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_SA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_SD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_SD.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_SO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_SO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_SS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_SS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_SY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_SY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_TD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_TD.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_TN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_TN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ar_YE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ar_YE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/as.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/as.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/as_IN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/as_IN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/asa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/asa.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ast.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ayc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ayc.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/az.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/az_AZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/az_AZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/az_IR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/az_IR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bas.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/be.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/be_BY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/be_BY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bem.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ber.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bez.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bez.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bg_BG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bg_BG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bhb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bhb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bho.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bho.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bi_VU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bi_VU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bm.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bn_BD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bn_BD.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bn_IN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bn_IN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bo_CN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bo_CN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bo_IN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bo_IN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/br.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/br_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/br_FR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/brx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/brx.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bs.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/bs_BA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/bs_BA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/byn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/byn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ca.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ca_AD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ca_AD.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ca_ES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ca_ES.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ca_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ca_FR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ca_IT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ca_IT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ccp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ccp.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ce.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ce_RU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ce_RU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cgg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cgg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/chr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/chr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cmn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cmn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/crh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/crh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cs.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cs_CZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cs_CZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/csb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/csb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cv.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cv_RU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cv_RU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cy.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/cy_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/cy_GB.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/da.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/da_DK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/da_DK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/da_GL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/da_GL.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dav.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_AT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_AT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_BE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_BE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_CH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_CH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_DE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_DE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_IT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_IT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_LI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_LI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/de_LU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/de_LU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dje.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dje.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/doi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/doi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dsb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dsb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dua.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dua.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dv.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dv_MV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dv_MV.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dyo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dyo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dz.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/dz_BT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/dz_BT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ebu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ebu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ee.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ee_TG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ee_TG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/el.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/el_CY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/el_CY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/el_GR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/el_GR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_AG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_AG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_AI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_AI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_AS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_AS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_AT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_AT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_AU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_AU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BB.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BW.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_BZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_BZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CX.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_CY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_CY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_DE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_DE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_DG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_DG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_DK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_DK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_DM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_DM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_ER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_ER.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_FI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_FI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_FJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_FJ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_FK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_FK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_FM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_FM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GB.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GD.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_GY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_GY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_HK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_HK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_IE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_IE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_IL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_IL.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_IM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_IM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_IN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_IN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_IO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_IO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_JE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_JE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_JM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_JM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_KE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_KE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_KI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_KI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_KN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_KN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_KY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_KY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_LC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_LC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_LR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_LR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_LS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_LS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MP.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MW.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_MY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_MY.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NF.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NL.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_NZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_NZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_PG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_PG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_PH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_PH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_PK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_PK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_PN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_PN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_PR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_PR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_PW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_PW.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_RW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_RW.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SB.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SD.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SL.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SX.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_SZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_SZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_TC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_TC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_TK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_TK.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_TO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_TO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_TT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_TT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_TV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_TV.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_TZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_TZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_UG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_UG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_UM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_UM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_US.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_US.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_VC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_VC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_VG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_VG.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_VI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_VI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_VU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_VU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_WS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_WS.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_ZA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_ZA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_ZM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_ZM.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/en_ZW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/en_ZW.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/eo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_AR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_AR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_BO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_BO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_BR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_BR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_BZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_BZ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_CL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_CL.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_CO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_CO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_CR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_CR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_CU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_CU.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_DO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_DO.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_EA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_EA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_EC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_EC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_ES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_ES.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_GQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_GQ.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_GT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_GT.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_HN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_HN.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_IC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_IC.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_MX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_MX.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_NI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_NI.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_PA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_PA.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_PE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_PE.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_PH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_PH.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/es_PR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/es_PR.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/et.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/eu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ewo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ewo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fa.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ff.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fil.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fur.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/fy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/fy.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ga.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ga.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gd.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gez.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gez.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gom.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gsw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gsw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/guz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/guz.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/gv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/gv.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ha.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hak.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/haw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/haw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/he.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hif.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hne.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hsb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hsb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ht.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ht.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/hy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/hy.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ia.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/id.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ig.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ii.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ik.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/in.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/is.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/it.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/iu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/iu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/iw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/iw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ja.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/jgo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/jgo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/jmc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/jmc.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/jv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/jv.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ka.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kab.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kam.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kde.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kde.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kea.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/khq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/khq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ki.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kk.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kkj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kkj.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kln.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/km.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/km.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ko.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kok.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kok.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ks.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ksb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ksb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ksf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ksf.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ksh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ksh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ku.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/kw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/kw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ky.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lag.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/li.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/li.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lij.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lij.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lkt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lkt.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ln.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ln.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lrc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lrc.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lt.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/luo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/luo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/luy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/luy.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lv.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/lzh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/lzh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mag.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mai.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mas.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/me.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mer.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mfe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mfe.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mgh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mgh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mgo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mgo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mhr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mhr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/miq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/miq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mjw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mjw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mk.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ml.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mni.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mni.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ms.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mt.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mua.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mua.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/my.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/mzn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/mzn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nan.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/naq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/naq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nb.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nd.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nds.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ne.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nhn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nhn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/niu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/niu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nmg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nmg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nnh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nnh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/no.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nso.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nso.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nus.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/nyn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/nyn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/oc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/oc.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/om.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/om.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/or.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/or.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/os.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/os.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/pa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/pa.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/pap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/pap.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/pl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/prg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/prg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ps.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/pt.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/qu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/qu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/quz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/quz.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/raj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/raj.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/rm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/rm.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/rn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/rn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ro.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/rof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/rof.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ru.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/rw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/rw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/rwk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/rwk.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sa.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sah.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/saq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/saq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sat.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sbp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sbp.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sc.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/scr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/scr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sd.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/se.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/seh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/seh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ses.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sgs.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/shi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/shi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/shn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/shn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/shs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/shs.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/si.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/si.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sid.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sk.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sm.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/smn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/smn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/so.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/so.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ss.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/st.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/st.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sv.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/sw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/sw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/szl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/szl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ta.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tcy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tcy.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/te.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/te.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/teo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/teo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tet.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tg.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/th.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/the.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/the.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ti.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ti.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tig.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tk.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tlh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tlh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tn.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/to.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/to.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tpi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tpi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tr.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ts.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tt.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/twq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/twq.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tzl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tzl.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/tzm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/tzm.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ug.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/uk.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/unm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/unm.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ur.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/uz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/uz.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/vai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/vai.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/ve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/ve.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/vi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/vo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/vo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/vun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/vun.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/wa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/wa.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/wae.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/wae.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/wal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/wal.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/wo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/wo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/xh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/xh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/xog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/xog.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/yav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/yav.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/yi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/yi.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/yo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/yo.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/yue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/yue.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/yuw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/yuw.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/zgh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/zgh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/zh.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Lang/zu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Lang/zu.php -------------------------------------------------------------------------------- /nesbot/carbon/src/Carbon/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/nesbot/carbon/src/Carbon/Language.php -------------------------------------------------------------------------------- /ocsystem/swooledistributed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/ocsystem/swooledistributed/.gitignore -------------------------------------------------------------------------------- /ocsystem/swooledistributed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/ocsystem/swooledistributed/LICENSE -------------------------------------------------------------------------------- /ocsystem/swooledistributed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/ocsystem/swooledistributed/README.md -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/Server/Coroutine/README.md: -------------------------------------------------------------------------------- 1 | 此目录为协程的目录 2 | 3 | 使用swoole定时器可以在其他框架中良好运行 -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/AMQPTasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Actors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Aspects/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Console/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Pack/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Process/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Route/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/app/Views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/config/docker/README.md: -------------------------------------------------------------------------------- 1 | #可以添加新的配置文件夹,通过环境变量来选择 -------------------------------------------------------------------------------- /ocsystem/swooledistributed/src/www/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paragonie/constant_time_encoding/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ -------------------------------------------------------------------------------- /php-amqplib/php-amqplib/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-amqplib/php-amqplib/.gitmodules -------------------------------------------------------------------------------- /php-amqplib/php-amqplib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-amqplib/php-amqplib/CHANGELOG.md -------------------------------------------------------------------------------- /php-amqplib/php-amqplib/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-amqplib/php-amqplib/CREDITS -------------------------------------------------------------------------------- /php-amqplib/php-amqplib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-amqplib/php-amqplib/LICENSE -------------------------------------------------------------------------------- /php-amqplib/php-amqplib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-amqplib/php-amqplib/README.md -------------------------------------------------------------------------------- /php-amqplib/php-amqplib/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-amqplib/php-amqplib/composer.json -------------------------------------------------------------------------------- /php-ds/php-ds/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/CHANGELOG.md -------------------------------------------------------------------------------- /php-ds/php-ds/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/CONTRIBUTING.md -------------------------------------------------------------------------------- /php-ds/php-ds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/LICENSE -------------------------------------------------------------------------------- /php-ds/php-ds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/README.md -------------------------------------------------------------------------------- /php-ds/php-ds/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/composer.json -------------------------------------------------------------------------------- /php-ds/php-ds/src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Collection.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Deque.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Deque.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Hashable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Hashable.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Map.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Pair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Pair.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/PriorityQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/PriorityQueue.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Queue.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Sequence.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Set.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Stack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Stack.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Traits/Capacity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Traits/Capacity.php -------------------------------------------------------------------------------- /php-ds/php-ds/src/Vector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/php-ds/php-ds/src/Vector.php -------------------------------------------------------------------------------- /psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/container/.gitignore -------------------------------------------------------------------------------- /psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/container/LICENSE -------------------------------------------------------------------------------- /psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/container/README.md -------------------------------------------------------------------------------- /psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/container/composer.json -------------------------------------------------------------------------------- /psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/LICENSE -------------------------------------------------------------------------------- /psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /psr/log/Psr/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/LoggerAwareTrait.php -------------------------------------------------------------------------------- /psr/log/Psr/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/LoggerInterface.php -------------------------------------------------------------------------------- /psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /psr/log/Psr/Log/Test/TestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/Psr/Log/Test/TestLogger.php -------------------------------------------------------------------------------- /psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/README.md -------------------------------------------------------------------------------- /psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/log/composer.json -------------------------------------------------------------------------------- /psr/simple-cache/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/simple-cache/.editorconfig -------------------------------------------------------------------------------- /psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/simple-cache/README.md -------------------------------------------------------------------------------- /psr/simple-cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/psr/simple-cache/composer.json -------------------------------------------------------------------------------- /symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Application.php -------------------------------------------------------------------------------- /symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /symfony/console/Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Helper/HelperSet.php -------------------------------------------------------------------------------- /symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /symfony/console/Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Helper/TableCell.php -------------------------------------------------------------------------------- /symfony/console/Helper/TableRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Helper/TableRows.php -------------------------------------------------------------------------------- /symfony/console/Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Helper/TableStyle.php -------------------------------------------------------------------------------- /symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /symfony/console/Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Input/ArrayInput.php -------------------------------------------------------------------------------- /symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /symfony/console/Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Input/InputOption.php -------------------------------------------------------------------------------- /symfony/console/Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Input/StringInput.php -------------------------------------------------------------------------------- /symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/LICENSE -------------------------------------------------------------------------------- /symfony/console/Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Output/NullOutput.php -------------------------------------------------------------------------------- /symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /symfony/console/Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Question/Question.php -------------------------------------------------------------------------------- /symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/README.md -------------------------------------------------------------------------------- /symfony/console/Style/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Style/OutputStyle.php -------------------------------------------------------------------------------- /symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/Terminal.php -------------------------------------------------------------------------------- /symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/composer.json -------------------------------------------------------------------------------- /symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /symfony/contracts/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /symfony/contracts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/contracts/CHANGELOG.md -------------------------------------------------------------------------------- /symfony/contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/contracts/LICENSE -------------------------------------------------------------------------------- /symfony/contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/contracts/README.md -------------------------------------------------------------------------------- /symfony/contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/contracts/composer.json -------------------------------------------------------------------------------- /symfony/contracts/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/contracts/phpunit.xml.dist -------------------------------------------------------------------------------- /symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /symfony/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/CHANGELOG.md -------------------------------------------------------------------------------- /symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/Debug.php -------------------------------------------------------------------------------- /symfony/debug/DebugClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/DebugClassLoader.php -------------------------------------------------------------------------------- /symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /symfony/debug/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/ExceptionHandler.php -------------------------------------------------------------------------------- /symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/LICENSE -------------------------------------------------------------------------------- /symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/debug/README.md -------------------------------------------------------------------------------- /symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /symfony/translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/translation/Translator.php -------------------------------------------------------------------------------- /symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/translation/composer.json -------------------------------------------------------------------------------- /symfony/translation/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onlychain/OCSystem/HEAD/symfony/translation/phpunit.xml.dist --------------------------------------------------------------------------------