Commit 2c12be30 by Taylor Otwell

register symfony console namespace with autoloader.

parent c327fdcf
...@@ -89,6 +89,21 @@ Autoloader::map(array( ...@@ -89,6 +89,21 @@ Autoloader::map(array(
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Register The Symfony Components
|--------------------------------------------------------------------------
|
| Laravel's "Artisan" CLI makes use of the Symfony Console component to
| build a wonderful CLI environment that is both robust and testable.
| We'll register the component's namespace here.
|
*/
Autoloader::namespaces(array(
'Symfony\Component\Console' => path('base').'vendor/Symfony/Component/Console',
));
/*
|--------------------------------------------------------------------------
| Set The CLI Options Array | Set The CLI Options Array
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment