wuding/anfora

Class File Loader

1.0.1 2019-04-16 09:14 UTC

This package is auto-updated.

Last update: 2024-03-27 22:22:31 UTC


README

PHP Class Files Loader

Install

composer require wuding/anfora

Usage

web/index.php

<?php
define('BASE_DIR', __DIR__ . '/..');
define('VENDOR_DIR', __DIR__ . '/../vendor');
# define('COMPOSER_JSON', __DIR__ . '/../composer.json');

$autoload = require __DIR__ . '/../src/autoload.php';
$anfora = new Anfora(__DIR__ . '/../app/config.php');

vendor/composer/ 目录下

autoload_classmap, autoload_namespaces, autoload_files, autoload_psr4

$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);

替换为

include __DIR__ . '/../../app/composer.php';

app/config.php

添加常量定义以禁用 autoload_static

define('HHVM_VERSION', '-1');

或修改 vendor/composer/autoload_static.php

__DIR__ . '/../..' 替换为 BASE_DIR

__DIR__ . '/..' 替换为 VENDOR_DIR