firefly-iii/config/upgrade.php

30 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* upgrade.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2017-04-09 00:56:46 -05:00
declare(strict_types=1);
2016-05-20 01:57:45 -05:00
return [
'text' => [
'upgrade' =>
[
2017-07-23 02:54:07 -05:00
'4.3' => 'Make sure you run the migrations and clear your cache. If you need more help, please check Github or the Firefly III website.',
'4.6.3' => 'This will be the last version to require PHP7.0. Future versions will require PHP7.1 minimum.',
2017-08-12 00:47:42 -05:00
'4.6.4' => 'This version of Firefly III requires PHP7.1.'
],
'install' =>
[
2017-07-23 02:54:07 -05:00
'4.3' => 'Welcome to Firefly! Make sure you follow the installation guide. If you need more help, please check Github or the Firefly III website. The installation guide has a FAQ which you should check out as well.',
'4.6.3' => 'This will be the last version to require PHP7.0. Future versions will require PHP7.1 minimum.',
2017-08-10 13:52:10 -05:00
'4.6.4' => 'This version of Firefly III requires PHP7.1.'
],
],
];