定制 thetempusproject/hermes 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

thetempusproject/hermes

最新稳定版本:1.0.5

Composer 安装命令:

composer require thetempusproject/hermes

包简介

This library handles redirects, provides a common backbone for routing, and can handle autoloading in cases where composer is unavailable.

README 文档

README

Hermes is a small package to handle redirects, routing, and autoloading. This library id developed in conjunction with The Tempus Project.

Installation

To install, simply use the composer command:

php composer.phar require thetempusproject/hermes

composer require thetempusproject/hermes

Usage

Typical usage would be through including the package via composer.


require_once VENDOR_DIRECTORY . 'autoload.php';

use TheTempusProject\Hermes\Functions\Redirect;

if ( ! App::$isAdmin ) {
	return Redirect::home();
}

If you would like to use hermes own autoloading, simply inclode the constants file and the autoload file inside /bin/.


use TheTempusProject\Hermes\Functions\Redirect;

// Hermes Constants
if ( ! defined( 'HERMES_CONSTANTS_LOADED' ) ) {
    if ( defined( 'HERMES_CONFIG_DIRECTORY' ) ) {
        require_once HERMES_CONFIG_DIRECTORY . 'constants.php';
    }
}

// Hermes Autoloader (Autoloader)
if ( ! defined( 'HERMES_AUTOLOADED' ) ) {
    if ( defined( 'HERMES_ROOT_DIRECTORY' ) ) {
        require_once HERMES_ROOT_DIRECTORY . 'bin' . DIRECTORY_SEPARATOR . 'autoload.php';
    }
}

Redirect::home();

Issues / Bugs / Contact

If anyone actually uses this library and runs into any issues, feel free to contact me and I'll look into it.

Joey Kimsey - Lead Developer

JoeyKimsey.com

统计信息

  • 总下载量: 11
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-06-20