Download the PHP package on1kel/hyperf-fly-docs without Composer

On this page you can find all versions of the php package on1kel/hyperf-fly-docs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package hyperf-fly-docs

Hyperf FlyDocs

Hyperf FlyDocs — расширение для Hyperf, которое автоматически формирует и публикует OpenAPI (Swagger) документацию на основе кода и фабрик (ComplexFactoryInterface).

Вместо ручного описания аннотаций вы просто указываете #[Complex(...)], а FlyDocs собирает полную спецификацию с параметрами, схемами и ответами.


🚀 Возможности


📦 Установка

Пакет автоматически зарегистрируется через ConfigProvider.


⚙️ Публикация ресурсов

Будут созданы:

ID Назначение Путь
config Конфиг FlyDocs config/autoload/fly-docs.php
ui Swagger UI файлы publish/fly-docs

Если конфиг отсутствует — он создаётся автоматически при первом запуске.


🌍 Маршруты документации

Метод Путь Назначение
GET /fly-docs Редирект на коллекцию по умолчанию
GET /fly-docs/{tag} Swagger UI для выбранной коллекции
GET /fly-docs/{tag}/api-docs JSON спецификация OpenAPI
GET /fly-docs-assets/{path} Раздача статических файлов UI

Swagger UI доступен по адресу:


🔧 Конфигурация (config/autoload/fly-docs.php)


✍️ Как документировать контроллеры

FlyDocs анализирует контроллеры Hyperf и их атрибуты.
Самый важный атрибут — #[Complex(...)], который указывает фабрику для сборки OpenAPI-описания.

Пример контроллера

Этот код сообщает FlyDocs:


🧩 Что делает Complex-фабрика

ComplexFactoryInterface позволяет описать шаблон операции, который FlyDocs потом применяет к каждому методу.

Пример — IndexActionComplex (входит в пакет HyperfLighty):

Результат работы фабрики — ComplexResultDTO, содержащий:


🔄 Генерация и кеш

При старте воркера (GenerateDocsOnWorkerStartListener) FlyDocs:

  1. Извлекает маршруты (CollectorRouteExtractor).
  2. Применяет фильтры (RouteFilter).
  3. Строит операции через фабрики (ComplexRunner, OperationComposer, OperationMetaResolver).
  4. Сохраняет итоговую спецификацию в кеш (DocsCacheManager).
  5. Раздаёт JSON и UI через DocsController.

🖥 Swagger UI

Swagger UI поставляется вместе с пакетом (publish/ui/).
Если UI опубликован — используется локальный вариант.
Если нет — контроллер автоматически подставит CDN-версию.

Путь по умолчанию:


📄 Лицензия

Распространяется под лицензией MIT


💡 Полезно знать


Hyperf FlyDocs — декларативный способ документировать Hyperf-приложения без ручного редактирования OpenAPI.


All versions of hyperf-fly-docs with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
hyperf/http-server Version ^3.1
hyperf/command Version ^3.1
hyperf/config Version ^3.1
hyperf/http-message Version ^3.1
hyperf/support Version ^3.1
khazhinov/php-support Version ^1.1
on1kel/oas-profile-31 Version ^1.0
on1kel/oas-builder Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package on1kel/hyperf-fly-docs contains the following files

Loading the files please wait ...