<?php // File Location: projectroot/config/app.php /** * Set the service providers and facades so the Laravel service container can use them. * * @return array */ return [ /// ... other settings removed for simplicity /* |-------------------------------------------------------------------------- | Autoloaded Service Providers |-------------------------------------------------------------------------- | | The service providers listed here will be automatically loaded on the | request to your application. Feel free to add your own services to | this array to grant expanded functionality to your applications. | */ 'providers' => [ /// ... other providers removed for simplicity App\Library\AwsS3\AwsS3ServiceProvider::class, ], /* |-------------------------------------------------------------------------- | Class Aliases |-------------------------------------------------------------------------- | | This array of class aliases will be registered when this application | is started. However, feel free to register as many as you wish as | the aliases are "lazy" loaded so they don't hinder performance. | */ 'aliases' => [ /// ... other aliases removed for simplicity 'AwsS3' => App\Library\AwsS3\AwsS3Facade::class, ], ];