We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1414531 commit aa316aaCopy full SHA for aa316aa
README.md
@@ -36,9 +36,18 @@ Then run a composer update
36
php composer.phar update
37
```
38
39
-To use the AWS Service Provider, you must register the provider when bootstrapping your Laravel application.
+To use the AWS Service Provider, you must register the provider when bootstrapping your application.
40
41
-Find the `providers` key in your `config/app.php` and register the AWS Service Provider.
+
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.
51
52
```php
53
'providers' => array(
0 commit comments