52 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| use Illuminate\Support\Facades\Facade;
 | |
| 
 | |
| return [
 | |
|     'name' => env('APP_NAME', 'KamilCraft API'),
 | |
|     'env' => env('APP_ENV', 'production'),
 | |
|     'debug' => (bool) env('APP_DEBUG', false),
 | |
|     'url' => env('APP_URL', 'http://localhost'),
 | |
|     'asset_url' => env('ASSET_URL'),
 | |
|     'timezone' => 'UTC',
 | |
|     'locale' => 'pl',
 | |
|     'fallback_locale' => 'en',
 | |
|     'faker_locale' => 'en_US',
 | |
|     'key' => env('APP_KEY'),
 | |
|     'cipher' => 'AES-256-CBC',
 | |
|     'maintenance' => [
 | |
|         'driver' => 'file',
 | |
|     ],
 | |
|     'providers' => [
 | |
|         Illuminate\Auth\AuthServiceProvider::class,
 | |
|         Illuminate\Bus\BusServiceProvider::class,
 | |
|         Illuminate\Cache\CacheServiceProvider::class,
 | |
|         Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
 | |
|         Illuminate\Cookie\CookieServiceProvider::class,
 | |
|         Illuminate\Database\DatabaseServiceProvider::class,
 | |
|         Illuminate\Encryption\EncryptionServiceProvider::class,
 | |
|         Illuminate\Filesystem\FilesystemServiceProvider::class,
 | |
|         Illuminate\Foundation\Providers\FoundationServiceProvider::class,
 | |
|         Illuminate\Hashing\HashServiceProvider::class,
 | |
|         Illuminate\Notifications\NotificationServiceProvider::class,
 | |
|         Illuminate\Pagination\PaginationServiceProvider::class,
 | |
|         Illuminate\Pipeline\PipelineServiceProvider::class,
 | |
|         Illuminate\Queue\QueueServiceProvider::class,
 | |
|         Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
 | |
|         Illuminate\Session\SessionServiceProvider::class,
 | |
|         Illuminate\Translation\TranslationServiceProvider::class,
 | |
|         Illuminate\Validation\ValidationServiceProvider::class,
 | |
|         Illuminate\View\ViewServiceProvider::class,
 | |
| 
 | |
|         App\Providers\AppServiceProvider::class,
 | |
|         App\Providers\AuthServiceProvider::class,
 | |
|         App\Providers\RouteServiceProvider::class,
 | |
| 
 | |
|         App\Providers\CategoryServiceProvider::class,
 | |
|         App\Providers\ProjectServiceProvider::class,
 | |
|     ],
 | |
|     'aliases' => Facade::defaultAliases()->merge([])->toArray()
 | |
| ];
 |