PHP Classes

File: samples/laravel/config/app.php

Recommend this page to a friend!
  Packages of Jonatas Matheus Gino de Souza   PHP Service Runner   samples/laravel/config/app.php   Download  
File: samples/laravel/config/app.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP Service Runner
Invoke services using payload data as parameters
Author: By
Last change:
Date: 10 days ago
Size: 333 bytes
 

Contents

Class file image Download
<?php

return [
   
'name' => env('APP_NAME', 'Service Runner Laravel Sample'),
   
'env' => env('APP_ENV', 'local'),
   
'debug' => (bool) env('APP_DEBUG', true),
   
'url' => env('APP_URL', 'http://localhost:8081'),
   
'timezone' => 'UTC',
   
'key' => env('APP_KEY'),
   
'maintenance' => [
       
'driver' => 'file',
    ],
];