├── .cnb └── FUNDING.yml ├── .coderabbit.yaml ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── FUNDING.yml ├── copilot-instructions.md └── workflows │ ├── cnb.yaml │ ├── docs-split.yaml │ ├── docs-translate.yaml │ ├── release.yaml │ ├── split.yaml │ ├── tests.yaml │ └── update-changelog.yml ├── .gitignore ├── .php-cs-fixer.php ├── .phpstorm.meta.php ├── .travis ├── setup.services.sh └── setup.swoole.sh ├── .vscode ├── cspell.json └── settings.json ├── CHANGELOG-3.1.md ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── README_CN.md ├── bin ├── composer-json-fixer ├── doc-translate ├── doc-translate.github-model.js ├── doc-translate.js ├── generate-repository-doc.sh ├── git-delete-branch.sh ├── pending-composer-json ├── pending-repositories.sh ├── regenerate-readme.sh ├── release.sh ├── split-docs.sh ├── split-linux.sh ├── split-lite.sh ├── split.sh ├── splitsh-lite └── splitsh-lite-linux ├── composer.json ├── context7.json ├── docs ├── .github │ └── workflows │ │ ├── close-pull-request.yml │ │ └── deploy.yml ├── .vitepress │ ├── config.mts │ └── src │ │ ├── en │ │ ├── config.ts │ │ ├── nav.ts │ │ └── sidebars.ts │ │ ├── zh-cn │ │ ├── config.ts │ │ ├── nav.ts │ │ └── sidebars.ts │ │ ├── zh-hk │ │ ├── config.ts │ │ ├── nav.ts │ │ └── sidebars.ts │ │ └── zh-tw │ │ ├── config.ts │ │ ├── nav.ts │ │ └── sidebars.ts ├── en │ ├── components │ │ ├── amqp-job.md │ │ ├── cache.md │ │ ├── co-phpunit.md │ │ ├── command-benchmark.md │ │ ├── command-signals.md │ │ ├── command-validation.md │ │ ├── compoships.md │ │ ├── confd.md │ │ ├── config-consul.md │ │ ├── console-spinner.md │ │ ├── elasticsearch.md │ │ ├── encryption.md │ │ ├── exception-event.md │ │ ├── facade.md │ │ ├── fast-paginate.md │ │ ├── grpc-validation.md │ │ ├── helpers.md │ │ ├── http-client.md │ │ ├── ide-helper.md │ │ ├── index.md │ │ ├── ipc-broadcaster.md │ │ ├── lock.md │ │ ├── macros.md │ │ ├── mail.md │ │ ├── model-factory.md │ │ ├── model-hashids.md │ │ ├── model-morph-addon.md │ │ ├── model-observer.md │ │ ├── model-scope.md │ │ ├── monolog-hook.md │ │ ├── mysql-grammar-addon.md │ │ ├── notification-easysms.md │ │ ├── notification-mail.md │ │ ├── notification.md │ │ ├── oauth2-server.md │ │ ├── openai-client.md │ │ ├── pretty-console.md │ │ ├── purifier.md │ │ ├── recaptcha.md │ │ ├── redis-subscriber.md │ │ ├── sentry.md │ │ ├── support.md │ │ ├── tcp-sender.md │ │ ├── telescope-elasticsearch.md │ │ ├── telescope.md │ │ ├── tinker.md │ │ ├── trigger.md │ │ ├── validated-dto.md │ │ └── web-tinker.md │ ├── faq │ │ └── index.md │ ├── guide │ │ ├── index.md │ │ ├── introduce │ │ │ └── about.md │ │ └── start │ │ │ └── components.md │ └── index.md ├── index.md ├── package.json ├── pnpm-lock.yaml ├── zh-cn │ ├── components │ │ ├── amqp-job.md │ │ ├── cache.md │ │ ├── co-phpunit.md │ │ ├── command-benchmark.md │ │ ├── command-signals.md │ │ ├── command-validation.md │ │ ├── compoships.md │ │ ├── confd.md │ │ ├── config-consul.md │ │ ├── console-spinner.md │ │ ├── elasticsearch.md │ │ ├── encryption.md │ │ ├── exception-event.md │ │ ├── facade.md │ │ ├── fast-paginate.md │ │ ├── grpc-validation.md │ │ ├── helpers.md │ │ ├── http-client.md │ │ ├── ide-helper.md │ │ ├── index.md │ │ ├── ipc-broadcaster.md │ │ ├── lock.md │ │ ├── macros.md │ │ ├── mail.md │ │ ├── model-factory.md │ │ ├── model-hashids.md │ │ ├── model-morph-addon.md │ │ ├── model-observer.md │ │ ├── model-scope.md │ │ ├── monolog-hook.md │ │ ├── mysql-grammar-addon.md │ │ ├── notification-easysms.md │ │ ├── notification-mail.md │ │ ├── notification.md │ │ ├── oauth2-server.md │ │ ├── openai-client.md │ │ ├── pretty-console.md │ │ ├── purifier.md │ │ ├── recaptcha.md │ │ ├── redis-subscriber.md │ │ ├── sentry.md │ │ ├── support.md │ │ ├── tcp-sender.md │ │ ├── telescope-elasticsearch.md │ │ ├── telescope.md │ │ ├── tinker.md │ │ ├── trigger.md │ │ ├── validated-dto.md │ │ └── web-tinker.md │ ├── faq │ │ └── index.md │ ├── guide │ │ ├── index.md │ │ ├── introduce │ │ │ └── about.md │ │ └── start │ │ │ └── components.md │ └── index.md ├── zh-hk │ ├── components │ │ ├── amqp-job.md │ │ ├── cache.md │ │ ├── co-phpunit.md │ │ ├── command-benchmark.md │ │ ├── command-signals.md │ │ ├── command-validation.md │ │ ├── compoships.md │ │ ├── confd.md │ │ ├── config-consul.md │ │ ├── console-spinner.md │ │ ├── elasticsearch.md │ │ ├── encryption.md │ │ ├── exception-event.md │ │ ├── facade.md │ │ ├── fast-paginate.md │ │ ├── grpc-validation.md │ │ ├── helpers.md │ │ ├── http-client.md │ │ ├── ide-helper.md │ │ ├── index.md │ │ ├── ipc-broadcaster.md │ │ ├── lock.md │ │ ├── macros.md │ │ ├── mail.md │ │ ├── model-factory.md │ │ ├── model-hashids.md │ │ ├── model-morph-addon.md │ │ ├── model-observer.md │ │ ├── model-scope.md │ │ ├── monolog-hook.md │ │ ├── mysql-grammar-addon.md │ │ ├── notification-easysms.md │ │ ├── notification-mail.md │ │ ├── notification.md │ │ ├── oauth2-server.md │ │ ├── openai-client.md │ │ ├── pretty-console.md │ │ ├── purifier.md │ │ ├── recaptcha.md │ │ ├── redis-subscriber.md │ │ ├── sentry.md │ │ ├── support.md │ │ ├── tcp-sender.md │ │ ├── telescope-elasticsearch.md │ │ ├── telescope.md │ │ ├── tinker.md │ │ ├── trigger.md │ │ ├── validated-dto.md │ │ └── web-tinker.md │ ├── faq │ │ └── index.md │ ├── guide │ │ ├── index.md │ │ ├── introduce │ │ │ └── about.md │ │ └── start │ │ │ └── components.md │ └── index.md └── zh-tw │ ├── components │ ├── amqp-job.md │ ├── cache.md │ ├── co-phpunit.md │ ├── command-benchmark.md │ ├── command-signals.md │ ├── command-validation.md │ ├── compoships.md │ ├── confd.md │ ├── config-consul.md │ ├── console-spinner.md │ ├── elasticsearch.md │ ├── encryption.md │ ├── exception-event.md │ ├── facade.md │ ├── fast-paginate.md │ ├── grpc-validation.md │ ├── helpers.md │ ├── http-client.md │ ├── ide-helper.md │ ├── index.md │ ├── ipc-broadcaster.md │ ├── lock.md │ ├── macros.md │ ├── mail.md │ ├── model-factory.md │ ├── model-hashids.md │ ├── model-morph-addon.md │ ├── model-observer.md │ ├── model-scope.md │ ├── monolog-hook.md │ ├── mysql-grammar-addon.md │ ├── notification-easysms.md │ ├── notification-mail.md │ ├── notification.md │ ├── oauth2-server.md │ ├── openai-client.md │ ├── pretty-console.md │ ├── purifier.md │ ├── recaptcha.md │ ├── redis-subscriber.md │ ├── sentry.md │ ├── support.md │ ├── tcp-sender.md │ ├── telescope-elasticsearch.md │ ├── telescope.md │ ├── tinker.md │ ├── trigger.md │ ├── validated-dto.md │ └── web-tinker.md │ ├── faq │ └── index.md │ ├── guide │ ├── index.md │ ├── introduce │ │ └── about.md │ └── start │ │ └── components.md │ └── index.md ├── package.json ├── phpstan-baseline.neon ├── phpstan.neon.dist ├── phpstan.types.neon.dist ├── phpunit.xml.dist ├── pnpm-lock.yaml ├── src ├── .github │ ├── .github │ │ └── workflows │ │ │ ├── close-pull-request.yml │ │ │ └── release.yaml │ ├── FUNDING.yml │ ├── README.md │ ├── SECURITY.md │ └── profile │ │ └── README.md ├── amqp-job │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Annotation │ │ └── AmqpJob.php │ │ ├── Attempt │ │ └── RedisAttempt.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ ├── Attempt.php │ │ ├── JobInterface.php │ │ ├── LoggerInterface.php │ │ └── Packer.php │ │ ├── Functions.php │ │ ├── Job.php │ │ ├── JobConsumer.php │ │ ├── JobConsumerManager.php │ │ ├── JobMessage.php │ │ ├── Listener │ │ └── RegisterJobConsumer.php │ │ └── LoggerInterface.php ├── cache │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CacheInterface.php │ │ ├── CacheManager.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ ├── CacheInterface.php │ │ ├── Factory.php │ │ └── Repository.php │ │ ├── Event │ │ ├── CacheEvent.php │ │ ├── CacheFlushed.php │ │ ├── CacheFlushing.php │ │ ├── CacheHit.php │ │ ├── CacheMissed.php │ │ ├── ForgettingKey.php │ │ ├── KeyForgetFailed.php │ │ ├── KeyForgotten.php │ │ ├── KeyWriteFailed.php │ │ ├── KeyWritten.php │ │ ├── RetrievingKey.php │ │ ├── RetrievingManyKeys.php │ │ ├── WritingKey.php │ │ └── WritingManyKeys.php │ │ ├── Facade │ │ └── Cache.php │ │ ├── Repository.php │ │ └── RepositoryFactory.php ├── co-phpunit │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit-patch.php │ └── src │ │ ├── Attributes │ │ └── NonCoroutine.php │ │ └── Concerns │ │ └── RunTestsInCoroutine.php ├── command-benchmark │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Aspect │ │ └── CommandAspect.php │ │ └── ConfigProvider.php ├── command-signals │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ConfigProvider.php │ │ ├── SignalRegistry.php │ │ └── Traits │ │ └── InteractsWithSignals.php ├── command-validation │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Concerns │ │ └── ValidatesInput.php │ │ ├── ConfigProvider.php │ │ └── Traits │ │ └── ValidatesInput.php ├── compoships │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Compoships.php │ │ ├── ConfigProvider.php │ │ ├── Database │ │ ├── Eloquent │ │ │ ├── Concerns │ │ │ │ └── HasRelationships.php │ │ │ ├── Model.php │ │ │ └── Relations │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasOne.php │ │ │ │ └── HasOneOrMany.php │ │ └── Query │ │ │ └── Builder.php │ │ └── Exceptions │ │ └── InvalidUsageException.php ├── confd │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── confd.php │ └── src │ │ ├── Command │ │ └── EnvCommand.php │ │ ├── Confd.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ └── LoggerInterface.php │ │ ├── Driver │ │ ├── DriverInterface.php │ │ ├── Etcd.php │ │ ├── EtcdClient.php │ │ ├── Nacos.php │ │ ├── NacosClient.php │ │ └── Noop.php │ │ ├── Event │ │ ├── ConfigChanged.php │ │ └── WatchDispatched.php │ │ ├── Listener │ │ └── WatchOnBootListener.php │ │ ├── Traits │ │ └── Logger.php │ │ └── Writer │ │ ├── EnvWriter.php │ │ └── WriterInterface.php ├── config-consul │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── ConfigProvider.php │ │ ├── Consul │ │ ├── KVFactory.php │ │ └── KVInterface.php │ │ ├── ConsulDriver.php │ │ └── KV.php ├── console-spinner │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── console_spinner.php │ └── src │ │ ├── ConfigProvider.php │ │ ├── Spinner.php │ │ └── Traits │ │ └── Spinnerable.php ├── elasticsearch │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── elasticsearch.php │ └── src │ │ ├── ClientBuilderFactory.php │ │ ├── ConfigProvider.php │ │ └── Facade │ │ └── Elasticsearch.php ├── encryption │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── encryption.php │ └── src │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ ├── DecryptException.php │ │ ├── EncryptException.php │ │ ├── Encrypter.php │ │ └── StringEncrypter.php │ │ ├── Encrypter.php │ │ ├── EncrypterFactory.php │ │ ├── Exception │ │ └── MissingKeyException.php │ │ ├── Functions.php │ │ ├── KeyParser.php │ │ └── Listener │ │ └── BootEncryptionListener.php ├── exception-event │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Aspect │ │ └── ExceptionHandlerDispatcherAspect.php │ │ ├── ConfigProvider.php │ │ ├── Event │ │ └── ExceptionDispatched.php │ │ └── Functions.php ├── facade │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AMQP.php │ │ ├── App.php │ │ ├── AsyncQueue.php │ │ ├── Cache.php │ │ ├── Config.php │ │ ├── ConfigProvider.php │ │ ├── Cookie.php │ │ ├── Crypt.php │ │ ├── DI.php │ │ ├── Event.php │ │ ├── Facade.php │ │ ├── File.php │ │ ├── Filesystem.php │ │ ├── Kafka.php │ │ ├── Log.php │ │ ├── Pipeline.php │ │ ├── Redis.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Session.php │ │ ├── Translator.php │ │ ├── Validator.php │ │ └── View.php ├── fast-paginate │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── BuilderMixin.php │ │ ├── ConfigProvider.php │ │ ├── FastPaginate.php │ │ ├── Listener │ │ └── RegisterMixinListener.php │ │ ├── QueryIncompatibleWithFastPagination.php │ │ ├── RelationMixin.php │ │ └── ScoutMixin.php ├── grpc-validation │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Annotation │ │ ├── Validation.php │ │ ├── ValidationAspect.php │ │ └── ValidationException.php │ │ └── ConfigProvider.php ├── helpers │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Command │ │ └── Functions.php │ │ ├── ConfigProvider.php │ │ └── Functions.php ├── http-client │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Concerns │ │ └── DeterminesStatusCode.php │ │ ├── ConnectionException.php │ │ ├── Events │ │ ├── ConnectionFailed.php │ │ ├── RequestSending.php │ │ └── ResponseReceived.php │ │ ├── Factory.php │ │ ├── Http.php │ │ ├── HttpClientException.php │ │ ├── PendingRequest.php │ │ ├── Pool.php │ │ ├── Request.php │ │ ├── RequestException.php │ │ ├── Response.php │ │ └── ResponseSequence.php ├── ide-helper │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Alias.php │ │ ├── Command │ │ ├── MacroCommand.php │ │ └── ModelCommand.php │ │ ├── ConfigProvider.php │ │ ├── Eloquent.php │ │ ├── Macro.php │ │ └── Method.php ├── ipc-broadcaster │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AllProcessesBroadcaster.php │ │ ├── ClosureIpcMessage.php │ │ ├── ConfigProvider.php │ │ ├── Constant.php │ │ ├── Contract │ │ ├── BroadcasterInterface.php │ │ └── IpcMessageInterface.php │ │ ├── Functions.php │ │ ├── IpcMessage.php │ │ ├── Listener │ │ ├── OnPipeMessageListener.php │ │ └── SetConstantOnBootListener.php │ │ ├── ServerBroadcaster.php │ │ ├── Traits │ │ ├── InteractsWithFromWorkerId.php │ │ └── RunsInCurrentWorker.php │ │ └── UserProcessesBroadcaster.php ├── lock │ ├── LICENSE │ ├── README.md │ ├── README_CN.md │ ├── composer.json │ ├── migrations │ │ └── create_lock_table.php │ ├── publish │ │ └── lock.php │ └── src │ │ ├── Annotation │ │ ├── Blockable.php │ │ ├── BlockableAspect.php │ │ ├── Lock.php │ │ └── LockAspect.php │ │ ├── ConfigProvider.php │ │ ├── Driver │ │ ├── AbstractLock.php │ │ ├── CacheLock.php │ │ ├── CoroutineLock.php │ │ ├── DatabaseLock.php │ │ ├── FileSystemLock.php │ │ ├── LockInterface.php │ │ ├── LuaScripts.php │ │ └── RedisLock.php │ │ ├── Exception │ │ └── LockTimeoutException.php │ │ ├── Functions.php │ │ ├── Listener │ │ └── RegisterPropertyHandlerListener.php │ │ └── LockFactory.php ├── macros │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── output │ │ └── Hyperf │ │ │ ├── Collection │ │ │ ├── Arr.php │ │ │ ├── Collection.php │ │ │ └── LazyCollection.php │ │ │ ├── HttpServer │ │ │ ├── Contract │ │ │ │ └── RequestInterface.php │ │ │ └── Request.php │ │ │ └── Stringable │ │ │ ├── Str.php │ │ │ └── Stringable.php │ └── src │ │ ├── ArrMixin.php │ │ ├── CollectionMixin.php │ │ ├── ConfigProvider.php │ │ ├── Exception │ │ ├── ItemNotFoundException.php │ │ └── MultipleItemsFoundException.php │ │ ├── LazyCollectionMixin.php │ │ ├── Listener │ │ └── RegisterMixinListener.php │ │ ├── RequestMixin.php │ │ ├── StrMixin.php │ │ └── StringableMixin.php ├── mail │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ ├── mail.php │ │ └── resources │ │ │ └── views │ │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ │ └── text │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ └── src │ │ ├── Attachment.php │ │ ├── Command │ │ ├── MailCommand.php │ │ └── stubs │ │ │ ├── mail.stub │ │ │ ├── markdown-mail.stub │ │ │ └── markdown.stub │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ ├── Attachable.php │ │ ├── Factory.php │ │ ├── Mailable.php │ │ └── Mailer.php │ │ ├── Event │ │ ├── MessageSending.php │ │ └── MessageSent.php │ │ ├── Facade │ │ └── Mail.php │ │ ├── Factory │ │ ├── MailerFactory.php │ │ └── MarkdownFactory.php │ │ ├── Functions.php │ │ ├── MailManager.php │ │ ├── Mailable.php │ │ ├── Mailable │ │ ├── Address.php │ │ ├── Attachment.php │ │ ├── Content.php │ │ ├── Envelope.php │ │ └── Headers.php │ │ ├── Mailer.php │ │ ├── Markdown.php │ │ ├── Message.php │ │ ├── PendingMail.php │ │ ├── SentMessage.php │ │ ├── Testing │ │ └── SeeInOrder.php │ │ ├── TextMessage.php │ │ └── Transport │ │ ├── ArrayTransport.php │ │ ├── LogTransport.php │ │ ├── SesTransport.php │ │ └── SesV2Transport.php ├── model-factory │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ ├── example.php.stub │ │ └── model_factory.php │ └── src │ │ ├── ConfigProvider.php │ │ ├── FactoryInvoker.php │ │ └── Functions.php ├── model-hashids │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── hashids.php │ └── src │ │ ├── Concerns │ │ ├── HasHashid.php │ │ ├── HashidRouting.php │ │ └── HashidScope.php │ │ └── ConfigProvider.php ├── model-morph-addon │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Aspect │ │ ├── MorphToAspect.php │ │ └── QueriesRelationshipsAspect.php │ │ └── ConfigProvider.php ├── model-observer │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Annotation │ │ ├── ObservedBy.php │ │ └── Observer.php │ │ ├── Command │ │ ├── GeneratorCommand.php │ │ └── stubs │ │ │ └── observer.stub │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ └── ShouldCoroutine.php │ │ ├── Listener │ │ ├── ObserverListener.php │ │ └── RegisterObserverListener.php │ │ └── ObserverManager.php ├── model-scope │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Annotation │ │ └── ScopedBy.php │ │ ├── ConfigProvider.php │ │ └── Listener │ │ └── RegisterScopeListener.php ├── monolog-hook │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Aspect │ │ └── UdpSocketAspect.php │ │ └── ConfigProvider.php ├── mysql-grammar-addon │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Aspect │ │ └── MySqlGrammarAspect.php │ │ └── ConfigProvider.php ├── notification-easysms │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── easy_sms.php │ └── src │ │ ├── Channel │ │ └── EasySmsChannel.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ └── Smsable.php │ │ ├── EasySms.php │ │ ├── EasySmsFactory.php │ │ └── Listener │ │ └── RegisterChannelListener.php ├── notification-mail │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── resources │ │ │ └── views │ │ │ └── email.blade.php │ └── src │ │ ├── Action.php │ │ ├── Channel │ │ └── MailChannel.php │ │ ├── Command │ │ ├── MarkdownMailCommand.php │ │ └── stubs │ │ │ └── markdown-notification.stub │ │ ├── ConfigProvider.php │ │ ├── Listener │ │ ├── RegisterChannelListener.php │ │ └── RegisterViewNamespaceListener.php │ │ └── Message │ │ ├── MailMessage.php │ │ └── SimpleMessage.php ├── notification │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Annotation │ │ └── Channel.php │ │ ├── AnonymousNotifiable.php │ │ ├── Channel │ │ ├── DatabaseChannel.php │ │ └── SymfonyChannel.php │ │ ├── ChannelManager.php │ │ ├── Command │ │ ├── GenNotificationCommand.php │ │ ├── NotificationTableCommand.php │ │ └── Stubs │ │ │ ├── 2021_04_18_224626_notifications_table.stub │ │ │ └── notification.stub │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ ├── Channel.php │ │ └── Dispatcher.php │ │ ├── DatabaseNotification.php │ │ ├── DatabaseNotificationCollection.php │ │ ├── Event │ │ ├── NotificationFailed.php │ │ ├── NotificationSending.php │ │ └── NotificationSent.php │ │ ├── Functions.php │ │ ├── Listener │ │ └── RegisterChannelsListener.php │ │ ├── Message │ │ ├── DatabaseMessage.php │ │ └── DatabaseMessages.php │ │ ├── Notification.php │ │ ├── NotificationSender.php │ │ └── Traits │ │ ├── HasDatabaseNotifications.php │ │ ├── Notifiable.php │ │ └── RoutesNotifications.php ├── oauth2-server │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── databases │ │ └── 2025_07_15_044853_create_oauth_server.php │ ├── publish │ │ └── oauth2-server.php │ └── src │ │ ├── Command │ │ ├── ClearExpiredTokensCommand.php │ │ ├── CreateClientCommand.php │ │ ├── DeleteClientCommand.php │ │ ├── GenerateKeyPairCommand.php │ │ ├── ListClientsCommand.php │ │ └── UpdateClientCommand.php │ │ ├── ConfigProvider.php │ │ ├── Controller │ │ ├── AuthorizationController.php │ │ └── TokenController.php │ │ ├── Converter │ │ ├── ClientConverter.php │ │ ├── ClientConverterInterface.php │ │ ├── ScopeConverter.php │ │ └── ScopeConverterInterface.php │ │ ├── Entity │ │ ├── AccessToken.php │ │ ├── AuthCode.php │ │ ├── Client.php │ │ ├── DeviceCode.php │ │ ├── RefreshToken.php │ │ ├── Scope.php │ │ └── User.php │ │ ├── Enums │ │ ├── DeviceCodeStatus.php │ │ ├── EncryptionKeyType.php │ │ └── OAuth2Grants.php │ │ ├── Event │ │ ├── AuthorizationRequestResolveEvent.php │ │ ├── AuthorizationRequestResolveEventFactory.php │ │ ├── AuthorizationRequestResolveEventFactoryTrait.php │ │ ├── PreSaveClientEvent.php │ │ ├── ScopeResolveEvent.php │ │ ├── TokenRequestResolveEvent.php │ │ └── UserResolveEvent.php │ │ ├── Factory │ │ ├── AuthorizationServerFactory.php │ │ ├── ConfigFactory.php │ │ └── ResourceServerFactory.php │ │ ├── Interfaces │ │ ├── ConfigInterface.php │ │ └── SecurityInterface.php │ │ ├── Listener │ │ └── LeagueOAuth2ServerListener.php │ │ ├── Manager │ │ ├── AccessTokenManagerInterface.php │ │ ├── AuthorizationCodeManagerInterface.php │ │ ├── ClientFilter.php │ │ ├── ClientManagerInterface.php │ │ ├── DeviceCodeManagerInterface.php │ │ ├── EloquentORM │ │ │ ├── AccessTokenManager.php │ │ │ ├── AuthorizationCodeManager.php │ │ │ ├── ClientManager.php │ │ │ ├── DeviceCodeManager.php │ │ │ └── RefreshTokenManager.php │ │ ├── InMemory │ │ │ └── ScopeManager.php │ │ ├── RefreshTokenManagerInterface.php │ │ └── ScopeManagerInterface.php │ │ ├── Middleware │ │ └── ResourceServerMiddleware.php │ │ ├── Model │ │ ├── AccessToken.php │ │ ├── AccessTokenInterface.php │ │ ├── AuthorizationCode.php │ │ ├── AuthorizationCodeInterface.php │ │ ├── Casts │ │ │ ├── GrantsCast.php │ │ │ ├── RedirectsCast.php │ │ │ └── ScopesCast.php │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Device.php │ │ ├── DeviceCodeInterface.php │ │ ├── RefreshToken.php │ │ ├── RefreshTokenInterface.php │ │ └── UserInterface.php │ │ ├── Repository │ │ ├── AccessTokenRepository.php │ │ ├── AuthCodeRepository.php │ │ ├── ClientRepository.php │ │ ├── DeviceCodeRepository.php │ │ ├── RefreshTokenRepository.php │ │ ├── ScopeRepository.php │ │ └── UserRepository.php │ │ └── ValueObject │ │ ├── Grant.php │ │ ├── RedirectUri.php │ │ └── Scope.php ├── openai-client │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── openai.php │ └── src │ │ ├── ClientFactory.php │ │ ├── ConfigProvider.php │ │ ├── Exception │ │ └── ApiKeyIsMissing.php │ │ └── Facade │ │ └── OpenAI.php ├── pretty-console │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ConfigProvider.php │ │ ├── QuestionHelper.php │ │ ├── Traits │ │ └── Prettyable.php │ │ ├── View │ │ └── Components │ │ │ ├── Alert.php │ │ │ ├── Ask.php │ │ │ ├── AskWithCompletion.php │ │ │ ├── BulletList.php │ │ │ ├── Choice.php │ │ │ ├── Component.php │ │ │ ├── Confirm.php │ │ │ ├── Error.php │ │ │ ├── Factory.php │ │ │ ├── Info.php │ │ │ ├── Line.php │ │ │ ├── Mutators │ │ │ ├── EnsureDynamicContentIsHighlighted.php │ │ │ ├── EnsureNoPunctuation.php │ │ │ ├── EnsurePunctuation.php │ │ │ └── EnsureRelativePaths.php │ │ │ ├── Secret.php │ │ │ ├── Task.php │ │ │ ├── TwoColumnDetail.php │ │ │ └── Warn.php │ │ └── resources │ │ └── views │ │ └── components │ │ ├── alert.php │ │ ├── bullet-list.php │ │ ├── line.php │ │ └── two-column-detail.php ├── purifier │ ├── LICENSE │ ├── README.md │ ├── README_CN.md │ ├── composer.json │ ├── publish │ │ └── purifier.php │ └── src │ │ ├── Casts │ │ ├── CleanHtml.php │ │ ├── CleanHtmlInput.php │ │ ├── CleanHtmlOutput.php │ │ └── WithConfig.php │ │ ├── ConfigProvider.php │ │ ├── Functions.php │ │ └── Purifier.php ├── rate-limit │ ├── LICENSE │ ├── README.md │ ├── README_CN.md │ ├── composer.json │ └── src │ │ ├── Algorithm.php │ │ ├── Algorithm │ │ ├── FixedWindowRateLimiter.php │ │ ├── LeakyBucketRateLimiter.php │ │ ├── SlidingWindowRateLimiter.php │ │ └── TokenBucketRateLimiter.php │ │ ├── Annotation │ │ ├── AutoSort.php │ │ └── RateLimit.php │ │ ├── Aspect │ │ └── RateLimitAspect.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ └── RateLimiterInterface.php │ │ ├── Exception │ │ └── RateLimitException.php │ │ ├── Middleware │ │ └── RateLimitMiddleware.php │ │ ├── RateLimiterFactory.php │ │ └── Storage │ │ └── LuaScripts.php ├── recaptcha │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── recaptcha.php │ └── src │ │ ├── ConfigProvider.php │ │ ├── Listener │ │ └── ValidatorFactoryResolvedListener.php │ │ ├── Middleware │ │ └── ReCaptchaMiddleware.php │ │ └── ReCaptchaManager.php ├── redis-subscriber │ ├── LICENSE │ ├── README.md │ ├── README_CN.md │ ├── composer.json │ └── src │ │ ├── CommandBuilder.php │ │ ├── CommandInvoker.php │ │ ├── Connection.php │ │ ├── Constants.php │ │ ├── Exception │ │ ├── SocketException.php │ │ ├── SubscribeException.php │ │ └── UnsubscribeException.php │ │ ├── Message.php │ │ └── Subscriber.php ├── sentry │ ├── LICENSE │ ├── README.md │ ├── class_map │ │ └── SentrySdk.php │ ├── composer.json │ ├── publish │ │ └── sentry.php │ └── src │ │ ├── Annotation │ │ ├── Breadcrumb.php │ │ └── IgnoreException.php │ │ ├── Aspect │ │ ├── BreadcrumbAspect.php │ │ ├── CacheAspect.php │ │ ├── CoroutineAspect.php │ │ ├── FilesystemAspect.php │ │ ├── GuzzleHttpClientAspect.php │ │ ├── LoggerAspect.php │ │ ├── RedisAspect.php │ │ └── SingletonAspect.php │ │ ├── Command │ │ ├── AboutCommand.php │ │ └── TestCommand.php │ │ ├── ConfigProvider.php │ │ ├── Constants.php │ │ ├── Crons │ │ └── Listener │ │ │ └── EventHandleListener.php │ │ ├── Factory │ │ ├── ClientBuilderFactory.php │ │ └── HubFactory.php │ │ ├── Feature.php │ │ ├── Function.php │ │ ├── HttpClient │ │ ├── HttpClient.php │ │ └── HttpClientFactory.php │ │ ├── Integration.php │ │ ├── Integration │ │ ├── ExceptionContextIntegration.php │ │ ├── RequestFetcher.php │ │ ├── RequestIntegration.php │ │ └── TraceIntegration.php │ │ ├── Listener │ │ ├── EventHandleListener.php │ │ └── SetupSentryListener.php │ │ ├── Metrics │ │ ├── Annotation │ │ │ ├── Counter.php │ │ │ └── Histogram.php │ │ ├── Aspect │ │ │ ├── CounterAspect.php │ │ │ └── HistogramAspect.php │ │ ├── CoroutineServerStats.php │ │ ├── Event │ │ │ └── MetricFactoryReady.php │ │ ├── Listener │ │ │ ├── DBPoolWatcher.php │ │ │ ├── OnBeforeHandle.php │ │ │ ├── OnCoroutineServerStart.php │ │ │ ├── OnMetricFactoryReady.php │ │ │ ├── OnWorkerStart.php │ │ │ ├── PoolWatcher.php │ │ │ ├── QueueWatcher.php │ │ │ ├── RedisPoolWatcher.php │ │ │ └── RequestWatcher.php │ │ ├── Timer.php │ │ └── Traits │ │ │ └── MetricSetter.php │ │ ├── Monolog │ │ └── LogsHandler.php │ │ ├── SentryHandler.php │ │ ├── Switcher.php │ │ ├── Tracing │ │ ├── Annotation │ │ │ └── Trace.php │ │ ├── Aspect │ │ │ ├── AmqpProducerAspect.php │ │ │ ├── AsyncQueueJobMessageAspect.php │ │ │ ├── CacheAspect.php │ │ │ ├── CoordinatorAspect.php │ │ │ ├── CoroutineAspect.php │ │ │ ├── DbAspect.php │ │ │ ├── DbConnectionAspect.php │ │ │ ├── ElasticsearchAspect.php │ │ │ ├── ElasticsearchRequestAspect.php │ │ │ ├── FilesystemAspect.php │ │ │ ├── GrpcAspect.php │ │ │ ├── GuzzleHttpClientAspect.php │ │ │ ├── KafkaProducerAspect.php │ │ │ ├── RedisAspect.php │ │ │ ├── RedisConnectionAspect.php │ │ │ ├── RpcAspect.php │ │ │ ├── RpcEndpointAspect.php │ │ │ ├── TraceAnnotationAspect.php │ │ │ └── ViewRenderAspect.php │ │ ├── Listener │ │ │ └── EventHandleListener.php │ │ ├── SpanStarter.php │ │ ├── TagManager.php │ │ └── Tracer.php │ │ ├── Transport │ │ └── CoHttpTransport.php │ │ ├── Util │ │ ├── Carrier.php │ │ ├── CarrierPacker.php │ │ ├── CoContainer.php │ │ ├── CoroutineBacktraceHelper.php │ │ ├── RedisClusterKeySlot.php │ │ ├── RedisCommand.php │ │ ├── SafeCaller.php │ │ └── SqlParser.php │ │ └── Version.php ├── support │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AsyncQueue │ │ └── ClosureJob.php │ │ ├── Bus │ │ ├── PendingAmqpProducerMessageDispatch.php │ │ ├── PendingAsyncQueueDispatch.php │ │ └── PendingKafkaProducerMessageDispatch.php │ │ ├── CallQueuedClosure.php │ │ ├── ConfigProvider.php │ │ ├── ConfigurationUrlParser.php │ │ ├── Contract │ │ ├── Htmlable.php │ │ └── HubInterface.php │ │ ├── Env.php │ │ ├── Environment.php │ │ ├── Functions.php │ │ ├── HtmlString.php │ │ ├── Number.php │ │ ├── Once.php │ │ ├── Once │ │ ├── Backtrace.php │ │ └── Cache.php │ │ ├── Onceable.php │ │ ├── Pipeline │ │ └── Hub.php │ │ ├── RedisCommand.php │ │ ├── Sleep.php │ │ ├── Timebox.php │ │ ├── Traits │ │ └── ClosureParameterInjection.php │ │ └── UuidContainer.php ├── tcp-sender │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ConfigProvider.php │ │ ├── Exception │ │ ├── InvalidMethodException.php │ │ └── ServerException.php │ │ ├── PipeMessage.php │ │ └── Sender.php ├── telescope-elasticsearch │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ConfigProvider.php │ │ └── Storage │ │ ├── ElasticsearchEntriesRepository.php │ │ └── EntriesIndex.php ├── telescope │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── exception.jpg │ ├── grpc.jpg │ ├── migrations │ │ ├── 2020_08_03_064816_telescope_entries.php │ │ └── telescope.sql │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── mix-manifest.json │ │ └── telescope │ │ │ ├── app-dark.css │ │ │ ├── app.css │ │ │ ├── app.js │ │ │ └── favicon.ico │ ├── publish │ │ └── telescope.php │ ├── requests.jpg │ ├── resources │ │ ├── js │ │ │ ├── app.js │ │ │ ├── base.js │ │ │ ├── components │ │ │ │ ├── Alert.vue │ │ │ │ ├── CopyClipboard.vue │ │ │ │ ├── ExceptionCodePreview.vue │ │ │ │ ├── IndexScreen.vue │ │ │ │ ├── PreviewScreen.vue │ │ │ │ ├── RelatedEntries.vue │ │ │ │ └── Stacktrace.vue │ │ │ ├── mixins │ │ │ │ └── entriesStyles.js │ │ │ ├── routes.js │ │ │ └── screens │ │ │ │ ├── batches │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── cache │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── client-request │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── commands │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── dumps │ │ │ │ ├── index.vue │ │ │ │ └── sfdump.js │ │ │ │ ├── events │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── exceptions │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── gates │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── guzzle │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── jobs │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── logs │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── mail │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── models │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── monitoring │ │ │ │ └── index.vue │ │ │ │ ├── notifications │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── queries │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── redis │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── requests │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── schedule │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ ├── services │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ │ │ └── views │ │ │ │ ├── index.vue │ │ │ │ └── preview.vue │ │ ├── sass │ │ │ ├── _colors.scss │ │ │ ├── app-dark.scss │ │ │ ├── app.scss │ │ │ ├── base.scss │ │ │ └── syntaxhighlight.scss │ │ └── views │ │ │ ├── index.blade.php │ │ │ └── layout.blade.php │ ├── src │ │ ├── Aspect │ │ │ ├── CacheAspect.php │ │ │ ├── CoroutineAspect.php │ │ │ ├── EventAspect.php │ │ │ ├── GrpcClientAspect.php │ │ │ ├── GrpcCoreMiddlewareAspect.php │ │ │ ├── GuzzleHttpClientAspect.php │ │ │ ├── HttpClientAspect.php │ │ │ ├── LogAspect.php │ │ │ ├── RedisAspect.php │ │ │ ├── RequestDispatcherAspect.php │ │ │ └── RpcAspect.php │ │ ├── Avatar.php │ │ ├── Command │ │ │ ├── ClearCommand.php │ │ │ ├── InstallCommand.php │ │ │ └── PruneCommand.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ │ ├── CacheInterface.php │ │ │ ├── ClearableRepository.php │ │ │ ├── EntriesRepository.php │ │ │ ├── PrunableRepository.php │ │ │ └── TerminableRepository.php │ │ ├── Controller │ │ │ ├── CacheController.php │ │ │ ├── ClientRequestController.php │ │ │ ├── CommandsController.php │ │ │ ├── EntriesController.php │ │ │ ├── EntryController.php │ │ │ ├── EventsController.php │ │ │ ├── ExceptionsController.php │ │ │ ├── LogsController.php │ │ │ ├── QueriesController.php │ │ │ ├── RecordingController.php │ │ │ ├── RedisController.php │ │ │ ├── RequestsController.php │ │ │ ├── ScheduleController.php │ │ │ ├── ServicesController.php │ │ │ └── ViewController.php │ │ ├── EntryResult.php │ │ ├── EntryType.php │ │ ├── EntryUpdate.php │ │ ├── IncomingEntry.php │ │ ├── Listener │ │ │ ├── CommandListener.php │ │ │ ├── CronEventListener.php │ │ │ ├── DbQueryListener.php │ │ │ ├── ExceptionHandlerListener.php │ │ │ ├── FetchRecordingOnBootListener.php │ │ │ ├── RedisCommandExecutedListener.php │ │ │ ├── RegisterRoutesListener.php │ │ │ ├── RequestHandledListener.php │ │ │ ├── SetRequestLifecycleListener.php │ │ │ └── SetupTelescopeServerListener.php │ │ ├── Middleware │ │ │ ├── Authorize.php │ │ │ └── TelescopeMiddleware.php │ │ ├── Model │ │ │ ├── EntryModel.php │ │ │ └── EntryTagModel.php │ │ ├── PipeMessage.php │ │ ├── RecordMode.php │ │ ├── Server │ │ │ └── Server.php │ │ ├── Severity.php │ │ ├── Storage │ │ │ ├── DatabaseEntriesRepository.php │ │ │ ├── EntriesRepositoryFactory.php │ │ │ ├── EntryQueryOptions.php │ │ │ ├── Model │ │ │ │ ├── EntryModel.php │ │ │ │ ├── EntryTagModel.php │ │ │ │ └── Model.php │ │ │ └── NullEntriesRepository.php │ │ ├── SwitchManager.php │ │ ├── Telescope.php │ │ ├── TelescopeConfig.php │ │ └── TelescopeContext.php │ └── webpack.mix.js ├── tinker │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── tinker.php │ └── src │ │ ├── ClassAliasAutoloader.php │ │ ├── Command │ │ └── TinkerCommand.php │ │ ├── ConfigProvider.php │ │ └── TinkerCaster.php ├── trigger │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── trigger.php │ └── src │ │ ├── Annotation │ │ ├── Subscriber.php │ │ └── Trigger.php │ │ ├── Aspect │ │ └── BinaryDataReaderAspect.php │ │ ├── Command │ │ ├── ConsumeCommand.php │ │ ├── ServerMutexCommand.php │ │ ├── SubscribersCommand.php │ │ └── TriggersCommand.php │ │ ├── Config.php │ │ ├── ConfigProvider.php │ │ ├── ConstEventsNames.php │ │ ├── Consumer.php │ │ ├── ConsumerManager.php │ │ ├── Contract │ │ ├── LoggerInterface.php │ │ └── TriggerInterface.php │ │ ├── Event │ │ └── OnReplicationStop.php │ │ ├── EventDispatcher.php │ │ ├── Listener │ │ └── BindTriggerProcessesListener.php │ │ ├── Monitor │ │ └── HealthMonitor.php │ │ ├── Mutex │ │ ├── RedisServerMutex.php │ │ └── ServerMutexInterface.php │ │ ├── Snapshot │ │ ├── BinLogCurrentSnapshotInterface.php │ │ └── RedisBinLogCurrentSnapshot.php │ │ ├── Subscriber │ │ ├── AbstractSubscriber.php │ │ ├── SnapshotSubscriber.php │ │ └── TriggerSubscriber.php │ │ ├── SubscriberManager.php │ │ ├── Trigger │ │ └── AbstractTrigger.php │ │ ├── TriggerManager.php │ │ └── Util.php ├── validated-dto │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── publish │ │ └── dto.php │ └── src │ │ ├── Attributes │ │ ├── Cast.php │ │ ├── DefaultValue.php │ │ ├── Map.php │ │ └── Rules.php │ │ ├── Casting │ │ ├── ArrayCast.php │ │ ├── BooleanCast.php │ │ ├── CarbonCast.php │ │ ├── CarbonImmutableCast.php │ │ ├── Castable.php │ │ ├── CollectionCast.php │ │ ├── DTOCast.php │ │ ├── DoubleCast.php │ │ ├── EnumCast.php │ │ ├── FloatCast.php │ │ ├── IntegerCast.php │ │ ├── LongCast.php │ │ ├── ModelCast.php │ │ ├── ObjectCast.php │ │ └── StringCast.php │ │ ├── Command │ │ ├── ExportDTOCommand.php │ │ ├── MakeDTOCommand.php │ │ └── stubs │ │ │ └── dto.stub │ │ ├── Concerns │ │ ├── DataResolver.php │ │ ├── DataTransformer.php │ │ ├── EmptyCasts.php │ │ ├── EmptyDefaults.php │ │ ├── EmptyRules.php │ │ └── Wireable.php │ │ ├── ConfigProvider.php │ │ ├── Contract │ │ └── BaseDTO.php │ │ ├── Exception │ │ ├── CastException.php │ │ ├── CastTargetException.php │ │ ├── InvalidJsonException.php │ │ └── MissingCastTypeException.php │ │ ├── Exporter │ │ ├── AbstractExporter.php │ │ ├── ExporterInterface.php │ │ └── TypeScriptExporter.php │ │ ├── Functions.php │ │ ├── SimpleDTO.php │ │ └── ValidatedDTO.php └── web-tinker │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── dark.png │ └── light.png │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── app.css │ ├── app.js │ ├── github.css │ └── mix-manifest.json │ ├── publish │ └── web-tinker.php │ ├── resources │ ├── css │ │ ├── app.css │ │ ├── bootstrap.css │ │ └── components │ │ │ ├── codemirror.css │ │ │ ├── layout.css │ │ │ └── output.css │ ├── js │ │ ├── app.js │ │ └── components │ │ │ ├── Tinker.vue │ │ │ ├── TinkerInput.vue │ │ │ └── TinkerOutput.vue │ └── views │ │ └── web-tinker.blade.php │ ├── src │ ├── ConfigProvider.php │ ├── Console │ │ └── InstallCommand.php │ ├── Controller │ │ └── WebTinkerController.php │ ├── ExecutionClosure.php │ ├── Listener │ │ └── RegisterRoutesListener.php │ ├── Middleware │ │ └── Authorize.php │ ├── OutputModifiers │ │ ├── OutputModifier.php │ │ └── PrefixDateTime.php │ └── Tinker.php │ ├── tailwind.js │ ├── webpack.mix.js │ └── yarn.lock ├── tests ├── Cache │ └── RepositoryTest.php ├── CoPhpunit │ ├── AttributeOnClassTest.php │ └── AttributeOnMethodTest.php ├── Concerns │ └── InteractsWithContainer.php ├── ConfigConsul │ └── KVTest.php ├── Elasticsearch │ └── ClientFactoryTest.php ├── Encryption │ └── EncrypterTest.php ├── Facade │ └── FacadeTest.php ├── FastPaginate │ └── BuilderTest.php ├── Helpers │ └── HelpersTest.php ├── HttpClient │ ├── HttpClientTest.php │ └── fixtures │ │ └── test.txt ├── Lock │ ├── AbstractLockTest.php │ ├── AnnotationTest.php │ ├── CacheLockTest.php │ ├── CoroutineLockTest.php │ ├── DatabaseLockTest.php │ ├── FileSystemLockTest.php │ ├── FunctionsTest.php │ ├── LockFactoryTest.php │ ├── LockTimeoutExceptionTest.php │ ├── LuaScriptsTest.php │ └── RedisLockTest.php ├── Macros │ ├── ArrTest.php │ ├── CollectionTest.php │ ├── HtmlStringTest.php │ ├── HttpServerRequestTest.php │ ├── StrTest.php │ ├── StringableTest.php │ └── Stubs │ │ └── Common.php ├── Mail │ ├── AttachableTest.php │ ├── MailFailoverTransportTest.php │ ├── MailLogTransportTest.php │ ├── MailMailableAssertionsTest.php │ ├── MailMailableDataTest.php │ ├── MailMailerTest.php │ ├── MailManagerTest.php │ ├── MailMarkdownTest.php │ ├── MailMessageTest.php │ ├── MailableAlternativeSyntaxTest.php │ └── Stubs │ │ ├── 1.txt │ │ ├── 3.txt │ │ └── ContainerStub.php ├── Notification │ ├── EasySms │ │ └── NotificationSmsChannelTest.php │ ├── Mail │ │ ├── NotificationActionTest.php │ │ ├── NotificationMailMessageTest.php │ │ └── NotificationMessageTest.php │ ├── NotificationChannelManagerTest.php │ ├── NotificationDatabaseChannelTest.php │ ├── NotificationRoutesNotificationsTest.php │ ├── NotificationSenderTest.php │ ├── NotificationSymfonyChannelTest.php │ └── Stubs │ │ ├── DummyNotificationWithDatabaseVia.php │ │ ├── DummyNotificationWithEmptyStringVia.php │ │ ├── DummyNotificationWithMiddleware.php │ │ ├── DummyQueuedNotificationWithStringVia.php │ │ ├── ExtendedDatabaseChannel.php │ │ ├── NotifiableUser.php │ │ ├── NotificationDatabaseChannelCustomizeTypeTestNotification.php │ │ ├── NotificationDatabaseChannelTestNotification.php │ │ ├── RoutesNotificationsTestInstance.php │ │ └── TestNotificationMiddleware.php ├── Oauth2Server │ ├── Command │ │ ├── ClearExpiredTokensCommandTest.php │ │ ├── CreateClientCommandTest.php │ │ ├── DeleteClientCommandTest.php │ │ ├── GenerateKeyPairCommand.php │ │ ├── ListClientsCommandTest.php │ │ └── UpdateClientCommandTest.php │ └── InMemoryScopeManagerTest.php ├── Pest.php ├── RateLimit │ ├── AnnotationTest.php │ ├── LuaScriptsTest.php │ ├── MultipleAnnotationTest.php │ └── RateLimiterFactoryTest.php ├── RedisSubscriber │ ├── CommandBuilderTest.php │ └── SubscriberTest.php ├── Sentry │ ├── CarrierTest.php │ ├── FeatureTest.php │ └── SqlParseTest.php ├── Support │ ├── ConfigurationUrlParserTest.php │ ├── DispatchTest.php │ ├── EnvTest.php │ ├── EnvironmentTest.php │ ├── FunctionsTest.php │ ├── NumberTest.php │ ├── OnceTest.php │ ├── RedisCommandTest.php │ ├── SleepTest.php │ ├── Stub │ │ └── TestClass.php │ └── TimeboxTest.php ├── TcpSender │ └── SenderTest.php ├── Telescope │ └── TelescopeConfigTest.php ├── TestCase.php ├── Tinker │ └── TinkerCasterTest.php └── ValidatedDTO │ ├── Datasets │ ├── ArrayableObject.php │ ├── ArrayableObjectCast.php │ ├── ArrayableObjectDTO.php │ ├── AttributesDTO.php │ ├── CallableCastingDTOInstance.php │ ├── DummyBackedEnum.php │ ├── DummyEnum.php │ ├── LazyDTO.php │ ├── MapBeforeExportDTO.php │ ├── MapBeforeValidationDTO.php │ ├── MapDataDTO.php │ ├── MappedNameDTO.php │ ├── ModelCastInstance.php │ ├── ModelInstance.php │ ├── NameAfterDTO.php │ ├── NameDTO.php │ ├── NullableDTO.php │ ├── SimpleDTOInstance.php │ ├── SimpleInnerDTO.php │ ├── SimpleMapBeforeExportDTO.php │ ├── SimpleMapBeforeValidationDTO.php │ ├── SimpleMapDataDTO.php │ ├── SimpleMappedNameDTO.php │ ├── SimpleNameDTO.php │ ├── SimpleNullableDTO.php │ ├── SimpleOuterDTO.php │ ├── SimpleUserDTO.php │ ├── User.php │ ├── UserAttributesDTO.php │ ├── UserDTO.php │ ├── UserNestedCollectionDTO.php │ ├── UserNestedDTO.php │ ├── ValidatedDTOInstance.php │ ├── ValidatedEnumDTO.php │ ├── ValidatedFileDTO.php │ └── WireableDTO.php │ └── Unit │ ├── ArrayCastTest.php │ ├── AttributeCastTest.php │ ├── AttributesTest.php │ ├── BooleanCastTest.php │ ├── CallableCastTest.php │ ├── CarbonCastTest.php │ ├── CollectionCastTest.php │ ├── EnumCastTest.php │ ├── ExportDTOCommandTest.php │ ├── FloatCastTest.php │ ├── IntegerCastTest.php │ ├── LazyValidationTest.php │ ├── ModelCastTest.php │ ├── ObjectCastTest.php │ ├── SimpleDTOTest.php │ ├── StringCastTest.php │ ├── TypeScriptExporterTest.php │ ├── ValidatedDTOInstanceTest.php │ ├── ValidatedDTOTest.php │ └── WireableTest.php └── types ├── Cache ├── Facade.php ├── Manager.php └── Repository.php ├── Helpers └── Functions.php ├── Macros ├── Arr.php ├── Collection.php ├── LazyCollection.php ├── Request.php ├── Str.php └── Stringable.php ├── Sentry └── Sentry.php └── Support └── Support.php /.cnb/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.cnb/FUNDING.yml -------------------------------------------------------------------------------- /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: huangdijia 2 | custom: https://hdj.me/sponsors/ -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/cnb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/cnb.yaml -------------------------------------------------------------------------------- /.github/workflows/docs-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/docs-split.yaml -------------------------------------------------------------------------------- /.github/workflows/docs-translate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/docs-translate.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/split.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /.travis/setup.services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.travis/setup.services.sh -------------------------------------------------------------------------------- /.travis/setup.swoole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.travis/setup.swoole.sh -------------------------------------------------------------------------------- /.vscode/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.vscode/cspell.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/CHANGELOG-3.1.md -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/README_CN.md -------------------------------------------------------------------------------- /bin/composer-json-fixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/composer-json-fixer -------------------------------------------------------------------------------- /bin/doc-translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/doc-translate -------------------------------------------------------------------------------- /bin/doc-translate.github-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/doc-translate.github-model.js -------------------------------------------------------------------------------- /bin/doc-translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/doc-translate.js -------------------------------------------------------------------------------- /bin/generate-repository-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/generate-repository-doc.sh -------------------------------------------------------------------------------- /bin/git-delete-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/git-delete-branch.sh -------------------------------------------------------------------------------- /bin/pending-composer-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/pending-composer-json -------------------------------------------------------------------------------- /bin/pending-repositories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/pending-repositories.sh -------------------------------------------------------------------------------- /bin/regenerate-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/regenerate-readme.sh -------------------------------------------------------------------------------- /bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/release.sh -------------------------------------------------------------------------------- /bin/split-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/split-docs.sh -------------------------------------------------------------------------------- /bin/split-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/split-linux.sh -------------------------------------------------------------------------------- /bin/split-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/split-lite.sh -------------------------------------------------------------------------------- /bin/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/split.sh -------------------------------------------------------------------------------- /bin/splitsh-lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/splitsh-lite -------------------------------------------------------------------------------- /bin/splitsh-lite-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/bin/splitsh-lite-linux -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/composer.json -------------------------------------------------------------------------------- /context7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/context7.json -------------------------------------------------------------------------------- /docs/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/src/en/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/en/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/en/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/en/nav.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/en/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/en/sidebars.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-cn/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-cn/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-cn/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-cn/nav.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-cn/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-cn/sidebars.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-hk/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-hk/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-hk/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-hk/nav.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-hk/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-hk/sidebars.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-tw/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-tw/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-tw/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-tw/nav.ts -------------------------------------------------------------------------------- /docs/.vitepress/src/zh-tw/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/.vitepress/src/zh-tw/sidebars.ts -------------------------------------------------------------------------------- /docs/en/components/amqp-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/amqp-job.md -------------------------------------------------------------------------------- /docs/en/components/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/cache.md -------------------------------------------------------------------------------- /docs/en/components/co-phpunit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/co-phpunit.md -------------------------------------------------------------------------------- /docs/en/components/command-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/command-benchmark.md -------------------------------------------------------------------------------- /docs/en/components/command-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/command-signals.md -------------------------------------------------------------------------------- /docs/en/components/command-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/command-validation.md -------------------------------------------------------------------------------- /docs/en/components/compoships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/compoships.md -------------------------------------------------------------------------------- /docs/en/components/confd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/confd.md -------------------------------------------------------------------------------- /docs/en/components/config-consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/config-consul.md -------------------------------------------------------------------------------- /docs/en/components/console-spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/console-spinner.md -------------------------------------------------------------------------------- /docs/en/components/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/elasticsearch.md -------------------------------------------------------------------------------- /docs/en/components/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/encryption.md -------------------------------------------------------------------------------- /docs/en/components/exception-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/exception-event.md -------------------------------------------------------------------------------- /docs/en/components/facade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/facade.md -------------------------------------------------------------------------------- /docs/en/components/fast-paginate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/fast-paginate.md -------------------------------------------------------------------------------- /docs/en/components/grpc-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/grpc-validation.md -------------------------------------------------------------------------------- /docs/en/components/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/helpers.md -------------------------------------------------------------------------------- /docs/en/components/http-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/http-client.md -------------------------------------------------------------------------------- /docs/en/components/ide-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/ide-helper.md -------------------------------------------------------------------------------- /docs/en/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/index.md -------------------------------------------------------------------------------- /docs/en/components/ipc-broadcaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/ipc-broadcaster.md -------------------------------------------------------------------------------- /docs/en/components/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/lock.md -------------------------------------------------------------------------------- /docs/en/components/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/macros.md -------------------------------------------------------------------------------- /docs/en/components/mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/mail.md -------------------------------------------------------------------------------- /docs/en/components/model-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/model-factory.md -------------------------------------------------------------------------------- /docs/en/components/model-hashids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/model-hashids.md -------------------------------------------------------------------------------- /docs/en/components/model-morph-addon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/model-morph-addon.md -------------------------------------------------------------------------------- /docs/en/components/model-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/model-observer.md -------------------------------------------------------------------------------- /docs/en/components/model-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/model-scope.md -------------------------------------------------------------------------------- /docs/en/components/monolog-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/monolog-hook.md -------------------------------------------------------------------------------- /docs/en/components/mysql-grammar-addon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/mysql-grammar-addon.md -------------------------------------------------------------------------------- /docs/en/components/notification-easysms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/notification-easysms.md -------------------------------------------------------------------------------- /docs/en/components/notification-mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/notification-mail.md -------------------------------------------------------------------------------- /docs/en/components/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/notification.md -------------------------------------------------------------------------------- /docs/en/components/oauth2-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/oauth2-server.md -------------------------------------------------------------------------------- /docs/en/components/openai-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/openai-client.md -------------------------------------------------------------------------------- /docs/en/components/pretty-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/pretty-console.md -------------------------------------------------------------------------------- /docs/en/components/purifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/purifier.md -------------------------------------------------------------------------------- /docs/en/components/recaptcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/recaptcha.md -------------------------------------------------------------------------------- /docs/en/components/redis-subscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/redis-subscriber.md -------------------------------------------------------------------------------- /docs/en/components/sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/sentry.md -------------------------------------------------------------------------------- /docs/en/components/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/support.md -------------------------------------------------------------------------------- /docs/en/components/tcp-sender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/tcp-sender.md -------------------------------------------------------------------------------- /docs/en/components/telescope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/telescope.md -------------------------------------------------------------------------------- /docs/en/components/tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/tinker.md -------------------------------------------------------------------------------- /docs/en/components/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/trigger.md -------------------------------------------------------------------------------- /docs/en/components/validated-dto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/validated-dto.md -------------------------------------------------------------------------------- /docs/en/components/web-tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/components/web-tinker.md -------------------------------------------------------------------------------- /docs/en/faq/index.md: -------------------------------------------------------------------------------- 1 | # Frequently Asked Questions -------------------------------------------------------------------------------- /docs/en/guide/index.md: -------------------------------------------------------------------------------- 1 | # Getting Started -------------------------------------------------------------------------------- /docs/en/guide/introduce/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/guide/introduce/about.md -------------------------------------------------------------------------------- /docs/en/guide/start/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/guide/start/components.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/zh-cn/components/amqp-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/amqp-job.md -------------------------------------------------------------------------------- /docs/zh-cn/components/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/cache.md -------------------------------------------------------------------------------- /docs/zh-cn/components/co-phpunit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/co-phpunit.md -------------------------------------------------------------------------------- /docs/zh-cn/components/command-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/command-benchmark.md -------------------------------------------------------------------------------- /docs/zh-cn/components/command-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/command-signals.md -------------------------------------------------------------------------------- /docs/zh-cn/components/command-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/command-validation.md -------------------------------------------------------------------------------- /docs/zh-cn/components/compoships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/compoships.md -------------------------------------------------------------------------------- /docs/zh-cn/components/confd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/confd.md -------------------------------------------------------------------------------- /docs/zh-cn/components/config-consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/config-consul.md -------------------------------------------------------------------------------- /docs/zh-cn/components/console-spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/console-spinner.md -------------------------------------------------------------------------------- /docs/zh-cn/components/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/elasticsearch.md -------------------------------------------------------------------------------- /docs/zh-cn/components/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/encryption.md -------------------------------------------------------------------------------- /docs/zh-cn/components/exception-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/exception-event.md -------------------------------------------------------------------------------- /docs/zh-cn/components/facade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/facade.md -------------------------------------------------------------------------------- /docs/zh-cn/components/fast-paginate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/fast-paginate.md -------------------------------------------------------------------------------- /docs/zh-cn/components/grpc-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/grpc-validation.md -------------------------------------------------------------------------------- /docs/zh-cn/components/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/helpers.md -------------------------------------------------------------------------------- /docs/zh-cn/components/http-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/http-client.md -------------------------------------------------------------------------------- /docs/zh-cn/components/ide-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/ide-helper.md -------------------------------------------------------------------------------- /docs/zh-cn/components/index.md: -------------------------------------------------------------------------------- 1 | # 组件 2 | 3 | 👈 请看左边菜单,选择组件 4 | -------------------------------------------------------------------------------- /docs/zh-cn/components/ipc-broadcaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/ipc-broadcaster.md -------------------------------------------------------------------------------- /docs/zh-cn/components/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/lock.md -------------------------------------------------------------------------------- /docs/zh-cn/components/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/macros.md -------------------------------------------------------------------------------- /docs/zh-cn/components/mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/mail.md -------------------------------------------------------------------------------- /docs/zh-cn/components/model-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/model-factory.md -------------------------------------------------------------------------------- /docs/zh-cn/components/model-hashids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/model-hashids.md -------------------------------------------------------------------------------- /docs/zh-cn/components/model-morph-addon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/model-morph-addon.md -------------------------------------------------------------------------------- /docs/zh-cn/components/model-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/model-observer.md -------------------------------------------------------------------------------- /docs/zh-cn/components/model-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/model-scope.md -------------------------------------------------------------------------------- /docs/zh-cn/components/monolog-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/monolog-hook.md -------------------------------------------------------------------------------- /docs/zh-cn/components/notification-mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/notification-mail.md -------------------------------------------------------------------------------- /docs/zh-cn/components/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/notification.md -------------------------------------------------------------------------------- /docs/zh-cn/components/oauth2-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/oauth2-server.md -------------------------------------------------------------------------------- /docs/zh-cn/components/openai-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/openai-client.md -------------------------------------------------------------------------------- /docs/zh-cn/components/pretty-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/pretty-console.md -------------------------------------------------------------------------------- /docs/zh-cn/components/purifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/purifier.md -------------------------------------------------------------------------------- /docs/zh-cn/components/recaptcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/recaptcha.md -------------------------------------------------------------------------------- /docs/zh-cn/components/redis-subscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/redis-subscriber.md -------------------------------------------------------------------------------- /docs/zh-cn/components/sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/sentry.md -------------------------------------------------------------------------------- /docs/zh-cn/components/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/support.md -------------------------------------------------------------------------------- /docs/zh-cn/components/tcp-sender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/tcp-sender.md -------------------------------------------------------------------------------- /docs/zh-cn/components/telescope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/telescope.md -------------------------------------------------------------------------------- /docs/zh-cn/components/tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/tinker.md -------------------------------------------------------------------------------- /docs/zh-cn/components/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/trigger.md -------------------------------------------------------------------------------- /docs/zh-cn/components/validated-dto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/validated-dto.md -------------------------------------------------------------------------------- /docs/zh-cn/components/web-tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/components/web-tinker.md -------------------------------------------------------------------------------- /docs/zh-cn/faq/index.md: -------------------------------------------------------------------------------- 1 | # 常见问题 2 | -------------------------------------------------------------------------------- /docs/zh-cn/guide/index.md: -------------------------------------------------------------------------------- 1 | # 入门 2 | -------------------------------------------------------------------------------- /docs/zh-cn/guide/introduce/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/guide/introduce/about.md -------------------------------------------------------------------------------- /docs/zh-cn/guide/start/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/guide/start/components.md -------------------------------------------------------------------------------- /docs/zh-cn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-cn/index.md -------------------------------------------------------------------------------- /docs/zh-hk/components/amqp-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/amqp-job.md -------------------------------------------------------------------------------- /docs/zh-hk/components/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/cache.md -------------------------------------------------------------------------------- /docs/zh-hk/components/co-phpunit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/co-phpunit.md -------------------------------------------------------------------------------- /docs/zh-hk/components/command-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/command-benchmark.md -------------------------------------------------------------------------------- /docs/zh-hk/components/command-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/command-signals.md -------------------------------------------------------------------------------- /docs/zh-hk/components/command-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/command-validation.md -------------------------------------------------------------------------------- /docs/zh-hk/components/compoships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/compoships.md -------------------------------------------------------------------------------- /docs/zh-hk/components/confd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/confd.md -------------------------------------------------------------------------------- /docs/zh-hk/components/config-consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/config-consul.md -------------------------------------------------------------------------------- /docs/zh-hk/components/console-spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/console-spinner.md -------------------------------------------------------------------------------- /docs/zh-hk/components/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/elasticsearch.md -------------------------------------------------------------------------------- /docs/zh-hk/components/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/encryption.md -------------------------------------------------------------------------------- /docs/zh-hk/components/exception-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/exception-event.md -------------------------------------------------------------------------------- /docs/zh-hk/components/facade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/facade.md -------------------------------------------------------------------------------- /docs/zh-hk/components/fast-paginate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/fast-paginate.md -------------------------------------------------------------------------------- /docs/zh-hk/components/grpc-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/grpc-validation.md -------------------------------------------------------------------------------- /docs/zh-hk/components/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/helpers.md -------------------------------------------------------------------------------- /docs/zh-hk/components/http-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/http-client.md -------------------------------------------------------------------------------- /docs/zh-hk/components/ide-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/ide-helper.md -------------------------------------------------------------------------------- /docs/zh-hk/components/index.md: -------------------------------------------------------------------------------- 1 | # 組件 2 | 3 | 👈 請看左邊菜單,選擇組件 4 | -------------------------------------------------------------------------------- /docs/zh-hk/components/ipc-broadcaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/ipc-broadcaster.md -------------------------------------------------------------------------------- /docs/zh-hk/components/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/lock.md -------------------------------------------------------------------------------- /docs/zh-hk/components/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/macros.md -------------------------------------------------------------------------------- /docs/zh-hk/components/mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/mail.md -------------------------------------------------------------------------------- /docs/zh-hk/components/model-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/model-factory.md -------------------------------------------------------------------------------- /docs/zh-hk/components/model-hashids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/model-hashids.md -------------------------------------------------------------------------------- /docs/zh-hk/components/model-morph-addon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/model-morph-addon.md -------------------------------------------------------------------------------- /docs/zh-hk/components/model-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/model-observer.md -------------------------------------------------------------------------------- /docs/zh-hk/components/model-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/model-scope.md -------------------------------------------------------------------------------- /docs/zh-hk/components/monolog-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/monolog-hook.md -------------------------------------------------------------------------------- /docs/zh-hk/components/notification-mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/notification-mail.md -------------------------------------------------------------------------------- /docs/zh-hk/components/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/notification.md -------------------------------------------------------------------------------- /docs/zh-hk/components/oauth2-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/oauth2-server.md -------------------------------------------------------------------------------- /docs/zh-hk/components/openai-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/openai-client.md -------------------------------------------------------------------------------- /docs/zh-hk/components/pretty-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/pretty-console.md -------------------------------------------------------------------------------- /docs/zh-hk/components/purifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/purifier.md -------------------------------------------------------------------------------- /docs/zh-hk/components/recaptcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/recaptcha.md -------------------------------------------------------------------------------- /docs/zh-hk/components/redis-subscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/redis-subscriber.md -------------------------------------------------------------------------------- /docs/zh-hk/components/sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/sentry.md -------------------------------------------------------------------------------- /docs/zh-hk/components/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/support.md -------------------------------------------------------------------------------- /docs/zh-hk/components/tcp-sender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/tcp-sender.md -------------------------------------------------------------------------------- /docs/zh-hk/components/telescope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/telescope.md -------------------------------------------------------------------------------- /docs/zh-hk/components/tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/tinker.md -------------------------------------------------------------------------------- /docs/zh-hk/components/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/trigger.md -------------------------------------------------------------------------------- /docs/zh-hk/components/validated-dto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/validated-dto.md -------------------------------------------------------------------------------- /docs/zh-hk/components/web-tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/components/web-tinker.md -------------------------------------------------------------------------------- /docs/zh-hk/faq/index.md: -------------------------------------------------------------------------------- 1 | # 常見問題 2 | -------------------------------------------------------------------------------- /docs/zh-hk/guide/index.md: -------------------------------------------------------------------------------- 1 | # 入門 2 | -------------------------------------------------------------------------------- /docs/zh-hk/guide/introduce/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/guide/introduce/about.md -------------------------------------------------------------------------------- /docs/zh-hk/guide/start/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/guide/start/components.md -------------------------------------------------------------------------------- /docs/zh-hk/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-hk/index.md -------------------------------------------------------------------------------- /docs/zh-tw/components/amqp-job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/amqp-job.md -------------------------------------------------------------------------------- /docs/zh-tw/components/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/cache.md -------------------------------------------------------------------------------- /docs/zh-tw/components/co-phpunit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/co-phpunit.md -------------------------------------------------------------------------------- /docs/zh-tw/components/command-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/command-benchmark.md -------------------------------------------------------------------------------- /docs/zh-tw/components/command-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/command-signals.md -------------------------------------------------------------------------------- /docs/zh-tw/components/command-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/command-validation.md -------------------------------------------------------------------------------- /docs/zh-tw/components/compoships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/compoships.md -------------------------------------------------------------------------------- /docs/zh-tw/components/confd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/confd.md -------------------------------------------------------------------------------- /docs/zh-tw/components/config-consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/config-consul.md -------------------------------------------------------------------------------- /docs/zh-tw/components/console-spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/console-spinner.md -------------------------------------------------------------------------------- /docs/zh-tw/components/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/elasticsearch.md -------------------------------------------------------------------------------- /docs/zh-tw/components/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/encryption.md -------------------------------------------------------------------------------- /docs/zh-tw/components/exception-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/exception-event.md -------------------------------------------------------------------------------- /docs/zh-tw/components/facade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/facade.md -------------------------------------------------------------------------------- /docs/zh-tw/components/fast-paginate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/fast-paginate.md -------------------------------------------------------------------------------- /docs/zh-tw/components/grpc-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/grpc-validation.md -------------------------------------------------------------------------------- /docs/zh-tw/components/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/helpers.md -------------------------------------------------------------------------------- /docs/zh-tw/components/http-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/http-client.md -------------------------------------------------------------------------------- /docs/zh-tw/components/ide-helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/ide-helper.md -------------------------------------------------------------------------------- /docs/zh-tw/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/index.md -------------------------------------------------------------------------------- /docs/zh-tw/components/ipc-broadcaster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/ipc-broadcaster.md -------------------------------------------------------------------------------- /docs/zh-tw/components/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/lock.md -------------------------------------------------------------------------------- /docs/zh-tw/components/macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/macros.md -------------------------------------------------------------------------------- /docs/zh-tw/components/mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/mail.md -------------------------------------------------------------------------------- /docs/zh-tw/components/model-factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/model-factory.md -------------------------------------------------------------------------------- /docs/zh-tw/components/model-hashids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/model-hashids.md -------------------------------------------------------------------------------- /docs/zh-tw/components/model-morph-addon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/model-morph-addon.md -------------------------------------------------------------------------------- /docs/zh-tw/components/model-observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/model-observer.md -------------------------------------------------------------------------------- /docs/zh-tw/components/model-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/model-scope.md -------------------------------------------------------------------------------- /docs/zh-tw/components/monolog-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/monolog-hook.md -------------------------------------------------------------------------------- /docs/zh-tw/components/notification-mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/notification-mail.md -------------------------------------------------------------------------------- /docs/zh-tw/components/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/notification.md -------------------------------------------------------------------------------- /docs/zh-tw/components/oauth2-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/oauth2-server.md -------------------------------------------------------------------------------- /docs/zh-tw/components/openai-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/openai-client.md -------------------------------------------------------------------------------- /docs/zh-tw/components/pretty-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/pretty-console.md -------------------------------------------------------------------------------- /docs/zh-tw/components/purifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/purifier.md -------------------------------------------------------------------------------- /docs/zh-tw/components/recaptcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/recaptcha.md -------------------------------------------------------------------------------- /docs/zh-tw/components/redis-subscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/redis-subscriber.md -------------------------------------------------------------------------------- /docs/zh-tw/components/sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/sentry.md -------------------------------------------------------------------------------- /docs/zh-tw/components/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/support.md -------------------------------------------------------------------------------- /docs/zh-tw/components/tcp-sender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/tcp-sender.md -------------------------------------------------------------------------------- /docs/zh-tw/components/telescope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/telescope.md -------------------------------------------------------------------------------- /docs/zh-tw/components/tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/tinker.md -------------------------------------------------------------------------------- /docs/zh-tw/components/trigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/trigger.md -------------------------------------------------------------------------------- /docs/zh-tw/components/validated-dto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/validated-dto.md -------------------------------------------------------------------------------- /docs/zh-tw/components/web-tinker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/components/web-tinker.md -------------------------------------------------------------------------------- /docs/zh-tw/faq/index.md: -------------------------------------------------------------------------------- 1 | # 常見問題 2 | -------------------------------------------------------------------------------- /docs/zh-tw/guide/index.md: -------------------------------------------------------------------------------- 1 | # 入門 2 | -------------------------------------------------------------------------------- /docs/zh-tw/guide/introduce/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/guide/introduce/about.md -------------------------------------------------------------------------------- /docs/zh-tw/guide/start/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/guide/start/components.md -------------------------------------------------------------------------------- /docs/zh-tw/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/docs/zh-tw/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/package.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpstan.types.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/phpstan.types.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/.github/.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/.github/.github/workflows/release.yaml -------------------------------------------------------------------------------- /src/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: huangdijia 2 | custom: https://hdj.me/sponsors/ -------------------------------------------------------------------------------- /src/.github/README.md: -------------------------------------------------------------------------------- 1 | # .github 2 | -------------------------------------------------------------------------------- /src/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/.github/SECURITY.md -------------------------------------------------------------------------------- /src/.github/profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/.github/profile/README.md -------------------------------------------------------------------------------- /src/amqp-job/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/LICENSE -------------------------------------------------------------------------------- /src/amqp-job/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/README.md -------------------------------------------------------------------------------- /src/amqp-job/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/composer.json -------------------------------------------------------------------------------- /src/amqp-job/src/Annotation/AmqpJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Annotation/AmqpJob.php -------------------------------------------------------------------------------- /src/amqp-job/src/Attempt/RedisAttempt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Attempt/RedisAttempt.php -------------------------------------------------------------------------------- /src/amqp-job/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/amqp-job/src/Contract/Attempt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Contract/Attempt.php -------------------------------------------------------------------------------- /src/amqp-job/src/Contract/JobInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Contract/JobInterface.php -------------------------------------------------------------------------------- /src/amqp-job/src/Contract/Packer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Contract/Packer.php -------------------------------------------------------------------------------- /src/amqp-job/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Functions.php -------------------------------------------------------------------------------- /src/amqp-job/src/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/Job.php -------------------------------------------------------------------------------- /src/amqp-job/src/JobConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/JobConsumer.php -------------------------------------------------------------------------------- /src/amqp-job/src/JobConsumerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/JobConsumerManager.php -------------------------------------------------------------------------------- /src/amqp-job/src/JobMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/JobMessage.php -------------------------------------------------------------------------------- /src/amqp-job/src/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/amqp-job/src/LoggerInterface.php -------------------------------------------------------------------------------- /src/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/LICENSE -------------------------------------------------------------------------------- /src/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/README.md -------------------------------------------------------------------------------- /src/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/composer.json -------------------------------------------------------------------------------- /src/cache/src/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/CacheInterface.php -------------------------------------------------------------------------------- /src/cache/src/CacheManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/CacheManager.php -------------------------------------------------------------------------------- /src/cache/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/cache/src/Contract/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Contract/CacheInterface.php -------------------------------------------------------------------------------- /src/cache/src/Contract/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Contract/Factory.php -------------------------------------------------------------------------------- /src/cache/src/Contract/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Contract/Repository.php -------------------------------------------------------------------------------- /src/cache/src/Event/CacheEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/CacheEvent.php -------------------------------------------------------------------------------- /src/cache/src/Event/CacheFlushed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/CacheFlushed.php -------------------------------------------------------------------------------- /src/cache/src/Event/CacheFlushing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/CacheFlushing.php -------------------------------------------------------------------------------- /src/cache/src/Event/CacheHit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/CacheHit.php -------------------------------------------------------------------------------- /src/cache/src/Event/CacheMissed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/CacheMissed.php -------------------------------------------------------------------------------- /src/cache/src/Event/ForgettingKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/ForgettingKey.php -------------------------------------------------------------------------------- /src/cache/src/Event/KeyForgetFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/KeyForgetFailed.php -------------------------------------------------------------------------------- /src/cache/src/Event/KeyForgotten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/KeyForgotten.php -------------------------------------------------------------------------------- /src/cache/src/Event/KeyWriteFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/KeyWriteFailed.php -------------------------------------------------------------------------------- /src/cache/src/Event/KeyWritten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/KeyWritten.php -------------------------------------------------------------------------------- /src/cache/src/Event/RetrievingKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/RetrievingKey.php -------------------------------------------------------------------------------- /src/cache/src/Event/RetrievingManyKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/RetrievingManyKeys.php -------------------------------------------------------------------------------- /src/cache/src/Event/WritingKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/WritingKey.php -------------------------------------------------------------------------------- /src/cache/src/Event/WritingManyKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Event/WritingManyKeys.php -------------------------------------------------------------------------------- /src/cache/src/Facade/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Facade/Cache.php -------------------------------------------------------------------------------- /src/cache/src/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/Repository.php -------------------------------------------------------------------------------- /src/cache/src/RepositoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/cache/src/RepositoryFactory.php -------------------------------------------------------------------------------- /src/co-phpunit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/co-phpunit/LICENSE -------------------------------------------------------------------------------- /src/co-phpunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/co-phpunit/README.md -------------------------------------------------------------------------------- /src/co-phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/co-phpunit/composer.json -------------------------------------------------------------------------------- /src/co-phpunit/phpunit-patch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/co-phpunit/phpunit-patch.php -------------------------------------------------------------------------------- /src/command-benchmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-benchmark/LICENSE -------------------------------------------------------------------------------- /src/command-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-benchmark/README.md -------------------------------------------------------------------------------- /src/command-benchmark/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-benchmark/composer.json -------------------------------------------------------------------------------- /src/command-signals/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-signals/LICENSE -------------------------------------------------------------------------------- /src/command-signals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-signals/README.md -------------------------------------------------------------------------------- /src/command-signals/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-signals/composer.json -------------------------------------------------------------------------------- /src/command-signals/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-signals/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/command-signals/src/SignalRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-signals/src/SignalRegistry.php -------------------------------------------------------------------------------- /src/command-validation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-validation/LICENSE -------------------------------------------------------------------------------- /src/command-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-validation/README.md -------------------------------------------------------------------------------- /src/command-validation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/command-validation/composer.json -------------------------------------------------------------------------------- /src/compoships/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/compoships/LICENSE -------------------------------------------------------------------------------- /src/compoships/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/compoships/README.md -------------------------------------------------------------------------------- /src/compoships/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/compoships/composer.json -------------------------------------------------------------------------------- /src/compoships/src/Compoships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/compoships/src/Compoships.php -------------------------------------------------------------------------------- /src/compoships/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/compoships/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/confd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/LICENSE -------------------------------------------------------------------------------- /src/confd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/README.md -------------------------------------------------------------------------------- /src/confd/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/composer.json -------------------------------------------------------------------------------- /src/confd/publish/confd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/publish/confd.php -------------------------------------------------------------------------------- /src/confd/src/Command/EnvCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Command/EnvCommand.php -------------------------------------------------------------------------------- /src/confd/src/Confd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Confd.php -------------------------------------------------------------------------------- /src/confd/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/confd/src/Contract/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Contract/LoggerInterface.php -------------------------------------------------------------------------------- /src/confd/src/Driver/DriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Driver/DriverInterface.php -------------------------------------------------------------------------------- /src/confd/src/Driver/Etcd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Driver/Etcd.php -------------------------------------------------------------------------------- /src/confd/src/Driver/EtcdClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Driver/EtcdClient.php -------------------------------------------------------------------------------- /src/confd/src/Driver/Nacos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Driver/Nacos.php -------------------------------------------------------------------------------- /src/confd/src/Driver/NacosClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Driver/NacosClient.php -------------------------------------------------------------------------------- /src/confd/src/Driver/Noop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Driver/Noop.php -------------------------------------------------------------------------------- /src/confd/src/Event/ConfigChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Event/ConfigChanged.php -------------------------------------------------------------------------------- /src/confd/src/Event/WatchDispatched.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Event/WatchDispatched.php -------------------------------------------------------------------------------- /src/confd/src/Traits/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Traits/Logger.php -------------------------------------------------------------------------------- /src/confd/src/Writer/EnvWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Writer/EnvWriter.php -------------------------------------------------------------------------------- /src/confd/src/Writer/WriterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/confd/src/Writer/WriterInterface.php -------------------------------------------------------------------------------- /src/config-consul/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/LICENSE -------------------------------------------------------------------------------- /src/config-consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/README.md -------------------------------------------------------------------------------- /src/config-consul/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/composer.json -------------------------------------------------------------------------------- /src/config-consul/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/src/Client.php -------------------------------------------------------------------------------- /src/config-consul/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/config-consul/src/ConsulDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/src/ConsulDriver.php -------------------------------------------------------------------------------- /src/config-consul/src/KV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/config-consul/src/KV.php -------------------------------------------------------------------------------- /src/console-spinner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/console-spinner/LICENSE -------------------------------------------------------------------------------- /src/console-spinner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/console-spinner/README.md -------------------------------------------------------------------------------- /src/console-spinner/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/console-spinner/composer.json -------------------------------------------------------------------------------- /src/console-spinner/src/Spinner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/console-spinner/src/Spinner.php -------------------------------------------------------------------------------- /src/elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/elasticsearch/LICENSE -------------------------------------------------------------------------------- /src/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/elasticsearch/README.md -------------------------------------------------------------------------------- /src/elasticsearch/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/elasticsearch/composer.json -------------------------------------------------------------------------------- /src/elasticsearch/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/elasticsearch/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/encryption/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/LICENSE -------------------------------------------------------------------------------- /src/encryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/README.md -------------------------------------------------------------------------------- /src/encryption/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/composer.json -------------------------------------------------------------------------------- /src/encryption/publish/encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/publish/encryption.php -------------------------------------------------------------------------------- /src/encryption/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/encryption/src/Encrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/src/Encrypter.php -------------------------------------------------------------------------------- /src/encryption/src/EncrypterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/src/EncrypterFactory.php -------------------------------------------------------------------------------- /src/encryption/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/src/Functions.php -------------------------------------------------------------------------------- /src/encryption/src/KeyParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/encryption/src/KeyParser.php -------------------------------------------------------------------------------- /src/exception-event/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/exception-event/LICENSE -------------------------------------------------------------------------------- /src/exception-event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/exception-event/README.md -------------------------------------------------------------------------------- /src/exception-event/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/exception-event/composer.json -------------------------------------------------------------------------------- /src/exception-event/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/exception-event/src/Functions.php -------------------------------------------------------------------------------- /src/facade/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/LICENSE -------------------------------------------------------------------------------- /src/facade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/README.md -------------------------------------------------------------------------------- /src/facade/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/composer.json -------------------------------------------------------------------------------- /src/facade/src/AMQP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/AMQP.php -------------------------------------------------------------------------------- /src/facade/src/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/App.php -------------------------------------------------------------------------------- /src/facade/src/AsyncQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/AsyncQueue.php -------------------------------------------------------------------------------- /src/facade/src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Cache.php -------------------------------------------------------------------------------- /src/facade/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Config.php -------------------------------------------------------------------------------- /src/facade/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/facade/src/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Cookie.php -------------------------------------------------------------------------------- /src/facade/src/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Crypt.php -------------------------------------------------------------------------------- /src/facade/src/DI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/DI.php -------------------------------------------------------------------------------- /src/facade/src/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Event.php -------------------------------------------------------------------------------- /src/facade/src/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Facade.php -------------------------------------------------------------------------------- /src/facade/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/File.php -------------------------------------------------------------------------------- /src/facade/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Filesystem.php -------------------------------------------------------------------------------- /src/facade/src/Kafka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Kafka.php -------------------------------------------------------------------------------- /src/facade/src/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Log.php -------------------------------------------------------------------------------- /src/facade/src/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Pipeline.php -------------------------------------------------------------------------------- /src/facade/src/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Redis.php -------------------------------------------------------------------------------- /src/facade/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Request.php -------------------------------------------------------------------------------- /src/facade/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Response.php -------------------------------------------------------------------------------- /src/facade/src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Session.php -------------------------------------------------------------------------------- /src/facade/src/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Translator.php -------------------------------------------------------------------------------- /src/facade/src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/Validator.php -------------------------------------------------------------------------------- /src/facade/src/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/facade/src/View.php -------------------------------------------------------------------------------- /src/fast-paginate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/LICENSE -------------------------------------------------------------------------------- /src/fast-paginate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/README.md -------------------------------------------------------------------------------- /src/fast-paginate/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/composer.json -------------------------------------------------------------------------------- /src/fast-paginate/src/BuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/src/BuilderMixin.php -------------------------------------------------------------------------------- /src/fast-paginate/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/fast-paginate/src/FastPaginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/src/FastPaginate.php -------------------------------------------------------------------------------- /src/fast-paginate/src/RelationMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/src/RelationMixin.php -------------------------------------------------------------------------------- /src/fast-paginate/src/ScoutMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/fast-paginate/src/ScoutMixin.php -------------------------------------------------------------------------------- /src/grpc-validation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/grpc-validation/LICENSE -------------------------------------------------------------------------------- /src/grpc-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/grpc-validation/README.md -------------------------------------------------------------------------------- /src/grpc-validation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/grpc-validation/composer.json -------------------------------------------------------------------------------- /src/helpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/helpers/LICENSE -------------------------------------------------------------------------------- /src/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/helpers/README.md -------------------------------------------------------------------------------- /src/helpers/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/helpers/composer.json -------------------------------------------------------------------------------- /src/helpers/src/Command/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/helpers/src/Command/Functions.php -------------------------------------------------------------------------------- /src/helpers/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/helpers/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/helpers/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/helpers/src/Functions.php -------------------------------------------------------------------------------- /src/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/LICENSE -------------------------------------------------------------------------------- /src/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/README.md -------------------------------------------------------------------------------- /src/http-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/composer.json -------------------------------------------------------------------------------- /src/http-client/src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/Factory.php -------------------------------------------------------------------------------- /src/http-client/src/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/Http.php -------------------------------------------------------------------------------- /src/http-client/src/PendingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/PendingRequest.php -------------------------------------------------------------------------------- /src/http-client/src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/Pool.php -------------------------------------------------------------------------------- /src/http-client/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/Request.php -------------------------------------------------------------------------------- /src/http-client/src/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/RequestException.php -------------------------------------------------------------------------------- /src/http-client/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/Response.php -------------------------------------------------------------------------------- /src/http-client/src/ResponseSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/http-client/src/ResponseSequence.php -------------------------------------------------------------------------------- /src/ide-helper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/LICENSE -------------------------------------------------------------------------------- /src/ide-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/README.md -------------------------------------------------------------------------------- /src/ide-helper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/composer.json -------------------------------------------------------------------------------- /src/ide-helper/src/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/src/Alias.php -------------------------------------------------------------------------------- /src/ide-helper/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/ide-helper/src/Eloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/src/Eloquent.php -------------------------------------------------------------------------------- /src/ide-helper/src/Macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/src/Macro.php -------------------------------------------------------------------------------- /src/ide-helper/src/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ide-helper/src/Method.php -------------------------------------------------------------------------------- /src/ipc-broadcaster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ipc-broadcaster/LICENSE -------------------------------------------------------------------------------- /src/ipc-broadcaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ipc-broadcaster/README.md -------------------------------------------------------------------------------- /src/ipc-broadcaster/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ipc-broadcaster/composer.json -------------------------------------------------------------------------------- /src/ipc-broadcaster/src/Constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ipc-broadcaster/src/Constant.php -------------------------------------------------------------------------------- /src/ipc-broadcaster/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ipc-broadcaster/src/Functions.php -------------------------------------------------------------------------------- /src/ipc-broadcaster/src/IpcMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/ipc-broadcaster/src/IpcMessage.php -------------------------------------------------------------------------------- /src/lock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/LICENSE -------------------------------------------------------------------------------- /src/lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/README.md -------------------------------------------------------------------------------- /src/lock/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/README_CN.md -------------------------------------------------------------------------------- /src/lock/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/composer.json -------------------------------------------------------------------------------- /src/lock/publish/lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/publish/lock.php -------------------------------------------------------------------------------- /src/lock/src/Annotation/Blockable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Annotation/Blockable.php -------------------------------------------------------------------------------- /src/lock/src/Annotation/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Annotation/Lock.php -------------------------------------------------------------------------------- /src/lock/src/Annotation/LockAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Annotation/LockAspect.php -------------------------------------------------------------------------------- /src/lock/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/lock/src/Driver/AbstractLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/AbstractLock.php -------------------------------------------------------------------------------- /src/lock/src/Driver/CacheLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/CacheLock.php -------------------------------------------------------------------------------- /src/lock/src/Driver/CoroutineLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/CoroutineLock.php -------------------------------------------------------------------------------- /src/lock/src/Driver/DatabaseLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/DatabaseLock.php -------------------------------------------------------------------------------- /src/lock/src/Driver/FileSystemLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/FileSystemLock.php -------------------------------------------------------------------------------- /src/lock/src/Driver/LockInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/LockInterface.php -------------------------------------------------------------------------------- /src/lock/src/Driver/LuaScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/LuaScripts.php -------------------------------------------------------------------------------- /src/lock/src/Driver/RedisLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Driver/RedisLock.php -------------------------------------------------------------------------------- /src/lock/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/Functions.php -------------------------------------------------------------------------------- /src/lock/src/LockFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/lock/src/LockFactory.php -------------------------------------------------------------------------------- /src/macros/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/LICENSE -------------------------------------------------------------------------------- /src/macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/README.md -------------------------------------------------------------------------------- /src/macros/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/composer.json -------------------------------------------------------------------------------- /src/macros/src/ArrMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/ArrMixin.php -------------------------------------------------------------------------------- /src/macros/src/CollectionMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/CollectionMixin.php -------------------------------------------------------------------------------- /src/macros/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/macros/src/LazyCollectionMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/LazyCollectionMixin.php -------------------------------------------------------------------------------- /src/macros/src/RequestMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/RequestMixin.php -------------------------------------------------------------------------------- /src/macros/src/StrMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/StrMixin.php -------------------------------------------------------------------------------- /src/macros/src/StringableMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/macros/src/StringableMixin.php -------------------------------------------------------------------------------- /src/mail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/LICENSE -------------------------------------------------------------------------------- /src/mail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/README.md -------------------------------------------------------------------------------- /src/mail/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/composer.json -------------------------------------------------------------------------------- /src/mail/publish/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/publish/mail.php -------------------------------------------------------------------------------- /src/mail/publish/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/mail/publish/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/mail/publish/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/mail/publish/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/mail/src/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Attachment.php -------------------------------------------------------------------------------- /src/mail/src/Command/MailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Command/MailCommand.php -------------------------------------------------------------------------------- /src/mail/src/Command/stubs/mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Command/stubs/mail.stub -------------------------------------------------------------------------------- /src/mail/src/Command/stubs/markdown.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Command/stubs/markdown.stub -------------------------------------------------------------------------------- /src/mail/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/mail/src/Contract/Attachable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Contract/Attachable.php -------------------------------------------------------------------------------- /src/mail/src/Contract/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Contract/Factory.php -------------------------------------------------------------------------------- /src/mail/src/Contract/Mailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Contract/Mailable.php -------------------------------------------------------------------------------- /src/mail/src/Contract/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Contract/Mailer.php -------------------------------------------------------------------------------- /src/mail/src/Event/MessageSending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Event/MessageSending.php -------------------------------------------------------------------------------- /src/mail/src/Event/MessageSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Event/MessageSent.php -------------------------------------------------------------------------------- /src/mail/src/Facade/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Facade/Mail.php -------------------------------------------------------------------------------- /src/mail/src/Factory/MailerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Factory/MailerFactory.php -------------------------------------------------------------------------------- /src/mail/src/Factory/MarkdownFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Factory/MarkdownFactory.php -------------------------------------------------------------------------------- /src/mail/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Functions.php -------------------------------------------------------------------------------- /src/mail/src/MailManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/MailManager.php -------------------------------------------------------------------------------- /src/mail/src/Mailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailable.php -------------------------------------------------------------------------------- /src/mail/src/Mailable/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailable/Address.php -------------------------------------------------------------------------------- /src/mail/src/Mailable/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailable/Attachment.php -------------------------------------------------------------------------------- /src/mail/src/Mailable/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailable/Content.php -------------------------------------------------------------------------------- /src/mail/src/Mailable/Envelope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailable/Envelope.php -------------------------------------------------------------------------------- /src/mail/src/Mailable/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailable/Headers.php -------------------------------------------------------------------------------- /src/mail/src/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Mailer.php -------------------------------------------------------------------------------- /src/mail/src/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Markdown.php -------------------------------------------------------------------------------- /src/mail/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Message.php -------------------------------------------------------------------------------- /src/mail/src/PendingMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/PendingMail.php -------------------------------------------------------------------------------- /src/mail/src/SentMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/SentMessage.php -------------------------------------------------------------------------------- /src/mail/src/Testing/SeeInOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Testing/SeeInOrder.php -------------------------------------------------------------------------------- /src/mail/src/TextMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/TextMessage.php -------------------------------------------------------------------------------- /src/mail/src/Transport/LogTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Transport/LogTransport.php -------------------------------------------------------------------------------- /src/mail/src/Transport/SesTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mail/src/Transport/SesTransport.php -------------------------------------------------------------------------------- /src/model-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-factory/LICENSE -------------------------------------------------------------------------------- /src/model-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-factory/README.md -------------------------------------------------------------------------------- /src/model-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-factory/composer.json -------------------------------------------------------------------------------- /src/model-factory/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-factory/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/model-factory/src/FactoryInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-factory/src/FactoryInvoker.php -------------------------------------------------------------------------------- /src/model-factory/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-factory/src/Functions.php -------------------------------------------------------------------------------- /src/model-hashids/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-hashids/LICENSE -------------------------------------------------------------------------------- /src/model-hashids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-hashids/README.md -------------------------------------------------------------------------------- /src/model-hashids/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-hashids/composer.json -------------------------------------------------------------------------------- /src/model-hashids/publish/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-hashids/publish/hashids.php -------------------------------------------------------------------------------- /src/model-hashids/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-hashids/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/model-morph-addon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-morph-addon/LICENSE -------------------------------------------------------------------------------- /src/model-morph-addon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-morph-addon/README.md -------------------------------------------------------------------------------- /src/model-morph-addon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-morph-addon/composer.json -------------------------------------------------------------------------------- /src/model-observer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-observer/LICENSE -------------------------------------------------------------------------------- /src/model-observer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-observer/README.md -------------------------------------------------------------------------------- /src/model-observer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-observer/composer.json -------------------------------------------------------------------------------- /src/model-scope/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-scope/LICENSE -------------------------------------------------------------------------------- /src/model-scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-scope/README.md -------------------------------------------------------------------------------- /src/model-scope/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-scope/composer.json -------------------------------------------------------------------------------- /src/model-scope/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/model-scope/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/monolog-hook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/monolog-hook/LICENSE -------------------------------------------------------------------------------- /src/monolog-hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/monolog-hook/README.md -------------------------------------------------------------------------------- /src/monolog-hook/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/monolog-hook/composer.json -------------------------------------------------------------------------------- /src/monolog-hook/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/monolog-hook/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/mysql-grammar-addon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mysql-grammar-addon/LICENSE -------------------------------------------------------------------------------- /src/mysql-grammar-addon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mysql-grammar-addon/README.md -------------------------------------------------------------------------------- /src/mysql-grammar-addon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/mysql-grammar-addon/composer.json -------------------------------------------------------------------------------- /src/notification-easysms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-easysms/LICENSE -------------------------------------------------------------------------------- /src/notification-easysms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-easysms/README.md -------------------------------------------------------------------------------- /src/notification-easysms/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-easysms/composer.json -------------------------------------------------------------------------------- /src/notification-easysms/src/EasySms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-easysms/src/EasySms.php -------------------------------------------------------------------------------- /src/notification-mail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-mail/LICENSE -------------------------------------------------------------------------------- /src/notification-mail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-mail/README.md -------------------------------------------------------------------------------- /src/notification-mail/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-mail/composer.json -------------------------------------------------------------------------------- /src/notification-mail/publish/resources/views/email.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/notification-mail/src/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification-mail/src/Action.php -------------------------------------------------------------------------------- /src/notification/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/LICENSE -------------------------------------------------------------------------------- /src/notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/README.md -------------------------------------------------------------------------------- /src/notification/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/composer.json -------------------------------------------------------------------------------- /src/notification/src/ChannelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/src/ChannelManager.php -------------------------------------------------------------------------------- /src/notification/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/notification/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/src/Functions.php -------------------------------------------------------------------------------- /src/notification/src/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/notification/src/Notification.php -------------------------------------------------------------------------------- /src/oauth2-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/LICENSE -------------------------------------------------------------------------------- /src/oauth2-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/README.md -------------------------------------------------------------------------------- /src/oauth2-server/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/composer.json -------------------------------------------------------------------------------- /src/oauth2-server/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/oauth2-server/src/Entity/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/src/Entity/Client.php -------------------------------------------------------------------------------- /src/oauth2-server/src/Entity/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/src/Entity/Scope.php -------------------------------------------------------------------------------- /src/oauth2-server/src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/src/Entity/User.php -------------------------------------------------------------------------------- /src/oauth2-server/src/Model/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/src/Model/Client.php -------------------------------------------------------------------------------- /src/oauth2-server/src/Model/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/oauth2-server/src/Model/Device.php -------------------------------------------------------------------------------- /src/openai-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/LICENSE -------------------------------------------------------------------------------- /src/openai-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/README.md -------------------------------------------------------------------------------- /src/openai-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/composer.json -------------------------------------------------------------------------------- /src/openai-client/publish/openai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/publish/openai.php -------------------------------------------------------------------------------- /src/openai-client/src/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/src/ClientFactory.php -------------------------------------------------------------------------------- /src/openai-client/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/openai-client/src/Facade/OpenAI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/openai-client/src/Facade/OpenAI.php -------------------------------------------------------------------------------- /src/pretty-console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/pretty-console/LICENSE -------------------------------------------------------------------------------- /src/pretty-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/pretty-console/README.md -------------------------------------------------------------------------------- /src/pretty-console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/pretty-console/composer.json -------------------------------------------------------------------------------- /src/purifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/LICENSE -------------------------------------------------------------------------------- /src/purifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/README.md -------------------------------------------------------------------------------- /src/purifier/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/README_CN.md -------------------------------------------------------------------------------- /src/purifier/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/composer.json -------------------------------------------------------------------------------- /src/purifier/publish/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/publish/purifier.php -------------------------------------------------------------------------------- /src/purifier/src/Casts/CleanHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/src/Casts/CleanHtml.php -------------------------------------------------------------------------------- /src/purifier/src/Casts/WithConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/src/Casts/WithConfig.php -------------------------------------------------------------------------------- /src/purifier/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/purifier/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/src/Functions.php -------------------------------------------------------------------------------- /src/purifier/src/Purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/purifier/src/Purifier.php -------------------------------------------------------------------------------- /src/rate-limit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/rate-limit/LICENSE -------------------------------------------------------------------------------- /src/rate-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/rate-limit/README.md -------------------------------------------------------------------------------- /src/rate-limit/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/rate-limit/README_CN.md -------------------------------------------------------------------------------- /src/rate-limit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/rate-limit/composer.json -------------------------------------------------------------------------------- /src/rate-limit/src/Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/rate-limit/src/Algorithm.php -------------------------------------------------------------------------------- /src/rate-limit/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/rate-limit/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/recaptcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/recaptcha/LICENSE -------------------------------------------------------------------------------- /src/recaptcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/recaptcha/README.md -------------------------------------------------------------------------------- /src/recaptcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/recaptcha/composer.json -------------------------------------------------------------------------------- /src/recaptcha/publish/recaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/recaptcha/publish/recaptcha.php -------------------------------------------------------------------------------- /src/recaptcha/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/recaptcha/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/recaptcha/src/ReCaptchaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/recaptcha/src/ReCaptchaManager.php -------------------------------------------------------------------------------- /src/redis-subscriber/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/LICENSE -------------------------------------------------------------------------------- /src/redis-subscriber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/README.md -------------------------------------------------------------------------------- /src/redis-subscriber/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/README_CN.md -------------------------------------------------------------------------------- /src/redis-subscriber/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/composer.json -------------------------------------------------------------------------------- /src/redis-subscriber/src/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/src/Connection.php -------------------------------------------------------------------------------- /src/redis-subscriber/src/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/src/Constants.php -------------------------------------------------------------------------------- /src/redis-subscriber/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/src/Message.php -------------------------------------------------------------------------------- /src/redis-subscriber/src/Subscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/redis-subscriber/src/Subscriber.php -------------------------------------------------------------------------------- /src/sentry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/LICENSE -------------------------------------------------------------------------------- /src/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/README.md -------------------------------------------------------------------------------- /src/sentry/class_map/SentrySdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/class_map/SentrySdk.php -------------------------------------------------------------------------------- /src/sentry/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/composer.json -------------------------------------------------------------------------------- /src/sentry/publish/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/publish/sentry.php -------------------------------------------------------------------------------- /src/sentry/src/Annotation/Breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Annotation/Breadcrumb.php -------------------------------------------------------------------------------- /src/sentry/src/Aspect/CacheAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Aspect/CacheAspect.php -------------------------------------------------------------------------------- /src/sentry/src/Aspect/LoggerAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Aspect/LoggerAspect.php -------------------------------------------------------------------------------- /src/sentry/src/Aspect/RedisAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Aspect/RedisAspect.php -------------------------------------------------------------------------------- /src/sentry/src/Command/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Command/AboutCommand.php -------------------------------------------------------------------------------- /src/sentry/src/Command/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Command/TestCommand.php -------------------------------------------------------------------------------- /src/sentry/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/sentry/src/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Constants.php -------------------------------------------------------------------------------- /src/sentry/src/Factory/HubFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Factory/HubFactory.php -------------------------------------------------------------------------------- /src/sentry/src/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Feature.php -------------------------------------------------------------------------------- /src/sentry/src/Function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Function.php -------------------------------------------------------------------------------- /src/sentry/src/HttpClient/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/HttpClient/HttpClient.php -------------------------------------------------------------------------------- /src/sentry/src/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Integration.php -------------------------------------------------------------------------------- /src/sentry/src/Metrics/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Metrics/Timer.php -------------------------------------------------------------------------------- /src/sentry/src/Monolog/LogsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Monolog/LogsHandler.php -------------------------------------------------------------------------------- /src/sentry/src/SentryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/SentryHandler.php -------------------------------------------------------------------------------- /src/sentry/src/Switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Switcher.php -------------------------------------------------------------------------------- /src/sentry/src/Tracing/SpanStarter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Tracing/SpanStarter.php -------------------------------------------------------------------------------- /src/sentry/src/Tracing/TagManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Tracing/TagManager.php -------------------------------------------------------------------------------- /src/sentry/src/Tracing/Tracer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Tracing/Tracer.php -------------------------------------------------------------------------------- /src/sentry/src/Util/Carrier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Util/Carrier.php -------------------------------------------------------------------------------- /src/sentry/src/Util/CarrierPacker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Util/CarrierPacker.php -------------------------------------------------------------------------------- /src/sentry/src/Util/CoContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Util/CoContainer.php -------------------------------------------------------------------------------- /src/sentry/src/Util/RedisCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Util/RedisCommand.php -------------------------------------------------------------------------------- /src/sentry/src/Util/SafeCaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Util/SafeCaller.php -------------------------------------------------------------------------------- /src/sentry/src/Util/SqlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Util/SqlParser.php -------------------------------------------------------------------------------- /src/sentry/src/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/sentry/src/Version.php -------------------------------------------------------------------------------- /src/support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/LICENSE -------------------------------------------------------------------------------- /src/support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/README.md -------------------------------------------------------------------------------- /src/support/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/composer.json -------------------------------------------------------------------------------- /src/support/src/CallQueuedClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/CallQueuedClosure.php -------------------------------------------------------------------------------- /src/support/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/support/src/Contract/Htmlable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Contract/Htmlable.php -------------------------------------------------------------------------------- /src/support/src/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Env.php -------------------------------------------------------------------------------- /src/support/src/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Environment.php -------------------------------------------------------------------------------- /src/support/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Functions.php -------------------------------------------------------------------------------- /src/support/src/HtmlString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/HtmlString.php -------------------------------------------------------------------------------- /src/support/src/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Number.php -------------------------------------------------------------------------------- /src/support/src/Once.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Once.php -------------------------------------------------------------------------------- /src/support/src/Once/Backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Once/Backtrace.php -------------------------------------------------------------------------------- /src/support/src/Once/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Once/Cache.php -------------------------------------------------------------------------------- /src/support/src/Onceable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Onceable.php -------------------------------------------------------------------------------- /src/support/src/Pipeline/Hub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Pipeline/Hub.php -------------------------------------------------------------------------------- /src/support/src/RedisCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/RedisCommand.php -------------------------------------------------------------------------------- /src/support/src/Sleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Sleep.php -------------------------------------------------------------------------------- /src/support/src/Timebox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/Timebox.php -------------------------------------------------------------------------------- /src/support/src/UuidContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/support/src/UuidContainer.php -------------------------------------------------------------------------------- /src/tcp-sender/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tcp-sender/LICENSE -------------------------------------------------------------------------------- /src/tcp-sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tcp-sender/README.md -------------------------------------------------------------------------------- /src/tcp-sender/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tcp-sender/composer.json -------------------------------------------------------------------------------- /src/tcp-sender/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tcp-sender/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/tcp-sender/src/PipeMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tcp-sender/src/PipeMessage.php -------------------------------------------------------------------------------- /src/tcp-sender/src/Sender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tcp-sender/src/Sender.php -------------------------------------------------------------------------------- /src/telescope-elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope-elasticsearch/LICENSE -------------------------------------------------------------------------------- /src/telescope-elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope-elasticsearch/README.md -------------------------------------------------------------------------------- /src/telescope/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/LICENSE -------------------------------------------------------------------------------- /src/telescope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/README.md -------------------------------------------------------------------------------- /src/telescope/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/composer.json -------------------------------------------------------------------------------- /src/telescope/exception.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/exception.jpg -------------------------------------------------------------------------------- /src/telescope/grpc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/grpc.jpg -------------------------------------------------------------------------------- /src/telescope/migrations/telescope.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/migrations/telescope.sql -------------------------------------------------------------------------------- /src/telescope/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/package-lock.json -------------------------------------------------------------------------------- /src/telescope/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/package.json -------------------------------------------------------------------------------- /src/telescope/public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/public/mix-manifest.json -------------------------------------------------------------------------------- /src/telescope/public/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/public/telescope/app.css -------------------------------------------------------------------------------- /src/telescope/public/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/public/telescope/app.js -------------------------------------------------------------------------------- /src/telescope/publish/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/publish/telescope.php -------------------------------------------------------------------------------- /src/telescope/requests.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/requests.jpg -------------------------------------------------------------------------------- /src/telescope/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/resources/js/app.js -------------------------------------------------------------------------------- /src/telescope/resources/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/resources/js/base.js -------------------------------------------------------------------------------- /src/telescope/resources/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/resources/js/routes.js -------------------------------------------------------------------------------- /src/telescope/resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/resources/sass/app.scss -------------------------------------------------------------------------------- /src/telescope/resources/sass/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/resources/sass/base.scss -------------------------------------------------------------------------------- /src/telescope/src/Aspect/CacheAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Aspect/CacheAspect.php -------------------------------------------------------------------------------- /src/telescope/src/Aspect/EventAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Aspect/EventAspect.php -------------------------------------------------------------------------------- /src/telescope/src/Aspect/LogAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Aspect/LogAspect.php -------------------------------------------------------------------------------- /src/telescope/src/Aspect/RedisAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Aspect/RedisAspect.php -------------------------------------------------------------------------------- /src/telescope/src/Aspect/RpcAspect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Aspect/RpcAspect.php -------------------------------------------------------------------------------- /src/telescope/src/Avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Avatar.php -------------------------------------------------------------------------------- /src/telescope/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/telescope/src/EntryResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/EntryResult.php -------------------------------------------------------------------------------- /src/telescope/src/EntryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/EntryType.php -------------------------------------------------------------------------------- /src/telescope/src/EntryUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/EntryUpdate.php -------------------------------------------------------------------------------- /src/telescope/src/IncomingEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/IncomingEntry.php -------------------------------------------------------------------------------- /src/telescope/src/Model/EntryModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Model/EntryModel.php -------------------------------------------------------------------------------- /src/telescope/src/PipeMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/PipeMessage.php -------------------------------------------------------------------------------- /src/telescope/src/RecordMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/RecordMode.php -------------------------------------------------------------------------------- /src/telescope/src/Server/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Server/Server.php -------------------------------------------------------------------------------- /src/telescope/src/Severity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Severity.php -------------------------------------------------------------------------------- /src/telescope/src/SwitchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/SwitchManager.php -------------------------------------------------------------------------------- /src/telescope/src/Telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/Telescope.php -------------------------------------------------------------------------------- /src/telescope/src/TelescopeConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/TelescopeConfig.php -------------------------------------------------------------------------------- /src/telescope/src/TelescopeContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/src/TelescopeContext.php -------------------------------------------------------------------------------- /src/telescope/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/telescope/webpack.mix.js -------------------------------------------------------------------------------- /src/tinker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/LICENSE -------------------------------------------------------------------------------- /src/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/README.md -------------------------------------------------------------------------------- /src/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/composer.json -------------------------------------------------------------------------------- /src/tinker/publish/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/publish/tinker.php -------------------------------------------------------------------------------- /src/tinker/src/ClassAliasAutoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/src/ClassAliasAutoloader.php -------------------------------------------------------------------------------- /src/tinker/src/Command/TinkerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/src/Command/TinkerCommand.php -------------------------------------------------------------------------------- /src/tinker/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/tinker/src/TinkerCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/tinker/src/TinkerCaster.php -------------------------------------------------------------------------------- /src/trigger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/LICENSE -------------------------------------------------------------------------------- /src/trigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/README.md -------------------------------------------------------------------------------- /src/trigger/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/composer.json -------------------------------------------------------------------------------- /src/trigger/publish/trigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/publish/trigger.php -------------------------------------------------------------------------------- /src/trigger/src/Annotation/Trigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/Annotation/Trigger.php -------------------------------------------------------------------------------- /src/trigger/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/Config.php -------------------------------------------------------------------------------- /src/trigger/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/trigger/src/ConstEventsNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/ConstEventsNames.php -------------------------------------------------------------------------------- /src/trigger/src/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/Consumer.php -------------------------------------------------------------------------------- /src/trigger/src/ConsumerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/ConsumerManager.php -------------------------------------------------------------------------------- /src/trigger/src/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/EventDispatcher.php -------------------------------------------------------------------------------- /src/trigger/src/SubscriberManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/SubscriberManager.php -------------------------------------------------------------------------------- /src/trigger/src/TriggerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/TriggerManager.php -------------------------------------------------------------------------------- /src/trigger/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/trigger/src/Util.php -------------------------------------------------------------------------------- /src/validated-dto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/LICENSE -------------------------------------------------------------------------------- /src/validated-dto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/README.md -------------------------------------------------------------------------------- /src/validated-dto/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/composer.json -------------------------------------------------------------------------------- /src/validated-dto/publish/dto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/publish/dto.php -------------------------------------------------------------------------------- /src/validated-dto/src/Attributes/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/src/Attributes/Map.php -------------------------------------------------------------------------------- /src/validated-dto/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/validated-dto/src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/src/Functions.php -------------------------------------------------------------------------------- /src/validated-dto/src/SimpleDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/src/SimpleDTO.php -------------------------------------------------------------------------------- /src/validated-dto/src/ValidatedDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/validated-dto/src/ValidatedDTO.php -------------------------------------------------------------------------------- /src/web-tinker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/LICENSE -------------------------------------------------------------------------------- /src/web-tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/README.md -------------------------------------------------------------------------------- /src/web-tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/composer.json -------------------------------------------------------------------------------- /src/web-tinker/docs/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/docs/dark.png -------------------------------------------------------------------------------- /src/web-tinker/docs/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/docs/light.png -------------------------------------------------------------------------------- /src/web-tinker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/package.json -------------------------------------------------------------------------------- /src/web-tinker/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/postcss.config.js -------------------------------------------------------------------------------- /src/web-tinker/public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/public/app.css -------------------------------------------------------------------------------- /src/web-tinker/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/public/app.js -------------------------------------------------------------------------------- /src/web-tinker/public/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/public/github.css -------------------------------------------------------------------------------- /src/web-tinker/public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/public/mix-manifest.json -------------------------------------------------------------------------------- /src/web-tinker/publish/web-tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/publish/web-tinker.php -------------------------------------------------------------------------------- /src/web-tinker/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/resources/css/app.css -------------------------------------------------------------------------------- /src/web-tinker/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/resources/js/app.js -------------------------------------------------------------------------------- /src/web-tinker/src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/web-tinker/src/ExecutionClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/src/ExecutionClosure.php -------------------------------------------------------------------------------- /src/web-tinker/src/Tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/src/Tinker.php -------------------------------------------------------------------------------- /src/web-tinker/tailwind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/tailwind.js -------------------------------------------------------------------------------- /src/web-tinker/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/webpack.mix.js -------------------------------------------------------------------------------- /src/web-tinker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/src/web-tinker/yarn.lock -------------------------------------------------------------------------------- /tests/Cache/RepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Cache/RepositoryTest.php -------------------------------------------------------------------------------- /tests/CoPhpunit/AttributeOnClassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/CoPhpunit/AttributeOnClassTest.php -------------------------------------------------------------------------------- /tests/ConfigConsul/KVTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ConfigConsul/KVTest.php -------------------------------------------------------------------------------- /tests/Encryption/EncrypterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Encryption/EncrypterTest.php -------------------------------------------------------------------------------- /tests/Facade/FacadeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Facade/FacadeTest.php -------------------------------------------------------------------------------- /tests/FastPaginate/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/FastPaginate/BuilderTest.php -------------------------------------------------------------------------------- /tests/Helpers/HelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Helpers/HelpersTest.php -------------------------------------------------------------------------------- /tests/HttpClient/HttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/HttpClient/HttpClientTest.php -------------------------------------------------------------------------------- /tests/HttpClient/fixtures/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/HttpClient/fixtures/test.txt -------------------------------------------------------------------------------- /tests/Lock/AbstractLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/AbstractLockTest.php -------------------------------------------------------------------------------- /tests/Lock/AnnotationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/AnnotationTest.php -------------------------------------------------------------------------------- /tests/Lock/CacheLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/CacheLockTest.php -------------------------------------------------------------------------------- /tests/Lock/CoroutineLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/CoroutineLockTest.php -------------------------------------------------------------------------------- /tests/Lock/DatabaseLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/DatabaseLockTest.php -------------------------------------------------------------------------------- /tests/Lock/FileSystemLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/FileSystemLockTest.php -------------------------------------------------------------------------------- /tests/Lock/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/FunctionsTest.php -------------------------------------------------------------------------------- /tests/Lock/LockFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/LockFactoryTest.php -------------------------------------------------------------------------------- /tests/Lock/LockTimeoutExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/LockTimeoutExceptionTest.php -------------------------------------------------------------------------------- /tests/Lock/LuaScriptsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/LuaScriptsTest.php -------------------------------------------------------------------------------- /tests/Lock/RedisLockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Lock/RedisLockTest.php -------------------------------------------------------------------------------- /tests/Macros/ArrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/ArrTest.php -------------------------------------------------------------------------------- /tests/Macros/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/CollectionTest.php -------------------------------------------------------------------------------- /tests/Macros/HtmlStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/HtmlStringTest.php -------------------------------------------------------------------------------- /tests/Macros/HttpServerRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/HttpServerRequestTest.php -------------------------------------------------------------------------------- /tests/Macros/StrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/StrTest.php -------------------------------------------------------------------------------- /tests/Macros/StringableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/StringableTest.php -------------------------------------------------------------------------------- /tests/Macros/Stubs/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Macros/Stubs/Common.php -------------------------------------------------------------------------------- /tests/Mail/AttachableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/AttachableTest.php -------------------------------------------------------------------------------- /tests/Mail/MailFailoverTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailFailoverTransportTest.php -------------------------------------------------------------------------------- /tests/Mail/MailLogTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailLogTransportTest.php -------------------------------------------------------------------------------- /tests/Mail/MailMailableDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailMailableDataTest.php -------------------------------------------------------------------------------- /tests/Mail/MailMailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailMailerTest.php -------------------------------------------------------------------------------- /tests/Mail/MailManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailManagerTest.php -------------------------------------------------------------------------------- /tests/Mail/MailMarkdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailMarkdownTest.php -------------------------------------------------------------------------------- /tests/Mail/MailMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/MailMessageTest.php -------------------------------------------------------------------------------- /tests/Mail/Stubs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/Stubs/1.txt -------------------------------------------------------------------------------- /tests/Mail/Stubs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/Stubs/3.txt -------------------------------------------------------------------------------- /tests/Mail/Stubs/ContainerStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Mail/Stubs/ContainerStub.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/RateLimit/AnnotationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/RateLimit/AnnotationTest.php -------------------------------------------------------------------------------- /tests/RateLimit/LuaScriptsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/RateLimit/LuaScriptsTest.php -------------------------------------------------------------------------------- /tests/RedisSubscriber/SubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/RedisSubscriber/SubscriberTest.php -------------------------------------------------------------------------------- /tests/Sentry/CarrierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Sentry/CarrierTest.php -------------------------------------------------------------------------------- /tests/Sentry/FeatureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Sentry/FeatureTest.php -------------------------------------------------------------------------------- /tests/Sentry/SqlParseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Sentry/SqlParseTest.php -------------------------------------------------------------------------------- /tests/Support/DispatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/DispatchTest.php -------------------------------------------------------------------------------- /tests/Support/EnvTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/EnvTest.php -------------------------------------------------------------------------------- /tests/Support/EnvironmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/EnvironmentTest.php -------------------------------------------------------------------------------- /tests/Support/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/FunctionsTest.php -------------------------------------------------------------------------------- /tests/Support/NumberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/NumberTest.php -------------------------------------------------------------------------------- /tests/Support/OnceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/OnceTest.php -------------------------------------------------------------------------------- /tests/Support/RedisCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/RedisCommandTest.php -------------------------------------------------------------------------------- /tests/Support/SleepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/SleepTest.php -------------------------------------------------------------------------------- /tests/Support/Stub/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/Stub/TestClass.php -------------------------------------------------------------------------------- /tests/Support/TimeboxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Support/TimeboxTest.php -------------------------------------------------------------------------------- /tests/TcpSender/SenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/TcpSender/SenderTest.php -------------------------------------------------------------------------------- /tests/Telescope/TelescopeConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Telescope/TelescopeConfigTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Tinker/TinkerCasterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/Tinker/TinkerCasterTest.php -------------------------------------------------------------------------------- /tests/ValidatedDTO/Datasets/LazyDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ValidatedDTO/Datasets/LazyDTO.php -------------------------------------------------------------------------------- /tests/ValidatedDTO/Datasets/NameDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ValidatedDTO/Datasets/NameDTO.php -------------------------------------------------------------------------------- /tests/ValidatedDTO/Datasets/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ValidatedDTO/Datasets/User.php -------------------------------------------------------------------------------- /tests/ValidatedDTO/Datasets/UserDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ValidatedDTO/Datasets/UserDTO.php -------------------------------------------------------------------------------- /tests/ValidatedDTO/Unit/EnumCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ValidatedDTO/Unit/EnumCastTest.php -------------------------------------------------------------------------------- /tests/ValidatedDTO/Unit/WireableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/tests/ValidatedDTO/Unit/WireableTest.php -------------------------------------------------------------------------------- /types/Cache/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Cache/Facade.php -------------------------------------------------------------------------------- /types/Cache/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Cache/Manager.php -------------------------------------------------------------------------------- /types/Cache/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Cache/Repository.php -------------------------------------------------------------------------------- /types/Helpers/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Helpers/Functions.php -------------------------------------------------------------------------------- /types/Macros/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Macros/Arr.php -------------------------------------------------------------------------------- /types/Macros/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Macros/Collection.php -------------------------------------------------------------------------------- /types/Macros/LazyCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Macros/LazyCollection.php -------------------------------------------------------------------------------- /types/Macros/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Macros/Request.php -------------------------------------------------------------------------------- /types/Macros/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Macros/Str.php -------------------------------------------------------------------------------- /types/Macros/Stringable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Macros/Stringable.php -------------------------------------------------------------------------------- /types/Sentry/Sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Sentry/Sentry.php -------------------------------------------------------------------------------- /types/Support/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendsofhyperf/components/HEAD/types/Support/Support.php --------------------------------------------------------------------------------