mirror of
https://github.com/ivuorinen/branch-usage-checker.git
synced 2026-02-07 21:45:47 +00:00
PSR-12, build script, fixes
This commit is contained in:
@@ -2,57 +2,43 @@
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application. This value is used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| any other location as required by the application or its packages.
|
||||
|
|
||||
*/
|
||||
/**
|
||||
* Application Name
|
||||
*
|
||||
* This value is the name of your application. This value is used when the
|
||||
* framework needs to place the application's name in a notification or
|
||||
* any other location as required by the application or its packages.
|
||||
*/
|
||||
'name' => 'Branch usage checker',
|
||||
|
||||
'name' => 'Branch usage checker',
|
||||
/**
|
||||
* Application Version
|
||||
*
|
||||
* This value determines the "version" your application is currently running
|
||||
* in. You may want to follow the "Semantic Versioning" - Given a version
|
||||
* number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
|
||||
*
|
||||
*/
|
||||
'version' => app('git.version'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Version
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "version" your application is currently running
|
||||
| in. You may want to follow the "Semantic Versioning" - Given a version
|
||||
| number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
|
||||
|
|
||||
*/
|
||||
|
||||
'version' => app('git.version'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "environment" your application is currently
|
||||
| running in. This may determine how you prefer to configure various
|
||||
| services the application utilizes. This can be overridden using
|
||||
| the global command line "--env" option when calling commands.
|
||||
|
|
||||
*/
|
||||
|
||||
'env' => 'development',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
/**
|
||||
* Application Environment
|
||||
*
|
||||
* This value determines the "environment" your application is currently
|
||||
* running in. This may determine how you prefer to configure various
|
||||
* services the application utilizes. This can be overridden using
|
||||
* the global command line "--env" option when calling commands.
|
||||
*/
|
||||
'env' => 'development',
|
||||
|
||||
/**
|
||||
* 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\AppServiceProvider::class,
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user