=============== LIBRARY RULES =============== From library maintainers: - When developing with the Hyperf framework while using the MineAdmin scaffold, please refer to this document ### Install and Initialize Mineadmin AppStore Extension Source: https://github.com/mineadmin/components/blob/3.0/src/AppStore/README.md This snippet covers the installation of the Mineadmin AppStore extension using Composer and the subsequent steps to publish its configuration file. ```shell composer require mineadmin/app-store mkdir plugin php bin/hyperf.php mine-extension:initial ``` -------------------------------- ### Crontab Task Model Example Source: https://github.com/mineadmin/components/blob/3.0/src/Crontab/README.md An example of a Hyperf Eloquent model that can be used to store crontab task configurations in a database. This model would typically include fields for the task name, cron expression, command to execute, and status. ```PHP 'datetime', 'updated_at' => 'datetime' ]; } ``` -------------------------------- ### Project Introduction and Links Source: https://github.com/mineadmin/components/blob/3.0/README.md This snippet displays the project logo, name, and provides links to the official website, documentation, demo, and Hyperf documentation. It also includes badges for the license and version. ```HTML
官网 | 文档 | 演示 | Hyperf官方文档