Skip to content

Commit

Permalink
Merge pull request #327 from djoudi/master
Browse files Browse the repository at this point in the history
add laravel 6.0 support
  • Loading branch information
barryvdh committed Sep 5, 2019
2 parents 9e5548a + 4af872c commit 9bcb141
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 9bcb141

Please sign in to comment.