Cakephp 3 manuall плагин ошибка

Я установил плагин вручную и вижу ошибку в своем URL-адресе:

HTTP: // локальный / cake3 / контакт-менеджер / контакты

    Error: ContactManager.ContactsController could not be found.

    Error: Create the class ContactsController below in file: D:\www\cake3\plugins\ContactManager\src\Controller\ContactsController.php

    <?php
    namespace ContactManager\Controller;

    use ContactManager\Controller\AppController;

    class ContactsController extends AppController
    {

    }

Мой документ:

http://book.cakephp.org/3.0/en/plugins.htm

В config: 'composer.json' добавить эту строку:

 "autoload": {
       "psr-4": {
           "App\\": "src",
           "ContactManager\\": "./plugins/ContactManager/src", 
       }
   }, 

И в файле: 'config\bootstrap.php' добавил эту строку:

Plugin::load('ContactManager', ['routes' => true]); 

0 ответов

Другие вопросы по тегам