Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
31 lines
785 B
PHP
31 lines
785 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Application
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Only what differs from the framework's config/app.php; Laravel merges
|
|
| every other key from its own defaults.
|
|
|
|
|
*/
|
|
|
|
return [
|
|
|
|
'name' => env('APP_NAME', 'SealShare'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| SealShare Version
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The release this code is, shown on the admin dashboard. Bump it together
|
|
| with the release's heading in CHANGELOG.md: tests/Feature/AppVersionTest
|
|
| fails while the two differ.
|
|
|
|
|
*/
|
|
|
|
'version' => '2.2.0',
|
|
|
|
];
|