Reputation: 12945
I am running a Laravel 4.2 application.
I have a local environment using Homestead and Vagrant. And a live server using AWS ubuntu EC2 and Laravel Forge.
On my local environment I have set up the Abodeo - Laravel Stripe package using the instructions seen here: https://github.com/Abodeo/laravel-stripe
However, when pushing my project live, something is lost in translation and I am receiving the following error:
Class 'Abodeo\LaravelStripe\LaravelStripeServiceProvider' not found
I have added 'Abodeo\LaravelStripe\LaravelStripeServiceProvider'
to my app/config file and I ran composer install/composer dump-autoload
on the live server. Still no luck.
Any ideas?
Upvotes: 0
Views: 116
Reputation: 71
make sure in composer.json like this
"require": {
"abodeo/laravel-stripe": "dev-master"
},
and then run
composer update abodeo/laravel-stripe
Upvotes: 1