1
0
Fork 0
mirror of synced 2024-09-28 07:21:35 +12:00

Upgraded to new versions

This commit is contained in:
Matej Bačo 2022-04-04 13:55:26 +00:00
parent eb15be81dd
commit e503756bf9
6 changed files with 2 additions and 12 deletions

View file

@ -135,8 +135,6 @@ const APP_AUTH_TYPE_ADMIN = 'Admin';
// Response related
const MAX_OUTPUT_CHUNK_SIZE = 2*1024*1024; // 2MB
Cache::setCaseSensitivity(false);
$register = new Registry();
App::setMode(App::getEnv('_APP_ENV', App::MODE_TYPE_PRODUCTION));

View file

@ -31,8 +31,6 @@ require_once __DIR__ . '/init.php';
Runtime::enableCoroutine(SWOOLE_HOOK_ALL);
Cache::setCaseSensitivity(false);
$realtime = new Realtime();
/**

View file

@ -12,8 +12,6 @@ use Utopia\Database\Database;
use Utopia\Database\Validator\Authorization;
use Utopia\Validator\Text;
Cache::setCaseSensitivity(false);
$cli
->task('migrate')
->param('version', APP_VERSION_STABLE, new Text(8), 'Version to migrate to.', true)

View file

@ -11,8 +11,6 @@ use Utopia\Database\Database;
use Utopia\Database\Document;
use Utopia\Database\Validator\Authorization;
Cache::setCaseSensitivity(false);
/**
* Metrics We collect
*

View file

@ -42,10 +42,10 @@
"utopia-php/abuse": "0.7.*",
"utopia-php/analytics": "0.2.*",
"utopia-php/audit": "0.8.*",
"utopia-php/cache": "0.5.*",
"utopia-php/cache": "0.6.*",
"utopia-php/cli": "0.12.*",
"utopia-php/config": "0.2.*",
"utopia-php/database": "dev-feat-cache-upgrate as 0.15.1",
"utopia-php/database": "0.15.*",
"utopia-php/locale": "0.4.*",
"utopia-php/registry": "0.5.*",
"utopia-php/preloader": "0.2.*",

View file

@ -16,8 +16,6 @@ use Utopia\Storage\Device\S3;
use Exception;
Cache::setCaseSensitivity(false);
abstract class Worker
{
/**