Laravel 4 Using HybridAuth: Not Getting Autoloaded in class map -


after downloading hybridauth composer, need manually add hybridauth's directory in /vendor/composer/autoload_classmap.php, should automatic.

below composer.json, can point me problem why hybridauth not getting written in autoload automatically?

{     "name": "laravel/laravel",     "description": "the laravel framework.",     "keywords": ["framework", "laravel"],     "require": {         "laravel/framework": "4.0.*",         "way/generators": "dev-master",         "hybridauth/hybridauth": "*",         "intervention/image": "dev-master"     },     "autoload": {         "classmap": [             "app/commands",             "app/controllers",             "app/models",             "app/database/migrations",             "app/database/seeds",             "app/tests/testcase.php"         ]     },     "scripts": {         "post-install-cmd": [             "php artisan optimize"         ],         "pre-update-cmd": [             "php artisan clear-compiled"         ],         "post-update-cmd": [             "php artisan optimize"         ],         "post-create-project-cmd": [             "php artisan key:generate"         ]     },     "config": {         "preferred-install": "dist"     },     "minimum-stability": "dev" } 

have tried

using "hybridauth/hybridauth": "dev-master"

also try

artisan dump-autoload command


Comments

Popular posts from this blog

curl - PHP fsockopen help required -

HTTP/1.0 407 Proxy Authentication Required PHP -

c# - Resource not found error -