File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,18 @@ Then run a composer update
3636php composer.phar update
3737```
3838
39- To use the AWS Service Provider, you must register the provider when bootstrapping your Laravel application.
39+ To use the AWS Service Provider, you must register the provider when bootstrapping your application.
4040
41- Find the ` providers ` key in your ` config/app.php ` and register the AWS Service Provider.
41+
42+ ### Lumen
43+ In Lumen find the ` Register Service Providers ` in your ` bootstrap/app.php ` and register the AWS Service Provider.
44+
45+ ``` php
46+ $app->register(Aws\Laravel\AwsServiceProvider::class);
47+ ```
48+
49+ ### Laravel
50+ In Laravel find the ` providers ` key in your ` config/app.php ` and register the AWS Service Provider.
4251
4352``` php
4453 'providers' => array(
You can’t perform that action at this time.
0 commit comments