0

我正在尝试设置一个 ZF2 项目(与 zf2skeleton 略有不同),我想使用 composer 来处理所有自动加载,不仅来自供应商的自动加载(通过 composer 安装),还包括我创建的那些模块。

出于某种原因,我无法访问我的应用程序模块索引控制器。我认为它的自动加载不起作用......我只是不知道我可能做错了什么......

谢谢!

文件和数据如下:

这是我的文件夹结构:

index.php
private
- modules
-- Aplication
--- src
----- Aplication
------- Controller
---------- IndexController.php
- vendor
-- zendframework
-- composer
-- autoload.php
- composer.json
- composer.phar

主配置文件

return array(
    'modules' => array(
        'Application',
    ),
    'module_listener_options' => array(
        'config_glob_paths' => array(
            'private/config/autoload/{,*.}{global,local}.php',
        ),
        'cache_dir' => realpath(dirname(__DIR__) . '/../../data/cache'),
        'module_paths' => array(
            realpath(__DIR__ . '/../module'),
            realpath(__DIR__ . '/../vendor'),
        ),
    ),
);

索引.php

include_once 'private/vendor/autoload.php';

$application = Zend\Mvc\Application::init(include 'private/config/main.config.php');
return $application;

作曲家.json

{
    "repositories": [
        {
            "type": "composer",
            "url": "http://packages.zendframework.com/"
        }
    ],
    "require": {
        "php": ">=5.3.3",
        "zendframework/zendframework": "2.*"
    },
    "autoload": {
        "psr-0": {
            "Application\\": "module/Application/src"
        }
    }
}

应用程序配置

return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route' => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action' => 'index',
                    ),
                ),
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index' => 'Application\Controller\IndexController'
        ),
    ),
);

索引控制器

namespace Application\Controller;

use Zend\Mvc\Controller\AbstractActionController;

class IndexController extends AbstractActionController {

    public function indexAction() {
        die("app ok");
    }

}
4

1 回答 1

1

首先,据我所知,您没有运行您的应用程序:

$application = Zend\Mvc\Application::init(include 'private/config/main.config.php');
$application->run();

另一点是,您不必使用 composer 来加载您的模块。由于您的应用程序配置已经包含该module目录,模块加载过程将自动扫描该目录并使用在您的模块类级别定义的加载策略。

于 2013-01-29T16:36:20.643 回答