简体   繁体   中英

Accessing package controllers in Laravel 4

I have created a package following the "Creating a Package" instructions in the Laravel 4 documentation . After creating the package I have created a "controllers" folder and a routes file. The new file structure is:

/src
    /Vendor
        /Package
            PackageServiceProvider.php
    /config
    /controllers
    /lang
    /migrations
    /views
    routes.php
/tests
/public

I added the routes file to the boot portion of the package service provider:

public function boot()
{
    $this->package('vendor/package');
    include __DIR__ . '/../../routes.php';
}

Then added a basic route to the routes file:

Route::get('/package', function() {
    return "Package route test";
});

Visiting my application at the specified route (app.dev/package) returns the expected:

Package route test

Then adding a basic controller call to the route (using the default Laravel controller, "HomeController") works:

Route::get('/package', 'HomeController@showWelcome');

I then followed this SO answer for setting up the controller for the package. I added the src/controllers folder to the composer classmap, then I dumped the autoloader and checked vendor/composer/autoload_classmap.php and found the class is successfully loaded by composer:

<?php

// autoload_classmap.php generated by Composer

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

return array(
    'HomeController' => $baseDir . '/src/controllers/HomeController.php',
);

Now I added the new package controller to the route using the namespace:

Route::get('/package', 'Vendor\Package\Controllers\HomeController@showWelcome');

but this produces an error about not finding the class:

ReflectionException: Class Vendor\Package\Controllers\HomeController does not exist

I've also tried calling it using the package name:

Route::get('/package', 'Package::HomeController@showWelcome');

which produces the same error:

ReflectionException: Class Vendor\Package\Controllers\HomeController does not exist

No matter what I try the package cannot access its own controller, which composer confirms is loaded (by viewing vendor/package/autoload_classmap.php).

Any ideas? I'm not sure if the issue is composer not loading the class, I'm not sure where to start with debugging the problem. I've created another package and repeated the steps here and get the same problem.

I can access the package views from both the package and the app, eg:

View::make('package::view');

The problem seems to be between composer loading the controller and Laravel being able to access it.

The mistake was including the controllers path in the route. I had the following:

Route::get('/package', 'Vendor\Package\Controllers\HomeController@showWelcome');

The correct usage is:

Route::get('/package', 'Vendor\Package\HomeController@showWelcome');

With the namespace included in the controller:

namespace Vendor\Package;

Controller should extend illuminate:

\Illuminate\Routing\Controllers\Controller

Still can't use the package name (eg: Package::HomeController@showWelcome), but I can using the namespace. yay.

Problem solved.

You may try edit your Vendor/Package/composer.json and insert the controllers dir to autoload/classmap:

....
"autoload": {
    "classmap": [
        "src/migrations",
        "src/controllers",
        "src/models"
    ],
    "psr-0": {
        "Package\\Controller": "src/"
    }
}
....

After that, open your terminal and from your package root dir do a composer dump-autoload

Works for me...

看看这篇git文章可能会有所帮助https://github.com/jaiwalker/setup-laravel4-package

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM