Does anyone know how to use a component that I created in cakephp within a cake console script?
I've tried using App :: import but I could not.
For example in a normal controller I can use my component as follows:
public $components = array('MeuComponent');
But in Shell this does not work = /
Does anyone know how to use MyComponent inside a CakePHP Shell?