Skip to content

Commit 9bcb141

Browse files
authored
Merge pull request #327 from djoudi/master
add laravel 6.0 support
2 parents 9e5548a + 4af872c commit 9bcb141

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
],
1616
"require": {
1717
"php": ">=7",
18-
"illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x",
19-
"illuminate/translation": "5.5.x|5.6.x|5.7.x|5.8.x",
20-
"symfony/finder": "~3.0|~4.0",
21-
"tanmuhittin/laravel-google-translate": "^0.11.0"
18+
"illuminate/support": "^5.5|^6",
19+
"illuminate/translation": "^5.5|^6",
20+
"symfony/finder": "^3|^4",
21+
"tanmuhittin/laravel-google-translate": "^1.0.1"
2222
},
2323
"autoload": {
2424
"psr-4": {

database/migrations/2014_04_02_193005_create_translations_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
Schema::create('ltm_translations', function(Blueprint $table)
1616
{
1717
$table->collation = 'utf8mb4_bin';
18-
$table->increments('id');
18+
$table->bigIncrements('id');
1919
$table->integer('status')->default(0);
2020
$table->string('locale');
2121
$table->string('group');

0 commit comments

Comments
 (0)