2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Application as IlluminateApplication;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extends \Illuminate\Foundation\Application to override some defaults.
|
|
|
|
*/
|
|
|
|
class Application extends IlluminateApplication
|
|
|
|
{
|
2015-12-28 01:47:32 +00:00
|
|
|
/**
|
|
|
|
* Current Koel version. Must start with a v, and is synced with git tags/releases.
|
|
|
|
*
|
2020-09-06 21:20:42 +00:00
|
|
|
* @see https://github.com/phanan/koel/releases
|
2015-12-28 01:47:32 +00:00
|
|
|
*/
|
2020-06-10 17:55:17 +00:00
|
|
|
public const KOEL_VERSION = 'v4.4.0';
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|