Zend Framework 2 で安らかな API モジュールを作成しようとしています。
適切な module.config.php を作成できません
新しいモジュールの私のフォルダー構造は次のとおりです。
[...]/module/Api
[...]/module/Api/config
[...]/module/Api/src/Api/Controller
私のコントローラーの名前は、 [...]/module/Api/src/Api/Controller/ShortenerController.php にある ShortenerController.php です。
その中で、名前空間を次のように設定しています。
namespace Api\Controller;
[...]/module/Api/config には、次のコードを含む module.config.php ファイルがあります。
<?php
return array(
'controllers' => array(
'invokables' => array(
'Api\Controller\Shortener' => 'Api\Controller\ShortenerController',
),
),
// The following section is new and should be added to your file
'router' => array(
'routes' => array(
'Api' => array(
'type' => 'segment',
'options' => array(
'route' => '/api/s/[:url]',
'defaults' => array(
'controller' => 'API\Controller\Shortener',
),
),
),
),
),
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
// 'template_map' => array(
// 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
// 'index/index' => __DIR__ . '/../view/index/index.phtml',
// 'error/404' => __DIR__ . '/../view/error/404.phtml',
// 'error/index' => __DIR__ . '/../view/error/index.phtml',
// ),
// 'template_path_stack' => array(
// 'application' => __DIR__ . '/../view',
// ),
'strategies' => array(
'ViewJsonStrategy',
),
),
);
このリンクにデータを投稿してcurlを呼び出そうとすると:
http://server_address/api/s/
次のようなエラーが表示されます。
PHP Fatal error: Class 'Api\\Controller\\ShortenerController' not found in /home/ertai/zf/library/Zend/ServiceManager/AbstractPluginManager.php on line 170
私がここで間違っていることは何ですか?適切なルートを作成するために、module.config.php ファイルに何を記述すればよいかを把握できません。