From 635ed4eb28127080e4f831004a9545aad67b8d8e Mon Sep 17 00:00:00 2001 From: Damilola Olowookere Date: Wed, 26 Jun 2019 22:48:49 +0100 Subject: [PATCH] fix compatibility issue with travis for spatie/laravel-fractal --- app/Http/Requests/Jobs/CreateRequest.php | 8 +- app/Http/Requests/Jobs/UpdateRequest.php | 6 +- app/Http/Requests/Projects/CreateRequest.php | 6 +- app/Http/Requests/Projects/UpdateRequest.php | 6 +- app/Http/Requests/Tasks/CreateRequest.php | 7 +- app/Http/Requests/Tasks/UpdateRequest.php | 4 +- composer.json | 2 +- composer.lock | 247 ++++++++++----------- ...le_remove_char_len_limit_of_description_col.php | 4 +- ...le_remove_char_len_limit_of_description_col.php | 4 +- ...le_remove_char_len_limit_of_description_col.php | 4 +- .../views/layouts/partials/lang-switcher.blade.php | 9 +- 12 files changed, 150 insertions(+), 157 deletions(-) diff --git a/app/Http/Requests/Jobs/CreateRequest.php b/app/Http/Requests/Jobs/CreateRequest.php index 75a07d7..fb5b9f5 100644 --- a/app/Http/Requests/Jobs/CreateRequest.php +++ b/app/Http/Requests/Jobs/CreateRequest.php @@ -2,8 +2,8 @@ namespace App\Http\Requests\Jobs; -use App\Entities\Projects\Project; use App\Http\Requests\Request; +use App\Entities\Projects\Project; class CreateRequest extends Request { @@ -27,7 +27,7 @@ class CreateRequest extends Request public function rules() { $rules = [ - 'name' => "required|max:60", + 'name' => 'required|max:60', 'price' => 'required|numeric', 'worker_id' => 'required|numeric', 'type_id' => 'required|numeric', @@ -39,9 +39,9 @@ class CreateRequest extends Request //achieved using environmental variable. //A value of zero (0) will mean "no limit" - $char_len_job_description = intval(env("CHAR_LEN_JOB_DESCRIPTION", 255)); + $char_len_job_description = intval(env('CHAR_LEN_JOB_DESCRIPTION', 255)); if ($char_len_job_description > 0) { - $rules["description"] = "max:$char_len_job_description"; + $rules['description'] = "max:$char_len_job_description"; } return $rules; diff --git a/app/Http/Requests/Jobs/UpdateRequest.php b/app/Http/Requests/Jobs/UpdateRequest.php index 67728c4..9e8ea1e 100644 --- a/app/Http/Requests/Jobs/UpdateRequest.php +++ b/app/Http/Requests/Jobs/UpdateRequest.php @@ -2,8 +2,8 @@ namespace App\Http\Requests\Jobs; -use App\Entities\Projects\Project; use App\Http\Requests\Request; +use App\Entities\Projects\Project; class UpdateRequest extends Request { @@ -37,9 +37,9 @@ class UpdateRequest extends Request //achieved using environmental variable. //A value of zero (0) will mean "no limit" - $char_len_job_description = intval(env("CHAR_LEN_JOB_DESCRIPTION", 255)); + $char_len_job_description = intval(env('CHAR_LEN_JOB_DESCRIPTION', 255)); if ($char_len_job_description > 0) { - $rules["description"] = "max:$char_len_job_description"; + $rules['description'] = "max:$char_len_job_description"; } return $rules; diff --git a/app/Http/Requests/Projects/CreateRequest.php b/app/Http/Requests/Projects/CreateRequest.php index 1c7ab59..06be584 100644 --- a/app/Http/Requests/Projects/CreateRequest.php +++ b/app/Http/Requests/Projects/CreateRequest.php @@ -2,8 +2,8 @@ namespace App\Http\Requests\Projects; -use App\Entities\Projects\Project; use App\Http\Requests\Request; +use App\Entities\Projects\Project; class CreateRequest extends Request { @@ -37,9 +37,9 @@ class CreateRequest extends Request //achieved using environmental variable. //A value of zero (0) will mean "no limit" - $char_len_project_description = intval(env("CHAR_LEN_PROJECT_DESCRIPTION", 255)); + $char_len_project_description = intval(env('CHAR_LEN_PROJECT_DESCRIPTION', 255)); if ($char_len_project_description > 0) { - $rules["description"] = "max:$char_len_project_description"; + $rules['description'] = "max:$char_len_project_description"; } return $rules; diff --git a/app/Http/Requests/Projects/UpdateRequest.php b/app/Http/Requests/Projects/UpdateRequest.php index eee90ac..98d4e02 100644 --- a/app/Http/Requests/Projects/UpdateRequest.php +++ b/app/Http/Requests/Projects/UpdateRequest.php @@ -2,8 +2,8 @@ namespace App\Http\Requests\Projects; -use App\Entities\Projects\Project; use App\Http\Requests\Request; +use App\Entities\Projects\Project; class UpdateRequest extends Request { @@ -42,9 +42,9 @@ class UpdateRequest extends Request //achieved using environmental variable. //A value of zero (0) will mean "no limit" - $char_len_project_description = intval(env("CHAR_LEN_PROJECT_DESCRIPTION", 255)); + $char_len_project_description = intval(env('CHAR_LEN_PROJECT_DESCRIPTION', 255)); if ($char_len_project_description > 0) { - $rules["description"] = "max:$char_len_project_description"; + $rules['description'] = "max:$char_len_project_description"; } return $rules; diff --git a/app/Http/Requests/Tasks/CreateRequest.php b/app/Http/Requests/Tasks/CreateRequest.php index 12a6097..be429fb 100644 --- a/app/Http/Requests/Tasks/CreateRequest.php +++ b/app/Http/Requests/Tasks/CreateRequest.php @@ -2,8 +2,8 @@ namespace App\Http\Requests\Tasks; -use App\Entities\Projects\Task; use App\Http\Requests\Request; +use App\Entities\Projects\Task; class CreateRequest extends Request { @@ -24,7 +24,6 @@ class CreateRequest extends Request */ public function rules() { - $rules = [ 'name' => 'required|max:60', 'progress' => 'required|numeric|max:100', @@ -34,9 +33,9 @@ class CreateRequest extends Request //achieved using environmental variable. //A value of zero (0) will mean "no limit" - $char_len_task_description = intval(env("CHAR_LEN_TASK_DESCRIPTION", 255)); + $char_len_task_description = intval(env('CHAR_LEN_TASK_DESCRIPTION', 255)); if ($char_len_task_description > 0) { - $rules["description"] = "max:$char_len_task_description"; + $rules['description'] = "max:$char_len_task_description"; } return $rules; diff --git a/app/Http/Requests/Tasks/UpdateRequest.php b/app/Http/Requests/Tasks/UpdateRequest.php index caca7c3..6200729 100644 --- a/app/Http/Requests/Tasks/UpdateRequest.php +++ b/app/Http/Requests/Tasks/UpdateRequest.php @@ -35,9 +35,9 @@ class UpdateRequest extends Request //achieved using environmental variable. //A value of zero (0) will mean "no limit" - $char_len_task_description = intval(env("CHAR_LEN_TASK_DESCRIPTION", 255)); + $char_len_task_description = intval(env('CHAR_LEN_TASK_DESCRIPTION', 255)); if ($char_len_task_description > 0) { - $rules["description"] = "max:$char_len_task_description"; + $rules['description'] = "max:$char_len_task_description"; } return $rules; diff --git a/composer.json b/composer.json index e69f437..ebea91e 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "laravel/framework": "5.7.*", "luthfi/formfield": "^1.0", "riskihajar/terbilang": "^1.2", - "spatie/laravel-fractal": "^5.0" + "spatie/laravel-fractal": "<5.5" }, "require-dev": { diff --git a/composer.lock b/composer.lock index e1a7a92..4bae98e 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "7f170e88efec401fd0063daa22be1b51", + "content-hash": "8586ef2012ae029e563ae45306abb909", "packages": [ { "name": "backup-manager/backup-manager", @@ -552,16 +552,16 @@ }, { "name": "egulias/email-validator", - "version": "2.1.8", + "version": "2.1.9", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "c26463ff9241f27907112fbcd0c86fa670cfef98" + "reference": "128cc721d771ec2c46ce59698f4ca42b73f71b25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c26463ff9241f27907112fbcd0c86fa670cfef98", - "reference": "c26463ff9241f27907112fbcd0c86fa670cfef98", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/128cc721d771ec2c46ce59698f4ca42b73f71b25", + "reference": "128cc721d771ec2c46ce59698f4ca42b73f71b25", "shasum": "" }, "require": { @@ -605,7 +605,7 @@ "validation", "validator" ], - "time": "2019-05-16T22:02:54+00:00" + "time": "2019-06-23T10:14:27+00:00" }, { "name": "erusev/parsedown", @@ -1366,16 +1366,16 @@ }, { "name": "league/flysystem", - "version": "1.0.52", + "version": "1.0.53", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "c5a5097156387970e6f0ccfcdf03f752856f3391" + "reference": "08e12b7628f035600634a5e76d95b5eb66cea674" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c5a5097156387970e6f0ccfcdf03f752856f3391", - "reference": "c5a5097156387970e6f0ccfcdf03f752856f3391", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/08e12b7628f035600634a5e76d95b5eb66cea674", + "reference": "08e12b7628f035600634a5e76d95b5eb66cea674", "shasum": "" }, "require": { @@ -1446,7 +1446,7 @@ "sftp", "storage" ], - "time": "2019-05-20T20:21:14+00:00" + "time": "2019-06-18T20:09:29+00:00" }, { "name": "league/fractal", @@ -1514,16 +1514,16 @@ }, { "name": "luthfi/formfield", - "version": "1.0.7", + "version": "1.0.8", "source": { "type": "git", "url": "https://github.com/nafiesl/FormField.git", - "reference": "c8f5e6675c7f71ae6c8e507699e814634a93ad23" + "reference": "9a466afa2856543e4d52826b2368413064fe5a7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nafiesl/FormField/zipball/c8f5e6675c7f71ae6c8e507699e814634a93ad23", - "reference": "c8f5e6675c7f71ae6c8e507699e814634a93ad23", + "url": "https://api.github.com/repos/nafiesl/FormField/zipball/9a466afa2856543e4d52826b2368413064fe5a7e", + "reference": "9a466afa2856543e4d52826b2368413064fe5a7e", "shasum": "" }, "require": { @@ -1562,7 +1562,7 @@ } ], "description": "Laravel Form Field the extension of Laravelcollective Form for Laravel 5.3 and newer with Twitter Bootstrap 3", - "time": "2019-03-21T15:47:57+00:00" + "time": "2019-06-14T02:15:17+00:00" }, { "name": "monolog/monolog", @@ -1644,16 +1644,16 @@ }, { "name": "nesbot/carbon", - "version": "1.38.4", + "version": "1.39.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "8dd4172bfe1784952c4d58c4db725d183b1c23ad" + "reference": "dd62a58af4e0775a45ea5f99d0363d81b7d9a1e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8dd4172bfe1784952c4d58c4db725d183b1c23ad", - "reference": "8dd4172bfe1784952c4d58c4db725d183b1c23ad", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/dd62a58af4e0775a45ea5f99d0363d81b7d9a1e0", + "reference": "dd62a58af4e0775a45ea5f99d0363d81b7d9a1e0", "shasum": "" }, "require": { @@ -1701,7 +1701,7 @@ "datetime", "time" ], - "time": "2019-06-03T15:41:40+00:00" + "time": "2019-06-11T09:07:59+00:00" }, { "name": "nexmo/client", @@ -2500,28 +2500,27 @@ }, { "name": "spatie/laravel-fractal", - "version": "5.5.1", + "version": "5.4.4", "source": { "type": "git", "url": "https://github.com/spatie/laravel-fractal.git", - "reference": "d5061c2463379aeda7c83cb3960981b519eb9e3c" + "reference": "8ff6e6658806ca5778e3ceaa0e54ccc4c3566ce3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-fractal/zipball/d5061c2463379aeda7c83cb3960981b519eb9e3c", - "reference": "d5061c2463379aeda7c83cb3960981b519eb9e3c", + "url": "https://api.github.com/repos/spatie/laravel-fractal/zipball/8ff6e6658806ca5778e3ceaa0e54ccc4c3566ce3", + "reference": "8ff6e6658806ca5778e3ceaa0e54ccc4c3566ce3", "shasum": "" }, "require": { - "illuminate/contracts": "~5.7.0|~5.8.0", - "illuminate/support": "~5.7.0|~5.8.0", - "php": "^7.2", + "illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0|~5.8.0", + "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0", + "php": "^7.1", "spatie/fractalistic": "^2.5" }, "require-dev": { - "dms/phpunit-arraysubset-asserts": "^0.1.0", - "orchestra/testbench": "~3.7.0|~3.8.0", - "phpunit/phpunit": "^8.0" + "orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0", + "phpunit/phpunit": "^6.2|^7.0" }, "type": "library", "extra": { @@ -2565,7 +2564,7 @@ "spatie", "transform" ], - "time": "2019-03-13T14:18:31+00:00" + "time": "2019-02-27T00:32:04+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -2631,16 +2630,16 @@ }, { "name": "symfony/console", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64" + "reference": "b592b26a24265a35172d8a2094d8b10f22b7cc39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/d50bbeeb0e17e6dd4124ea391eff235e932cbf64", - "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64", + "url": "https://api.github.com/repos/symfony/console/zipball/b592b26a24265a35172d8a2094d8b10f22b7cc39", + "reference": "b592b26a24265a35172d8a2094d8b10f22b7cc39", "shasum": "" }, "require": { @@ -2702,11 +2701,11 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-06-05T13:25:51+00:00" + "time": "2019-06-13T11:03:18+00:00" }, { "name": "symfony/css-selector", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -2759,16 +2758,16 @@ }, { "name": "symfony/debug", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "4e025104f1f9adb1f7a2d14fb102c9986d6e97c6" + "reference": "d8f4fb38152e0eb6a433705e5f661d25b32c5fcd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/4e025104f1f9adb1f7a2d14fb102c9986d6e97c6", - "reference": "4e025104f1f9adb1f7a2d14fb102c9986d6e97c6", + "url": "https://api.github.com/repos/symfony/debug/zipball/d8f4fb38152e0eb6a433705e5f661d25b32c5fcd", + "reference": "d8f4fb38152e0eb6a433705e5f661d25b32c5fcd", "shasum": "" }, "require": { @@ -2811,20 +2810,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-05-30T16:10:05+00:00" + "time": "2019-06-19T15:27:09+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "4e6c670af81c4fb0b6c08b035530a9915d0b691f" + "reference": "d257021c1ab28d48d24a16de79dfab445ce93398" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4e6c670af81c4fb0b6c08b035530a9915d0b691f", - "reference": "4e6c670af81c4fb0b6c08b035530a9915d0b691f", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d257021c1ab28d48d24a16de79dfab445ce93398", + "reference": "d257021c1ab28d48d24a16de79dfab445ce93398", "shasum": "" }, "require": { @@ -2881,20 +2880,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-05-30T16:10:05+00:00" + "time": "2019-06-13T11:03:18+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.1", + "version": "v1.1.5", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "8fa2cf2177083dd59cf8e44ea4b6541764fbda69" + "reference": "c61766f4440ca687de1084a5c00b08e167a2575c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8fa2cf2177083dd59cf8e44ea4b6541764fbda69", - "reference": "8fa2cf2177083dd59cf8e44ea4b6541764fbda69", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c61766f4440ca687de1084a5c00b08e167a2575c", + "reference": "c61766f4440ca687de1084a5c00b08e167a2575c", "shasum": "" }, "require": { @@ -2939,20 +2938,20 @@ "interoperability", "standards" ], - "time": "2019-05-22T12:23:29+00:00" + "time": "2019-06-20T06:46:26+00:00" }, { "name": "symfony/finder", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "b3d4f4c0e4eadfdd8b296af9ca637cfbf51d8176" + "reference": "33c21f7d5d3dc8a140c282854a7e13aeb5d0f91a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/b3d4f4c0e4eadfdd8b296af9ca637cfbf51d8176", - "reference": "b3d4f4c0e4eadfdd8b296af9ca637cfbf51d8176", + "url": "https://api.github.com/repos/symfony/finder/zipball/33c21f7d5d3dc8a140c282854a7e13aeb5d0f91a", + "reference": "33c21f7d5d3dc8a140c282854a7e13aeb5d0f91a", "shasum": "" }, "require": { @@ -2988,20 +2987,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-05-26T20:47:49+00:00" + "time": "2019-06-13T11:03:18+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "b7e4945dd9b277cd24e93566e4da0a87956392a9" + "reference": "e1b507fcfa4e87d192281774b5ecd4265370180d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b7e4945dd9b277cd24e93566e4da0a87956392a9", - "reference": "b7e4945dd9b277cd24e93566e4da0a87956392a9", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e1b507fcfa4e87d192281774b5ecd4265370180d", + "reference": "e1b507fcfa4e87d192281774b5ecd4265370180d", "shasum": "" }, "require": { @@ -3043,20 +3042,20 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2019-06-06T10:05:02+00:00" + "time": "2019-06-26T09:25:00+00:00" }, { "name": "symfony/http-kernel", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "738ad561cd6a8d1c44ee1da941b2e628e264c429" + "reference": "4150f71e27ed37a74700561b77e3dbd754cbb44d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/738ad561cd6a8d1c44ee1da941b2e628e264c429", - "reference": "738ad561cd6a8d1c44ee1da941b2e628e264c429", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4150f71e27ed37a74700561b77e3dbd754cbb44d", + "reference": "4150f71e27ed37a74700561b77e3dbd754cbb44d", "shasum": "" }, "require": { @@ -3135,11 +3134,11 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2019-06-06T13:23:34+00:00" + "time": "2019-06-26T14:26:16+00:00" }, { "name": "symfony/mime", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", @@ -3549,7 +3548,7 @@ }, { "name": "symfony/process", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/process.git", @@ -3598,16 +3597,16 @@ }, { "name": "symfony/routing", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "9b31cd24f6ad2cebde6845f6daa9c6d69efe2465" + "reference": "2ef809021d72071c611b218c47a3bf3b17b7325e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/9b31cd24f6ad2cebde6845f6daa9c6d69efe2465", - "reference": "9b31cd24f6ad2cebde6845f6daa9c6d69efe2465", + "url": "https://api.github.com/repos/symfony/routing/zipball/2ef809021d72071c611b218c47a3bf3b17b7325e", + "reference": "2ef809021d72071c611b218c47a3bf3b17b7325e", "shasum": "" }, "require": { @@ -3670,27 +3669,27 @@ "uri", "url" ], - "time": "2019-06-05T09:16:20+00:00" + "time": "2019-06-26T13:54:39+00:00" }, { "name": "symfony/service-contracts", - "version": "v1.1.2", + "version": "v1.1.5", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0" + "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0", - "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d", + "reference": "f391a00de78ec7ec8cf5cdcdae59ec7b883edb8d", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.1.3", + "psr/container": "^1.0" }, "suggest": { - "psr/container": "", "symfony/service-implementation": "" }, "type": "library", @@ -3728,20 +3727,20 @@ "interoperability", "standards" ], - "time": "2019-05-28T07:50:59+00:00" + "time": "2019-06-13T11:15:36+00:00" }, { "name": "symfony/translation", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "5dda505e5f65d759741dfaf4e54b36010a4b57aa" + "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/5dda505e5f65d759741dfaf4e54b36010a4b57aa", - "reference": "5dda505e5f65d759741dfaf4e54b36010a4b57aa", + "url": "https://api.github.com/repos/symfony/translation/zipball/934ab1d18545149e012aa898cf02e9f23790f7a0", + "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0", "shasum": "" }, "require": { @@ -3804,20 +3803,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2019-06-03T20:27:40+00:00" + "time": "2019-06-13T11:03:18+00:00" }, { "name": "symfony/translation-contracts", - "version": "v1.1.2", + "version": "v1.1.5", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "93597ce975d91c52ebfaca1253343cd9ccb7916d" + "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/93597ce975d91c52ebfaca1253343cd9ccb7916d", - "reference": "93597ce975d91c52ebfaca1253343cd9ccb7916d", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/cb4b18ad7b92a26e83b65dde940fab78339e6f3c", + "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c", "shasum": "" }, "require": { @@ -3861,20 +3860,20 @@ "interoperability", "standards" ], - "time": "2019-05-27T08:16:38+00:00" + "time": "2019-06-13T11:15:36+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b" + "reference": "45d6ef73671995aca565a1aa3d9a432a3ea63f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f974f448154928d2b5fb7c412bd23b81d063f34b", - "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/45d6ef73671995aca565a1aa3d9a432a3ea63f91", + "reference": "45d6ef73671995aca565a1aa3d9a432a3ea63f91", "shasum": "" }, "require": { @@ -3937,7 +3936,7 @@ "debug", "dump" ], - "time": "2019-06-05T02:08:12+00:00" + "time": "2019-06-17T17:37:00+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -4107,16 +4106,16 @@ "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.2.3", + "version": "v3.2.4", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "5fcba4cc8e92a230b13b99c1083fc22ba8a5c479" + "reference": "2d195779ea4f809f69764a795e2ec371dbb76a96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/5fcba4cc8e92a230b13b99c1083fc22ba8a5c479", - "reference": "5fcba4cc8e92a230b13b99c1083fc22ba8a5c479", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/2d195779ea4f809f69764a795e2ec371dbb76a96", + "reference": "2d195779ea4f809f69764a795e2ec371dbb76a96", "shasum": "" }, "require": { @@ -4171,7 +4170,7 @@ "profiler", "webprofiler" ], - "time": "2019-02-26T18:01:54+00:00" + "time": "2019-03-25T09:39:08+00:00" }, { "name": "doctrine/instantiator", @@ -4921,16 +4920,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.8.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", - "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76", + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76", "shasum": "" }, "require": { @@ -4951,8 +4950,8 @@ } }, "autoload": { - "psr-0": { - "Prophecy\\": "src/" + "psr-4": { + "Prophecy\\": "src/Prophecy" } }, "notification-url": "https://packagist.org/downloads/", @@ -4980,7 +4979,7 @@ "spy", "stub" ], - "time": "2018-08-05T17:53:17+00:00" + "time": "2019-06-13T12:50:23+00:00" }, { "name": "phpunit/php-code-coverage", @@ -5236,16 +5235,16 @@ }, { "name": "phpunit/phpunit", - "version": "7.5.12", + "version": "7.5.13", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "9ba59817745b0fe0c1a5a3032dfd4a6d2994ad1c" + "reference": "b9278591caa8630127f96c63b598712b699e671c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9ba59817745b0fe0c1a5a3032dfd4a6d2994ad1c", - "reference": "9ba59817745b0fe0c1a5a3032dfd4a6d2994ad1c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b9278591caa8630127f96c63b598712b699e671c", + "reference": "b9278591caa8630127f96c63b598712b699e671c", "shasum": "" }, "require": { @@ -5316,7 +5315,7 @@ "testing", "xunit" ], - "time": "2019-05-28T11:59:40+00:00" + "time": "2019-06-19T12:01:51+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -5886,16 +5885,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v4.3.1", + "version": "v4.3.2", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "06ee58fbc9a8130f1d35b5280e15235a0515d457" + "reference": "291397232a2eefb3347eaab9170409981eaad0e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/06ee58fbc9a8130f1d35b5280e15235a0515d457", - "reference": "06ee58fbc9a8130f1d35b5280e15235a0515d457", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/291397232a2eefb3347eaab9170409981eaad0e2", + "reference": "291397232a2eefb3347eaab9170409981eaad0e2", "shasum": "" }, "require": { @@ -5943,20 +5942,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-05-31T18:55:30+00:00" + "time": "2019-06-13T11:03:18+00:00" }, { "name": "theseer/tokenizer", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8" + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8", - "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", "shasum": "" }, "require": { @@ -5983,7 +5982,7 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2019-04-04T09:56:43+00:00" + "time": "2019-06-13T22:48:21+00:00" }, { "name": "webmozart/assert", diff --git a/database/migrations/2019_06_10_143715_update_projects_table_remove_char_len_limit_of_description_col.php b/database/migrations/2019_06_10_143715_update_projects_table_remove_char_len_limit_of_description_col.php index c5963a9..fec127f 100644 --- a/database/migrations/2019_06_10_143715_update_projects_table_remove_char_len_limit_of_description_col.php +++ b/database/migrations/2019_06_10_143715_update_projects_table_remove_char_len_limit_of_description_col.php @@ -1,8 +1,8 @@ - -
-
-
-
+
{{-- {{ trans('lang.lang') }} : --}} @foreach (['en', 'id', 'de'] as $langKey) - @break + {{-- @break --}} {!! FormField::formButton( [ 'route' => 'users.profile.switch-lang',