diff --git a/composer.json b/composer.json index 1e821eb4..4ef48074 100644 --- a/composer.json +++ b/composer.json @@ -15,10 +15,10 @@ ], "require": { "php": ">=7", - "illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x", - "illuminate/translation": "5.5.x|5.6.x|5.7.x|5.8.x", - "symfony/finder": "~3.0|~4.0", - "tanmuhittin/laravel-google-translate": "^0.11.0" + "illuminate/support": "^5.5|^6", + "illuminate/translation": "^5.5|^6", + "symfony/finder": "^3|^4", + "tanmuhittin/laravel-google-translate": "^1.0.1" }, "autoload": { "psr-4": { diff --git a/database/migrations/2014_04_02_193005_create_translations_table.php b/database/migrations/2014_04_02_193005_create_translations_table.php index 8b17bee9..053d09c2 100644 --- a/database/migrations/2014_04_02_193005_create_translations_table.php +++ b/database/migrations/2014_04_02_193005_create_translations_table.php @@ -15,7 +15,7 @@ public function up() Schema::create('ltm_translations', function(Blueprint $table) { $table->collation = 'utf8mb4_bin'; - $table->increments('id'); + $table->bigIncrements('id'); $table->integer('status')->default(0); $table->string('locale'); $table->string('group');