Skip to content

Commit aa316aa

Browse files
SOSTheBlackcjyclaire
authored andcommitted
installation in lumen (#110)
* installation in lumen * add a new line * removing rows
1 parent 1414531 commit aa316aa

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,18 @@ Then run a composer update
3636
php 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(

0 commit comments

Comments
 (0)