Created
April 4, 2017 17:47
-
-
Save maxheckel/c053c9c809a405f81eda88dd639d2063 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| return [ | |
| ... | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | 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' => [ | |
| ... | |
| \App\Providers\UPSServiceProvider::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' => [ | |
| ... | |
| 'UPS'=>\App\Facades\UPS::class | |
| ], | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment