php - Class 'Pheanstalk_Pheanstalk' not found in Laravel 4 with Beanstalk -
php - Class 'Pheanstalk_Pheanstalk' not found in Laravel 4 with Beanstalk -
i'm trying beanstalk , running , i'm getting exception when trying run queue::push():
class 'pheanstalk_pheanstalk' not found
i've run composer require pda/pheanstalk, , regenerated auto-load file time.
it's happening in ./vendor/laravel/framework/src/illuminate/queue/connectors/beanstalkdconnector.php
any ideas?
in composer.json, replace pda/pheanstalk requirement line by
"pda/pheanstalk": "2.0.*"
run
composer update
warning: update laravel.
source: http://laravel.io/forum/07-17-2014-class-pheanstalk-pheanstalk-not-found
php laravel beanstalk pheanstalk
Comments
Post a Comment