Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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', 'VendorPackageControllersHomeController@showWelcome');

but this produces an error about not finding the class:

ReflectionException: Class VendorPackageControllersHomeController 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 VendorPackageControllersHomeController 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
344 views
Welcome To Ask or Share your Answers For Others

1 Answer

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

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

The correct usage is:

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

With the namespace included in the controller:

namespace VendorPackage;

Controller should extend illuminate:

IlluminateRoutingControllersController

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

Problem solved.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...