From 3b4c0250dd6a870da65f083a0369b2e17e1af7cd Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Wed, 5 Sep 2018 09:30:10 +0100 Subject: [PATCH 01/46] New translations forms.php (Chinese Simplified) --- resources/lang/zh-CN/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 4f5c1dfc..362bf3c3 100644 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => '状态页刷新速度(秒)', 'major_outage_rate' => 'Major outage threshold (in %)', 'banner' => '横幅图像', - 'banner-help' => '建议上传文件宽度不大于 930 像素。', + 'banner-help' => "建议上传文件宽度不大于 930 像素。", 'subscribers' => '允许用户订阅邮件通知', 'suppress_notifications_in_maintenance' => '当计划维护发生时静默处理事件通知?', 'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)', From ba0fdf1368c219a6368566dc6ade71388d014cf0 Mon Sep 17 00:00:00 2001 From: Anthony Bocci Date: Fri, 21 Sep 2018 19:51:01 +0200 Subject: [PATCH 02/46] Include the partial "about-app" In the settings it's possible to fill a field "About this page". If we refer to the demo the content of this field is supposed to be shown under the status on the status page. The problem was the information was not shown even if it was not empty. So if we typed "We are a company ...", this was not shown, nowhere. Technically the problem was because the partial "about-app" was not included so the information was never shown. To fix that I have included the partial "about-app" in the index. Now if the field empty nothing is shown (the same as before) but if the field is not empty so the information is shown under the status bar. See: #3249 --- resources/views/index.blade.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php index 00561e2d..a76f68d9 100644 --- a/resources/views/index.blade.php +++ b/resources/views/index.blade.php @@ -3,6 +3,7 @@ @section('content') @include('partials.modules.messages') @include('partials.modules.status') +@include('partials.about-app') @include('partials.modules.components') @include('partials.modules.metrics') @include('partials.modules.stickied') From 1fdb7909d317afcf12f08b2dd9b732b5adab6906 Mon Sep 17 00:00:00 2001 From: thomasxd24 Date: Fri, 5 Oct 2018 19:34:00 +0200 Subject: [PATCH 03/46] Revert schedule maintenance commit of de172e5defa4ac226044e3066413487fdee49de0 have made the schedule maintenance disappear completely. This PR reverts the change. Please fix the change or revert back. --- app/Models/Schedule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Schedule.php b/app/Models/Schedule.php index cab081de..3f857cbd 100644 --- a/app/Models/Schedule.php +++ b/app/Models/Schedule.php @@ -176,7 +176,7 @@ class Schedule extends Model implements HasPresenter */ public function scopeFutureSchedules($query) { - return $query->whereIn('status', [self::UPCOMING, self::IN_PROGRESS])->where('completed_at', '>=', Carbon::now()); + return $query->whereIn('status', [self::UPCOMING, self::IN_PROGRESS])->where('scheduled_at', '>=', Carbon::now()); } /** From d81ae71adc52f2d909a16ead236d979c796b84b2 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:32 +0100 Subject: [PATCH 04/46] New translations cachet.php (Afrikaans) --- resources/lang/af-ZA/cachet.php | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/resources/lang/af-ZA/cachet.php b/resources/lang/af-ZA/cachet.php index 3d598e78..5cc3b579 100644 --- a/resources/lang/af-ZA/cachet.php +++ b/resources/lang/af-ZA/cachet.php @@ -15,14 +15,16 @@ return [ 'last_updated' => 'Last updated :timestamp', 'status' => [ 0 => 'Unknown', - 1 => 'Operational', - 2 => 'Performance Issues', - 3 => 'Partial Outage', - 4 => 'Major Outage', + 1 => 'Operasioneel', + 2 => 'Prestasieprobleme', + 3 => 'Gedeeltelike Onderbreking', + 4 => 'Groot Onderbreking', ], 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Teken aan', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', @@ -133,7 +138,7 @@ return [ 'home' => 'Tuiste', 'powered_by' => 'Powered by Cachet.', 'timezone' => 'Times are shown in :timezone.', - 'about_this_site' => 'About This Site', + 'about_this_site' => 'Aangaande Hierdie Webwerf', 'rss-feed' => 'RSS', 'atom-feed' => 'Atom', 'feed' => 'Status Feed', From c20c727938a9a021ef4fd63b22753a1bae32c586 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:35 +0100 Subject: [PATCH 05/46] New translations cachet.php (Polish) --- resources/lang/pl-PL/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/pl-PL/cachet.php b/resources/lang/pl-PL/cachet.php index 766192a5..31bfa414 100644 --- a/resources/lang/pl-PL/cachet.php +++ b/resources/lang/pl-PL/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Pozostałe komponenty', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Abonnieren', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Jesteś obecnie zapisany na wszystkie aktualizacje.', - 'my_subscriptions' => 'Jesteś obecnie zapisany na poniższe aktualizacje.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Benachrichtigungen', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Jesteś obecnie zapisany na wszystkie aktualizacje.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Jesteś obecnie zapisany na poniższe aktualizacje.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Aktualisierungen per E-Mail abonnieren.', From c49452c8b288bd2ce33fa91e5e975c899be74e34 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:40 +0100 Subject: [PATCH 06/46] New translations cachet.php (Portuguese) --- resources/lang/pt-PT/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/pt-PT/cachet.php b/resources/lang/pt-PT/cachet.php index a1d4e4b5..3e09f595 100644 --- a/resources/lang/pt-PT/cachet.php +++ b/resources/lang/pt-PT/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscrever', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notificações', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscrever actualizações via email.', From ac24c4870fae88faf40c2d0d2396266989dceac8 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:44 +0100 Subject: [PATCH 07/46] New translations cachet.php (Portuguese, Brazilian) --- resources/lang/pt-BR/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/pt-BR/cachet.php b/resources/lang/pt-BR/cachet.php index a0ef5fd2..7c33736f 100644 --- a/resources/lang/pt-BR/cachet.php +++ b/resources/lang/pt-BR/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Outros componentes', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Inscreva-se', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Você está atualmente inscrito a todas as atualizações.', - 'my_subscriptions' => 'Você está atualmente inscrito para as seguintes atualizações.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notificações', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Você está atualmente inscrito a todas as atualizações.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Você está atualmente inscrito para as seguintes atualizações.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Inscreva-se para atualizações via e-mail.', From e3739fc50e1e8aa1150c9817783e6b9ae8901455 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:49 +0100 Subject: [PATCH 08/46] New translations cachet.php (Romanian) --- resources/lang/ro-RO/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/ro-RO/cachet.php b/resources/lang/ro-RO/cachet.php index 688cb885..d2511a10 100644 --- a/resources/lang/ro-RO/cachet.php +++ b/resources/lang/ro-RO/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Alte Componente', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Abonează-te', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Acum eşti abonat la toate actualizările.', - 'my_subscriptions' => 'Acum eşti abonat la următoarele actualizări.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notificări', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Acum eşti abonat la toate actualizările.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Acum eşti abonat la următoarele actualizări.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Abonează-te la actualizări prin email.', From 1ef86b168295f1ce1d14b41d73100fa273d82091 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:55 +0100 Subject: [PATCH 09/46] New translations cachet.php (Japanese) --- resources/lang/ja-JP/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/ja-JP/cachet.php b/resources/lang/ja-JP/cachet.php index a5afa793..13456c42 100644 --- a/resources/lang/ja-JP/cachet.php +++ b/resources/lang/ja-JP/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'その他のコンポーネント', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => '購読', 'manage_subscription' => '購読の管理', 'manage' => [ - 'no_subscriptions' => '現在、すべてのアップデートを購読しています。', - 'my_subscriptions' => '現在、以下のアップデートを購読しています。', - 'manage_at_link' => '購読の管理', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => '現在、すべてのアップデートを購読しています。', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => '現在、以下のアップデートを購読しています。', + 'manage_at_link' => '購読の管理', ], 'email' => [ 'subscribe' => 'メールによるアップデート情報の購読', From b2dbce0886cf6eaab0f0b46b5efea8e46e1aa175 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:10:59 +0100 Subject: [PATCH 10/46] New translations cachet.php (Korean) --- resources/lang/ko-KR/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/ko-KR/cachet.php b/resources/lang/ko-KR/cachet.php index e827aca5..40cdbc39 100644 --- a/resources/lang/ko-KR/cachet.php +++ b/resources/lang/ko-KR/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => '구독', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => '이메일 구독 신청.', From 15b66db8355a89628bc135fdb44f768c647ac7f1 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:03 +0100 Subject: [PATCH 11/46] New translations cachet.php (Norwegian) --- resources/lang/no-NO/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/no-NO/cachet.php b/resources/lang/no-NO/cachet.php index 04d3d63d..62fb9752 100644 --- a/resources/lang/no-NO/cachet.php +++ b/resources/lang/no-NO/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Andre komponenter', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Abonner', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Du abonnerer for øyeblikket på alle oppdateringer.', - 'my_subscriptions' => 'Du abonnerer for øyeblikket på følgende oppdateringer.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Du abonnerer for øyeblikket på alle oppdateringer.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Du abonnerer for øyeblikket på følgende oppdateringer.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Abonner på e-postoppdateringer.', From 0c4094638453c4ba069b28707ba1c18d589c0f8a Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:06 +0100 Subject: [PATCH 12/46] New translations forms.php (Norwegian) --- resources/lang/no-NO/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/no-NO/forms.php b/resources/lang/no-NO/forms.php index 1e947d8d..5e214a6f 100644 --- a/resources/lang/no-NO/forms.php +++ b/resources/lang/no-NO/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => 'Statusside oppdateringsfrekvens (i sekunder)', 'major_outage_rate' => 'Større brudd terskel (i %)', 'banner' => 'Bannerbilde', - 'banner-help' => 'Det anbefales at du ikke laster opp bilder bredere enn 930 piksler', + 'banner-help' => "Det anbefales at du ikke laster opp bilder bredere enn 930 piksler", 'subscribers' => 'Allow people to signup to email notifications?', 'suppress_notifications_in_maintenance' => 'Utelat notifikasjoner når hendelse inntreffer under vedlikeholdsperiode?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', From c0c26771062bb7a4b2aca6a5752a19071b81c420 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:09 +0100 Subject: [PATCH 13/46] New translations cachet.php (Persian) --- resources/lang/fa-IR/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/fa-IR/cachet.php b/resources/lang/fa-IR/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/fa-IR/cachet.php +++ b/resources/lang/fa-IR/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From d4ca237d26b66d3f7cfd1ffe7478ea49e9738d33 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:17 +0100 Subject: [PATCH 14/46] New translations cachet.php (Ukrainian) --- resources/lang/uk-UA/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/uk-UA/cachet.php b/resources/lang/uk-UA/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/uk-UA/cachet.php +++ b/resources/lang/uk-UA/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 61c20bcdcfcc32b8a245626f1188fc0f22456437 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:21 +0100 Subject: [PATCH 15/46] New translations cachet.php (Vietnamese) --- resources/lang/vi-VN/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/vi-VN/cachet.php b/resources/lang/vi-VN/cachet.php index 29b75c44..8f44d6c1 100644 --- a/resources/lang/vi-VN/cachet.php +++ b/resources/lang/vi-VN/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 5bd640953e96515b1c281ed231d70c59d1cdfd0b Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:26 +0100 Subject: [PATCH 16/46] New translations cachet.php (Zulu) --- resources/lang/zu-ZA/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/zu-ZA/cachet.php b/resources/lang/zu-ZA/cachet.php index 329bfbaa..e5a520f0 100644 --- a/resources/lang/zu-ZA/cachet.php +++ b/resources/lang/zu-ZA/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'crwdns883:0crwdne883:0', ], + 'select_all' => 'crwdns1510:0crwdne1510:0', + 'deselect_all' => 'crwdns1512:0crwdne1512:0', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'crwdns909:0crwdne909:0', 'manage_subscription' => 'crwdns1448:0crwdne1448:0', 'manage' => [ - 'no_subscriptions' => 'crwdns910:0crwdne910:0', - 'my_subscriptions' => 'crwdns911:0crwdne911:0', - 'manage_at_link' => 'crwdns1432:0crwdne1432:0', + 'notifications' => 'crwdns1514:0crwdne1514:0', + 'notifications_for' => 'crwdns1516:0crwdne1516:0', + 'no_subscriptions' => 'crwdns910:0crwdne910:0', + 'update_subscription' => 'crwdns1518:0crwdne1518:0', + 'my_subscriptions' => 'crwdns911:0crwdne911:0', + 'manage_at_link' => 'crwdns1432:0crwdne1432:0', ], 'email' => [ 'subscribe' => 'crwdns912:0crwdne912:0', From 9f6ca366dd759e2f56e7e4210b8c210dc5afee53 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:27 +0100 Subject: [PATCH 17/46] New translations forms.php (Zulu) --- resources/lang/zu-ZA/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/zu-ZA/forms.php b/resources/lang/zu-ZA/forms.php index 36c814b0..8df4bde5 100644 --- a/resources/lang/zu-ZA/forms.php +++ b/resources/lang/zu-ZA/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => 'crwdns1434:0crwdne1434:0', 'major_outage_rate' => 'crwdns1444:0crwdne1444:0', 'banner' => 'crwdns1195:0crwdne1195:0', - 'banner-help' => 'crwdns1435:0crwdne1435:0', + 'banner-help' => "crwdns1435:0crwdne1435:0", 'subscribers' => 'crwdns1197:0crwdne1197:0', 'suppress_notifications_in_maintenance' => 'crwdns1427:0crwdne1427:0', 'skip_subscriber_verification' => 'crwdns1198:0crwdne1198:0', From 4c2639eec7143ae918c17e230b46fe41afd33247 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:30 +0100 Subject: [PATCH 18/46] New translations cachet.php (Turkish) --- resources/lang/tr-TR/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/tr-TR/cachet.php b/resources/lang/tr-TR/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/tr-TR/cachet.php +++ b/resources/lang/tr-TR/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 457e4ec83e9b13cdbf281e82deac6e9509406a75 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:33 +0100 Subject: [PATCH 19/46] New translations cachet.php (Russian) --- resources/lang/ru-RU/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/ru-RU/cachet.php b/resources/lang/ru-RU/cachet.php index 10ffe5cc..c3ff50b8 100644 --- a/resources/lang/ru-RU/cachet.php +++ b/resources/lang/ru-RU/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Другие компоненты', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Подписаться', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Вы подписаны на все изменения.', - 'my_subscriptions' => 'Вы подписаны на следующие изменения.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Уведомления', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Вы подписаны на все изменения.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Вы подписаны на следующие изменения.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Подписка на рассылку об изменениях.', From 630820e83e12f0649ba16f3a649d18f30de7b1ba Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:37 +0100 Subject: [PATCH 20/46] New translations cachet.php (Spanish) --- resources/lang/es-ES/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/es-ES/cachet.php b/resources/lang/es-ES/cachet.php index 8d75c5af..f601bd22 100644 --- a/resources/lang/es-ES/cachet.php +++ b/resources/lang/es-ES/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Otros componentes', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Suscríbete', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Actualmente estás suscrito a todas las actualizaciones.', - 'my_subscriptions' => 'Actualmente estás suscrito a las siguientes actualizaciones.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notificaciones', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Actualmente estás suscrito a todas las actualizaciones.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Actualmente estás suscrito a las siguientes actualizaciones.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Suscríbete para recibir actualizaciones por correo electrónico.', From 858209ab1cfff5233bd26e40ed6afa931e86c7f1 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:41 +0100 Subject: [PATCH 21/46] New translations cachet.php (Swedish) --- resources/lang/sv-SE/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/sv-SE/cachet.php b/resources/lang/sv-SE/cachet.php index 046c9bb8..e547cab7 100644 --- a/resources/lang/sv-SE/cachet.php +++ b/resources/lang/sv-SE/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Prenumerera', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifieringar', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Prenumerera på epost-uppdateringar.', From 38afd983b987387d473d2ac56870e37c6fd6a0b4 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:45 +0100 Subject: [PATCH 22/46] New translations cachet.php (Thai) --- resources/lang/th-TH/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/th-TH/cachet.php b/resources/lang/th-TH/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/th-TH/cachet.php +++ b/resources/lang/th-TH/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From fee3dc49243b5d55fbcb5977459f230bc171a6fe Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:48 +0100 Subject: [PATCH 23/46] New translations cachet.php (Italian) --- resources/lang/it-IT/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/it-IT/cachet.php b/resources/lang/it-IT/cachet.php index 1e635c52..98ee4a3b 100644 --- a/resources/lang/it-IT/cachet.php +++ b/resources/lang/it-IT/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Altri componenti', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Iscriviti', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Sei attualmente iscritto a tutti gli aggiornamenti.', - 'my_subscriptions' => 'Sei attualmente iscritto ai seguenti suggerimenti.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifiche', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Sei attualmente iscritto a tutti gli aggiornamenti.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Sei attualmente iscritto ai seguenti suggerimenti.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Iscriviti agli aggiornamenti via email.', From d03c0cb1ab527216042607539260da7a0fee995c Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:52 +0100 Subject: [PATCH 24/46] New translations cachet.php (Chinese Traditional) --- resources/lang/zh-TW/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/zh-TW/cachet.php b/resources/lang/zh-TW/cachet.php index 192485a6..c5223822 100644 --- a/resources/lang/zh-TW/cachet.php +++ b/resources/lang/zh-TW/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => '通知', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 8fd42ad2e53fb86a1008d79fd58c0688f5481be2 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:11:56 +0100 Subject: [PATCH 25/46] New translations cachet.php (Czech) --- resources/lang/cs-CZ/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/cs-CZ/cachet.php b/resources/lang/cs-CZ/cachet.php index e65c6d21..342f9c3c 100644 --- a/resources/lang/cs-CZ/cachet.php +++ b/resources/lang/cs-CZ/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Aktuálně jsi přihlášen(a) ke všem upozorněním.', - 'my_subscriptions' => 'Aktuálně jsi přihlášen(a) k následujícím upozorněním.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Aktuálně jsi přihlášen(a) ke všem upozorněním.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Aktuálně jsi přihlášen(a) k následujícím upozorněním.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From d9201c44642d0d348eb85d30a257ff833daf3be0 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:00 +0100 Subject: [PATCH 26/46] New translations cachet.php (Danish) --- resources/lang/da-DK/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/da-DK/cachet.php b/resources/lang/da-DK/cachet.php index 401e871f..7b224734 100644 --- a/resources/lang/da-DK/cachet.php +++ b/resources/lang/da-DK/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Andre komponenter', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Abonner', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Du abonner i øjeblikket på alle opdateringer.', - 'my_subscriptions' => 'Du abonnere i øjeblikket på følgende opdateringer.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifikationer', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Du abonner i øjeblikket på alle opdateringer.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Du abonnere i øjeblikket på følgende opdateringer.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Abonner på email opdateringer.', From 2eb539e80e3dfb749635a7c382286f0f0ef4d673 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:04 +0100 Subject: [PATCH 27/46] New translations cachet.php (Dutch) --- resources/lang/nl-NL/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/nl-NL/cachet.php b/resources/lang/nl-NL/cachet.php index 4bbf2134..54f0559d 100644 --- a/resources/lang/nl-NL/cachet.php +++ b/resources/lang/nl-NL/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Andere componenten', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Abonneren', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Je bent momenteel geabonneerd op alle updates.', - 'my_subscriptions' => 'Je bent momenteel geabonneerd op de volgende updates.', - 'manage_at_link' => 'Beheer uw abonnementen op: link', + 'notifications' => 'Notificaties', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Je bent momenteel geabonneerd op alle updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Je bent momenteel geabonneerd op de volgende updates.', + 'manage_at_link' => 'Beheer uw abonnementen op: link', ], 'email' => [ 'subscribe' => 'Abonneren op e-mail updates.', From 43ff72361378005b9e620ec730449ceaede2432c Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:07 +0100 Subject: [PATCH 28/46] New translations cachet.php (Arabic) --- resources/lang/ar-SA/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/ar-SA/cachet.php b/resources/lang/ar-SA/cachet.php index 97fbd7dc..08949712 100644 --- a/resources/lang/ar-SA/cachet.php +++ b/resources/lang/ar-SA/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 3761d16810f88bd77ca8797ab9104848851a0e49 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:10 +0100 Subject: [PATCH 29/46] New translations cachet.php (Albanian) --- resources/lang/sq-AL/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/sq-AL/cachet.php b/resources/lang/sq-AL/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/sq-AL/cachet.php +++ b/resources/lang/sq-AL/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 63e7e1841c1da37818b457696b9583148ef99c20 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:15 +0100 Subject: [PATCH 30/46] New translations cachet.php (Chinese Simplified) --- resources/lang/zh-CN/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/zh-CN/cachet.php b/resources/lang/zh-CN/cachet.php index 4f423411..a2c56581 100644 --- a/resources/lang/zh-CN/cachet.php +++ b/resources/lang/zh-CN/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => '其他组件', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => '订阅', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => '您当前已订阅所有更新。', - 'my_subscriptions' => '您当前已订阅下列更新', - 'manage_at_link' => '在 :link 管理你的订阅', + 'notifications' => '通知', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => '您当前已订阅所有更新。', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => '您当前已订阅下列更新', + 'manage_at_link' => '在 :link 管理你的订阅', ], 'email' => [ 'subscribe' => '订阅电子邮件更新。', From 14b13447c740bd671db1c0b6cca638483649c286 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:18 +0100 Subject: [PATCH 31/46] New translations cachet.php (Catalan) --- resources/lang/ca-ES/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/ca-ES/cachet.php b/resources/lang/ca-ES/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/ca-ES/cachet.php +++ b/resources/lang/ca-ES/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 86841c1661dd1e47b231265f4dee594ebe353513 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:22 +0100 Subject: [PATCH 32/46] New translations forms.php (Dutch) --- resources/lang/nl-NL/forms.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/nl-NL/forms.php b/resources/lang/nl-NL/forms.php index 36c68c1c..c473bd52 100644 --- a/resources/lang/nl-NL/forms.php +++ b/resources/lang/nl-NL/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => 'Statuspagina verversingssnelheid (in seconden)', 'major_outage_rate' => 'Major outage threshold (in %)', 'banner' => 'Banner afbeelding', - 'banner-help' => 'Bij voorkeur geen afbeeldingen breder dan 930 pixels uploaden', + 'banner-help' => "Bij voorkeur geen afbeeldingen breder dan 930 pixels uploaden", 'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?', 'suppress_notifications_in_maintenance' => 'Onderdruk meldingen wanneer incident tijdens de onderhoudingsperiode voordoet?', 'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)', From 20160304ba7448f3f5535296934ab2f59709b16f Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:28 +0100 Subject: [PATCH 33/46] New translations cachet.php (Hebrew) --- resources/lang/he-IL/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/he-IL/cachet.php b/resources/lang/he-IL/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/he-IL/cachet.php +++ b/resources/lang/he-IL/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From cf957511ade286e92a51517bf3b6490bdb809076 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:31 +0100 Subject: [PATCH 34/46] New translations cachet.php (Hungarian) --- resources/lang/hu-HU/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/hu-HU/cachet.php b/resources/lang/hu-HU/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/hu-HU/cachet.php +++ b/resources/lang/hu-HU/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 9c8e48199df1dc1cf679288f20a7abc8b72feaae Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:36 +0100 Subject: [PATCH 35/46] New translations cachet.php (Indonesian) --- resources/lang/id-ID/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/id-ID/cachet.php b/resources/lang/id-ID/cachet.php index a4d93bce..2780272f 100644 --- a/resources/lang/id-ID/cachet.php +++ b/resources/lang/id-ID/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Komponen Lain', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Daftar', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Anda saat ini terdaftar untuk semua update.', - 'my_subscriptions' => 'Anda saat ini berlangganan update berikut.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifikasi', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Anda saat ini terdaftar untuk semua update.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Anda saat ini berlangganan update berikut.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Langganan update email.', From b47a43274440fb0dbfd6c4a292716a930fac7606 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:40 +0100 Subject: [PATCH 36/46] New translations cachet.php (Greek) --- resources/lang/el-GR/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/el-GR/cachet.php b/resources/lang/el-GR/cachet.php index ff1cd22b..7e69a3ea 100644 --- a/resources/lang/el-GR/cachet.php +++ b/resources/lang/el-GR/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From ef32c5dd554aaee8827780d60397d5fc268bde35 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:44 +0100 Subject: [PATCH 37/46] New translations cachet.php (English) --- resources/lang/en-US/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/en-US/cachet.php b/resources/lang/en-US/cachet.php index 7e77e8c1..5238f60d 100644 --- a/resources/lang/en-US/cachet.php +++ b/resources/lang/en-US/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 0a3f717ac6169090e6dac7a6f95b10e16794fb27 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:48 +0100 Subject: [PATCH 38/46] New translations cachet.php (Finnish) --- resources/lang/fi-FI/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/fi-FI/cachet.php b/resources/lang/fi-FI/cachet.php index 15f49517..c43c4ca3 100644 --- a/resources/lang/fi-FI/cachet.php +++ b/resources/lang/fi-FI/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Other Components', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Subscribe', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'You\'re currently subscribed to all updates.', - 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'You\'re currently subscribed to all updates.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'You\'re currently subscribed to the following updates.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Subscribe to email updates.', From 8d36bd5539702ee0216f84aee7d5ad4ddfb3557d Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:53 +0100 Subject: [PATCH 39/46] New translations cachet.php (French) --- resources/lang/fr-FR/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/fr-FR/cachet.php b/resources/lang/fr-FR/cachet.php index 360f46b3..52e7a9e9 100644 --- a/resources/lang/fr-FR/cachet.php +++ b/resources/lang/fr-FR/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Autres composants', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'S\'abonner', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Vous êtes actuellement abonné à toutes les mises à jour.', - 'my_subscriptions' => 'Vous êtes actuellement abonné aux mises à jour suivantes.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Notifications', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Vous êtes actuellement abonné à toutes les mises à jour.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Vous êtes actuellement abonné aux mises à jour suivantes.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'S\'abonner aux notifications par email.', From e55f989c46d220b15acb745fadab416e382f92e6 Mon Sep 17 00:00:00 2001 From: Cachet Bot <40326150+CachetBot@users.noreply.github.com> Date: Tue, 9 Oct 2018 11:12:58 +0100 Subject: [PATCH 40/46] New translations cachet.php (German) --- resources/lang/de-DE/cachet.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/resources/lang/de-DE/cachet.php b/resources/lang/de-DE/cachet.php index 6ce05fb0..fcc5bf7f 100644 --- a/resources/lang/de-DE/cachet.php +++ b/resources/lang/de-DE/cachet.php @@ -23,6 +23,8 @@ return [ 'group' => [ 'other' => 'Andere Komponenten', ], + 'select_all' => 'Select All', + 'deselect_all' => 'Deselect All', ], // Incidents @@ -80,9 +82,12 @@ return [ 'button' => 'Abonnieren', 'manage_subscription' => 'Manage subscription', 'manage' => [ - 'no_subscriptions' => 'Du hast im Augenblick alle Updates abonniert.', - 'my_subscriptions' => 'Du hast im Augenblick folgende Updates abonniert.', - 'manage_at_link' => 'Manage your subscriptions at :link', + 'notifications' => 'Benachrichtigungen', + 'notifications_for' => 'Manage notifications for', + 'no_subscriptions' => 'Du hast im Augenblick alle Updates abonniert.', + 'update_subscription' => 'Update Subscription', + 'my_subscriptions' => 'Du hast im Augenblick folgende Updates abonniert.', + 'manage_at_link' => 'Manage your subscriptions at :link', ], 'email' => [ 'subscribe' => 'Aktualisierungen per E-Mail abonnieren.', From 18219bf3287dbf099f6d56edde03ed05e72a8e6c Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 10 Oct 2018 14:00:51 +0100 Subject: [PATCH 41/46] Fixed #3101 --- .../ComponentStatusChangedNotification.php | 15 +++++++----- .../IncidentUpdatedNotification.php | 24 ++++++++++--------- .../Schedule/NewScheduleNotification.php | 13 ++++++---- .../notifications/component/update.blade.php | 11 +++++++++ .../notifications/incident/update.blade.php | 11 +++++++++ .../notifications/schedule/new.blade.php | 11 +++++++++ 6 files changed, 63 insertions(+), 22 deletions(-) create mode 100644 resources/views/notifications/component/update.blade.php create mode 100644 resources/views/notifications/incident/update.blade.php create mode 100644 resources/views/notifications/schedule/new.blade.php diff --git a/app/Notifications/Component/ComponentStatusChangedNotification.php b/app/Notifications/Component/ComponentStatusChangedNotification.php index 67c1f04a..8621e6f7 100644 --- a/app/Notifications/Component/ComponentStatusChangedNotification.php +++ b/app/Notifications/Component/ComponentStatusChangedNotification.php @@ -84,12 +84,15 @@ class ComponentStatusChangedNotification extends Notification ]); return (new MailMessage()) - ->subject(trans('notifications.component.status_update.mail.subject')) - ->greeting(trans('notifications.component.status_update.mail.subject')) - ->line($content) - ->action(trans('notifications.component.status_update.mail.action'), cachet_route('status-page')) - ->line(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)])) - ->line(trans('cachet.subscriber.manage.manage_at_link', ['link' => cachet_route('subscribe.manage', $notifiable->verify_code)])); + ->subject(trans('notifications.component.status_update.mail.subject')) + ->markdown('notifications.component.update', [ + 'componentName' => $this->component->name, + 'content' => $content, + 'unsubscribeText' => trans('cachet.subscriber.unsubscribe'), + 'unsubscribeUrl' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code), + 'manageSubscriptionText' => trans('cachet.subscriber.manage_subscription'), + 'manageSubscriptionUrl' => cachet_route('subscribe.manage', $notifiable->verify_code), + ]); } /** diff --git a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php index d5bca3f2..4fe3f920 100644 --- a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php +++ b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php @@ -73,18 +73,20 @@ class IncidentUpdatedNotification extends Notification 'name' => $this->update->incident->name, 'time' => $this->update->created_at_diff, ]); - return (new MailMessage()) - ->subject(trans('notifications.incident.update.mail.subject')) - ->greeting(trans('notifications.incident.update.mail.title', [ - 'name' => $this->update->incident->name, - 'new_status' => $this->update->human_status, - ])) - ->line($content) - ->action(trans('notifications.incident.update.mail.action'), cachet_route('incident', [$this->update->incident])) - ->line($this->update->raw_message) - ->line(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)])) - ->line(trans('cachet.subscriber.manage.manage_at_link', ['link' => cachet_route('subscribe.manage', $notifiable->verify_code)])); + ->subject(trans('notifications.incident.update.mail.subject')) + ->markdown('notifications.incident.update', [ + 'incident' => $this->update->incident, + 'content' => $content, + 'actionText' => trans('notifications.incident.new.mail.action'), + 'actionUrl' => cachet_route('incident', [$this->update->incident]), + 'incidentName' => $this->update->incident->name, + 'newStatus' => $this->update->human_status, + 'unsubscribeText' => trans('cachet.subscriber.unsubscribe'), + 'unsubscribeUrl' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code), + 'manageSubscriptionText' => trans('cachet.subscriber.manage_subscription'), + 'manageSubscriptionUrl' => cachet_route('subscribe.manage', $notifiable->verify_code), + ]); } /** diff --git a/app/Notifications/Schedule/NewScheduleNotification.php b/app/Notifications/Schedule/NewScheduleNotification.php index fa7bfd98..dd93398a 100644 --- a/app/Notifications/Schedule/NewScheduleNotification.php +++ b/app/Notifications/Schedule/NewScheduleNotification.php @@ -74,11 +74,14 @@ class NewScheduleNotification extends Notification ]); return (new MailMessage()) - ->subject(trans('notifications.schedule.new.mail.subject')) - ->greeting(trans('notifications.schedule.new.mail.title')) - ->line($content) - ->action(trans('notifications.schedule.new.mail.action'), cachet_route('schedule', [$this->schedule])) - ->line(trans('cachet.subscriber.unsubscribe', ['link' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code)])); + ->subject(trans('notifications.schedule.new.mail.subject')) + ->markdown('notifications.schedule.new', [ + 'content' => $content, + 'unsubscribeText' => trans('cachet.subscriber.unsubscribe'), + 'unsubscribeUrl' => cachet_route('subscribe.unsubscribe', $notifiable->verify_code), + 'manageSubscriptionText' => trans('cachet.subscriber.manage_subscription'), + 'manageSubscriptionUrl' => cachet_route('subscribe.manage', $notifiable->verify_code), + ]); } /** diff --git a/resources/views/notifications/component/update.blade.php b/resources/views/notifications/component/update.blade.php new file mode 100644 index 00000000..5aea67bd --- /dev/null +++ b/resources/views/notifications/component/update.blade.php @@ -0,0 +1,11 @@ +@component('mail::message') +# {{ trans('notifications.component.status_update.mail.greeting') }} + +{{ $content }} + +Thanks,
+{{ Config::get('setting.app_name') }} + +@include('notifications.partials.subscription') + +@endcomponent \ No newline at end of file diff --git a/resources/views/notifications/incident/update.blade.php b/resources/views/notifications/incident/update.blade.php new file mode 100644 index 00000000..7817d4c8 --- /dev/null +++ b/resources/views/notifications/incident/update.blade.php @@ -0,0 +1,11 @@ +@component('mail::message') +# {{ trans('notifications.incident.update.mail.title', ['name' => $incidentName, 'new_status' => $newStatus]) }} + +{{ $content }} + +Thanks,
+{{ Config::get('setting.app_name') }} + +@include('notifications.partials.subscription') + +@endcomponent \ No newline at end of file diff --git a/resources/views/notifications/schedule/new.blade.php b/resources/views/notifications/schedule/new.blade.php new file mode 100644 index 00000000..d58d10a2 --- /dev/null +++ b/resources/views/notifications/schedule/new.blade.php @@ -0,0 +1,11 @@ +@component('mail::message') +# {{ trans('notifications.schedule.new.mail.title') }} + +{{ $content }} + +Thanks,
+{{ Config::get('setting.app_name') }} + +@include('notifications.partials.subscription') + +@endcomponent \ No newline at end of file From 68b5457f9f15215ebbdc059adab275c7b68e9b7c Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 10 Oct 2018 14:04:22 +0100 Subject: [PATCH 42/46] Added a new line #3101 --- app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php index 4fe3f920..13da6d99 100644 --- a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php +++ b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php @@ -73,6 +73,7 @@ class IncidentUpdatedNotification extends Notification 'name' => $this->update->incident->name, 'time' => $this->update->created_at_diff, ]); + return (new MailMessage()) ->subject(trans('notifications.incident.update.mail.subject')) ->markdown('notifications.incident.update', [ From 363c9fb0e800a18803bf7c80abe1d5dbe3951015 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 10 Oct 2018 14:06:18 +0100 Subject: [PATCH 43/46] Another update! --- .../IncidentUpdate/IncidentUpdatedNotification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php index 13da6d99..907ae366 100644 --- a/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php +++ b/app/Notifications/IncidentUpdate/IncidentUpdatedNotification.php @@ -73,7 +73,7 @@ class IncidentUpdatedNotification extends Notification 'name' => $this->update->incident->name, 'time' => $this->update->created_at_diff, ]); - + return (new MailMessage()) ->subject(trans('notifications.incident.update.mail.subject')) ->markdown('notifications.incident.update', [ From fd504fba68fe823cec635066281e873c36edba83 Mon Sep 17 00:00:00 2001 From: Kerrin Hardy Date: Sun, 14 Oct 2018 22:18:43 +1030 Subject: [PATCH 44/46] Set dashboard sidebar width --- resources/assets/sass/dashboard/partials/_sidebar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/sass/dashboard/partials/_sidebar.scss b/resources/assets/sass/dashboard/partials/_sidebar.scss index 0b182540..63bb128a 100644 --- a/resources/assets/sass/dashboard/partials/_sidebar.scss +++ b/resources/assets/sass/dashboard/partials/_sidebar.scss @@ -132,7 +132,7 @@ body.dashboard { @extend .hidden-sm; position: fixed; bottom: 0; - width: 237px; + width: 235px; z-index: 999; ul > li { float: left; From 72d2feb48842d1bce53b982024fb7ae892a6a886 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 15 Oct 2018 11:20:42 +0100 Subject: [PATCH 45/46] Update deps --- composer.lock | 787 +++++++++++++++++++++++++------------------------- 1 file changed, 401 insertions(+), 386 deletions(-) diff --git a/composer.lock b/composer.lock index ee98fd63..2ae74abf 100644 --- a/composer.lock +++ b/composer.lock @@ -1,39 +1,39 @@ { "_readme": [ "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "905973a718f0eda0f42d1e0b85dda721", "packages": [ { "name": "alt-three/badger", - "version": "v5.0.0", + "version": "v5.1.0", "source": { "type": "git", "url": "https://github.com/AltThree/Badger.git", - "reference": "f0eca87b9b6ed1452ba6459c8bc73232c5ed7f13" + "reference": "885d70fca53d6c77a875cfe26cb45d3a89fa09d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AltThree/Badger/zipball/f0eca87b9b6ed1452ba6459c8bc73232c5ed7f13", - "reference": "f0eca87b9b6ed1452ba6459c8bc73232c5ed7f13", + "url": "https://api.github.com/repos/AltThree/Badger/zipball/885d70fca53d6c77a875cfe26cb45d3a89fa09d2", + "reference": "885d70fca53d6c77a875cfe26cb45d3a89fa09d2", "shasum": "" }, "require": { - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" }, "laravel": { "providers": [ @@ -64,40 +64,40 @@ "shield", "svg" ], - "time": "2018-03-03T21:08:22+00:00" + "time": "2018-09-29T10:43:08+00:00" }, { "name": "alt-three/bus", - "version": "v4.0.0", + "version": "v4.1.0", "source": { "type": "git", "url": "https://github.com/AltThree/Bus.git", - "reference": "dbaeb616e50c4c558a3062e17f4569b7b07a1344" + "reference": "4ba1e8bd9b9a9b757e57b511182b72677b5fbd89" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AltThree/Bus/zipball/dbaeb616e50c4c558a3062e17f4569b7b07a1344", - "reference": "dbaeb616e50c4c558a3062e17f4569b7b07a1344", + "url": "https://api.github.com/repos/AltThree/Bus/zipball/4ba1e8bd9b9a9b757e57b511182b72677b5fbd89", + "reference": "4ba1e8bd9b9a9b757e57b511182b72677b5fbd89", "shasum": "" }, "require": { - "illuminate/bus": "5.5.*|5.6.*", - "illuminate/container": "5.5.*|5.6.*", - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/pipeline": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", + "illuminate/bus": "5.5.*|5.6.*|5.7.*", + "illuminate/container": "5.5.*|5.6.*|5.7.*", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/pipeline": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "mockery/mockery": "^1.0", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "4.1-dev" } }, "autoload": { @@ -123,39 +123,39 @@ "command bus", "job" ], - "time": "2018-03-03T21:08:24+00:00" + "time": "2018-09-29T10:43:20+00:00" }, { "name": "alt-three/emoji", - "version": "v6.0.0", + "version": "v6.1.0", "source": { "type": "git", "url": "https://github.com/AltThree/Emoji.git", - "reference": "9142bd508af3c72a67f4ac5d826f22596cf5e1eb" + "reference": "a0512f21dc946676315178f254717c6714bf667f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AltThree/Emoji/zipball/9142bd508af3c72a67f4ac5d826f22596cf5e1eb", - "reference": "9142bd508af3c72a67f4ac5d826f22596cf5e1eb", + "url": "https://api.github.com/repos/AltThree/Emoji/zipball/a0512f21dc946676315178f254717c6714bf667f", + "reference": "a0512f21dc946676315178f254717c6714bf667f", "shasum": "" }, "require": { "graham-campbell/guzzle-factory": "^3.0", - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", - "league/commonmark": "^0.17", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", + "league/commonmark": "^0.18", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/markdown": "^10.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/markdown": "^10.2", + "graham-campbell/testbench": "^5.1", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.0-dev" + "dev-master": "6.1-dev" }, "laravel": { "providers": [ @@ -184,36 +184,36 @@ "emoji", "parser" ], - "time": "2018-03-03T21:08:28+00:00" + "time": "2018-09-29T10:43:23+00:00" }, { "name": "alt-three/throttle", - "version": "v3.0.0", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/AltThree/Throttle.git", - "reference": "41c83710719a61194d9e31f75ca4d2f104f12fd1" + "reference": "6f85d5dac57ad1092983b64bb59650e9096c9385" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AltThree/Throttle/zipball/41c83710719a61194d9e31f75ca4d2f104f12fd1", - "reference": "41c83710719a61194d9e31f75ca4d2f104f12fd1", + "url": "https://api.github.com/repos/AltThree/Throttle/zipball/6f85d5dac57ad1092983b64bb59650e9096c9385", + "reference": "6f85d5dac57ad1092983b64bb59650e9096c9385", "shasum": "" }, "require": { - "illuminate/cache": "5.5.*|5.6.*", - "illuminate/http": "5.5.*|5.6.*", + "illuminate/cache": "5.5.*|5.6.*|5.7.*", + "illuminate/http": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -239,38 +239,38 @@ "rate limiter", "throttle" ], - "time": "2018-03-03T23:57:15+00:00" + "time": "2018-09-29T10:43:47+00:00" }, { "name": "alt-three/twitter", - "version": "v3.0.0", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/AltThree/Twitter.git", - "reference": "f661fe5358e1a93329f14f3d87c2bee4b948b5d7" + "reference": "6f1f33b208118dfadf089c51c3410f62400147f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AltThree/Twitter/zipball/f661fe5358e1a93329f14f3d87c2bee4b948b5d7", - "reference": "f661fe5358e1a93329f14f3d87c2bee4b948b5d7", + "url": "https://api.github.com/repos/AltThree/Twitter/zipball/6f1f33b208118dfadf089c51c3410f62400147f3", + "reference": "6f1f33b208118dfadf089c51c3410f62400147f3", "shasum": "" }, "require": { - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", - "league/commonmark": "^0.17", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", + "league/commonmark": "^0.18", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/markdown": "^10.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/markdown": "^10.2", + "graham-campbell/testbench": "^5.1", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" }, "laravel": { "providers": [ @@ -300,36 +300,36 @@ "parser", "twitter" ], - "time": "2018-03-03T23:52:23+00:00" + "time": "2018-09-29T10:43:36+00:00" }, { "name": "alt-three/validator", - "version": "v4.0.0", + "version": "v4.1.0", "source": { "type": "git", "url": "https://github.com/AltThree/Validator.git", - "reference": "ab4b7a6df48b7c2f76024faee8349793c69478d3" + "reference": "08790e15af3464d9e9a3c759eab1138774c68b82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/AltThree/Validator/zipball/ab4b7a6df48b7c2f76024faee8349793c69478d3", - "reference": "ab4b7a6df48b7c2f76024faee8349793c69478d3", + "url": "https://api.github.com/repos/AltThree/Validator/zipball/08790e15af3464d9e9a3c759eab1138774c68b82", + "reference": "08790e15af3464d9e9a3c759eab1138774c68b82", "shasum": "" }, "require": { - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3", "psr/log": "^1.0" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", + "graham-campbell/analyzer": "^2.1", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "4.1-dev" } }, "autoload": { @@ -353,7 +353,7 @@ "logging", "validator" ], - "time": "2018-03-03T23:51:53+00:00" + "time": "2018-09-29T10:43:41+00:00" }, { "name": "asm89/stack-cors", @@ -409,16 +409,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.63.5", + "version": "3.69.6", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "e12a6fb9045720fd96bd75e801b23e2877aa1245" + "reference": "7772d90f021a160d8208e484513a41eaca848693" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/e12a6fb9045720fd96bd75e801b23e2877aa1245", - "reference": "e12a6fb9045720fd96bd75e801b23e2877aa1245", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7772d90f021a160d8208e484513a41eaca848693", + "reference": "7772d90f021a160d8208e484513a41eaca848693", "shasum": "" }, "require": { @@ -439,6 +439,8 @@ "doctrine/cache": "~1.4", "ext-dom": "*", "ext-openssl": "*", + "ext-pcntl": "*", + "ext-sockets": "*", "nette/neon": "^2.3", "phpunit/phpunit": "^4.8.35|^5.4.3", "psr/cache": "^1.0" @@ -447,7 +449,8 @@ "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", "doctrine/cache": "To use the DoctrineCacheAdapter", "ext-curl": "To send requests using cURL", - "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages" + "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages", + "ext-sockets": "To use client-side monitoring" }, "type": "library", "extra": { @@ -485,7 +488,7 @@ "s3", "sdk" ], - "time": "2018-07-20T21:01:32+00:00" + "time": "2018-10-12T21:44:38+00:00" }, { "name": "bacon/bacon-qr-code", @@ -535,28 +538,29 @@ }, { "name": "barryvdh/laravel-cors", - "version": "v0.11.0", + "version": "v0.11.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-cors.git", - "reference": "6ba64a654b4258a3ecc11aba6614c932b3442e30" + "reference": "7969a52f52d0d9a04b42565d25ac9994b8c83332" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/6ba64a654b4258a3ecc11aba6614c932b3442e30", - "reference": "6ba64a654b4258a3ecc11aba6614c932b3442e30", + "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/7969a52f52d0d9a04b42565d25ac9994b8c83332", + "reference": "7969a52f52d0d9a04b42565d25ac9994b8c83332", "shasum": "" }, "require": { "asm89/stack-cors": "^1.2", - "illuminate/support": "5.3.x|5.4.x|5.5.x|5.6.x", - "php": ">=5.5.9", + "illuminate/support": "5.5.x|5.6.x|5.7.x", + "php": ">=7", "symfony/http-foundation": "^3.1|^4", "symfony/http-kernel": "^3.1|^4" }, "require-dev": { - "orchestra/testbench": "3.x", - "phpunit/phpunit": "^4.8|^5.2", + "laravel/framework": "^5.5", + "orchestra/testbench": "3.3.x|3.4.x|3.5.x|3.6.x|3.7.x", + "phpunit/phpunit": "^4.8|^5.2|^7.0", "squizlabs/php_codesniffer": "^2.3" }, "type": "library", @@ -592,7 +596,7 @@ "crossdomain", "laravel" ], - "time": "2018-01-04T06:59:27+00:00" + "time": "2018-09-06T13:20:53+00:00" }, { "name": "christian-riesen/base32", @@ -807,16 +811,16 @@ }, { "name": "doctrine/cache", - "version": "v1.7.1", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a" + "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a", - "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a", + "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57", + "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57", "shasum": "" }, "require": { @@ -827,8 +831,9 @@ }, "require-dev": { "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^4.0", "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^5.7", + "phpunit/phpunit": "^7.0", "predis/predis": "~1.0" }, "suggest": { @@ -837,7 +842,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7.x-dev" + "dev-master": "1.8.x-dev" } }, "autoload": { @@ -872,12 +877,12 @@ } ], "description": "Caching library offering an object-oriented API for many cache backends", - "homepage": "http://www.doctrine-project.org", + "homepage": "https://www.doctrine-project.org", "keywords": [ "cache", "caching" ], - "time": "2017-08-25T07:02:50+00:00" + "time": "2018-08-21T18:01:43+00:00" }, { "name": "doctrine/collections", @@ -1262,16 +1267,16 @@ }, { "name": "egulias/email-validator", - "version": "2.1.4", + "version": "2.1.6", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "8790f594151ca6a2010c6218e09d96df67173ad3" + "reference": "0578b32b30b22de3e8664f797cf846fc9246f786" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/8790f594151ca6a2010c6218e09d96df67173ad3", - "reference": "8790f594151ca6a2010c6218e09d96df67173ad3", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0578b32b30b22de3e8664f797cf846fc9246f786", + "reference": "0578b32b30b22de3e8664f797cf846fc9246f786", "shasum": "" }, "require": { @@ -1315,7 +1320,7 @@ "validation", "validator" ], - "time": "2018-04-10T10:11:19+00:00" + "time": "2018-09-25T20:47:26+00:00" }, { "name": "erusev/parsedown", @@ -1419,35 +1424,35 @@ }, { "name": "graham-campbell/binput", - "version": "v5.0.0", + "version": "v5.1.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Laravel-Binput.git", - "reference": "71c9747300c81254e92d57cda6b71c160ab01e91" + "reference": "073b59e18f3cd7a874a4b8bcd11ed03ca074e1a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Binput/zipball/71c9747300c81254e92d57cda6b71c160ab01e91", - "reference": "71c9747300c81254e92d57cda6b71c160ab01e91", + "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Binput/zipball/073b59e18f3cd7a874a4b8bcd11ed03ca074e1a0", + "reference": "073b59e18f3cd7a874a4b8bcd11ed03ca074e1a0", "shasum": "" }, "require": { - "graham-campbell/security": "^5.0", - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/http": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", + "graham-campbell/security": "^5.1", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/http": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "mockery/mockery": "^1.0", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" }, "laravel": { "providers": [ @@ -1484,25 +1489,25 @@ "laravel", "security" ], - "time": "2018-03-02T21:17:17+00:00" + "time": "2018-08-23T12:17:04+00:00" }, { "name": "graham-campbell/exceptions", - "version": "v11.0.0", + "version": "v11.1.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Laravel-Exceptions.git", - "reference": "7e38052cddae59e991ce8b3d14dd865768b8e87c" + "reference": "e13b615499ccbfb7f9772fe1552dcf099a39c4f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Exceptions/zipball/7e38052cddae59e991ce8b3d14dd865768b8e87c", - "reference": "7e38052cddae59e991ce8b3d14dd865768b8e87c", + "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Exceptions/zipball/e13b615499ccbfb7f9772fe1552dcf099a39c4f3", + "reference": "e13b615499ccbfb7f9772fe1552dcf099a39c4f3", "shasum": "" }, "require": { - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3", "psr/log": "^1.0", "symfony/console": "^3.3|^4.0", @@ -1511,8 +1516,8 @@ }, "require-dev": { "filp/whoops": "^2.1.4", - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "mockery/mockery": "^1.0", "phpunit/phpunit": "^6.5|^7.0" }, @@ -1522,7 +1527,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "11.0-dev" + "dev-master": "11.1-dev" }, "laravel": { "providers": [ @@ -1559,7 +1564,7 @@ "laravel", "whoops" ], - "time": "2018-03-02T21:20:05+00:00" + "time": "2018-08-23T12:17:59+00:00" }, { "name": "graham-campbell/guzzle-factory", @@ -1617,36 +1622,36 @@ }, { "name": "graham-campbell/markdown", - "version": "v10.0.0", + "version": "v10.2.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Laravel-Markdown.git", - "reference": "359701e5e3986ba18d1b3d390e898a370b8f00d6" + "reference": "fdb55c7953c85c60f742294a9cd2b3b010bca0b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Markdown/zipball/359701e5e3986ba18d1b3d390e898a370b8f00d6", - "reference": "359701e5e3986ba18d1b3d390e898a370b8f00d6", + "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Markdown/zipball/fdb55c7953c85c60f742294a9cd2b3b010bca0b6", + "reference": "fdb55c7953c85c60f742294a9cd2b3b010bca0b6", "shasum": "" }, "require": { - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", - "illuminate/view": "5.5.*|5.6.*", - "league/commonmark": "^0.17", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", + "illuminate/view": "5.5.*|5.6.*|5.7.*", + "league/commonmark": "^0.18", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", - "league/commonmark-extras": "^0.1.4", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", + "league/commonmark-extras": "^0.1.5", "mockery/mockery": "^1.0", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "10.0-dev" + "dev-master": "10.2-dev" }, "laravel": { "providers": [ @@ -1681,36 +1686,36 @@ "laravel", "markdown" ], - "time": "2018-03-01T21:04:35+00:00" + "time": "2018-09-29T10:19:14+00:00" }, { "name": "graham-campbell/security", - "version": "v5.0.0", + "version": "v5.1.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Laravel-Security.git", - "reference": "c280dcd3ea516f6cbd746cf2db4439c4d338076d" + "reference": "4ac7f01fcd11ac542a355f3abe738fa0bbe4656a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Security/zipball/c280dcd3ea516f6cbd746cf2db4439c4d338076d", - "reference": "c280dcd3ea516f6cbd746cf2db4439c4d338076d", + "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Security/zipball/4ac7f01fcd11ac542a355f3abe738fa0bbe4656a", + "reference": "4ac7f01fcd11ac542a355f3abe738fa0bbe4656a", "shasum": "" }, "require": { - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.1-dev" }, "laravel": { "providers": [ @@ -1744,7 +1749,7 @@ "laravel", "security" ], - "time": "2018-03-02T21:13:51+00:00" + "time": "2018-08-23T12:16:30+00:00" }, { "name": "guzzlehttp/guzzle", @@ -1999,32 +2004,32 @@ }, { "name": "jakub-onderka/php-console-color", - "version": "0.1", + "version": "v0.2", "source": { "type": "git", "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", - "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1" + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1", - "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": ">=5.4.0" }, "require-dev": { "jakub-onderka/php-code-style": "1.0", - "jakub-onderka/php-parallel-lint": "0.*", + "jakub-onderka/php-parallel-lint": "1.0", "jakub-onderka/php-var-dump-check": "0.*", - "phpunit/phpunit": "3.7.*", + "phpunit/phpunit": "~4.3", "squizlabs/php_codesniffer": "1.*" }, "type": "library", "autoload": { - "psr-0": { - "JakubOnderka\\PhpConsoleColor": "src/" + "psr-4": { + "JakubOnderka\\PhpConsoleColor\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -2034,41 +2039,41 @@ "authors": [ { "name": "Jakub Onderka", - "email": "jakub.onderka@gmail.com", - "homepage": "http://www.acci.cz" + "email": "jakub.onderka@gmail.com" } ], - "time": "2014-04-08T15:00:19+00:00" + "time": "2018-09-29T17:23:10+00:00" }, { "name": "jakub-onderka/php-console-highlighter", - "version": "v0.3.2", + "version": "v0.4", "source": { "type": "git", "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", - "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5" + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5", - "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547", + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547", "shasum": "" }, "require": { - "jakub-onderka/php-console-color": "~0.1", - "php": ">=5.3.0" + "ext-tokenizer": "*", + "jakub-onderka/php-console-color": "~0.2", + "php": ">=5.4.0" }, "require-dev": { "jakub-onderka/php-code-style": "~1.0", - "jakub-onderka/php-parallel-lint": "~0.5", + "jakub-onderka/php-parallel-lint": "~1.0", "jakub-onderka/php-var-dump-check": "~0.1", "phpunit/phpunit": "~4.0", "squizlabs/php_codesniffer": "~1.5" }, "type": "library", "autoload": { - "psr-0": { - "JakubOnderka\\PhpConsoleHighlighter": "src/" + "psr-4": { + "JakubOnderka\\PhpConsoleHighlighter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -2082,7 +2087,8 @@ "homepage": "http://www.acci.cz/" } ], - "time": "2015-04-20T18:58:01+00:00" + "description": "Highlight PHP code in terminal", + "time": "2018-09-29T18:48:56+00:00" }, { "name": "jenssegers/date", @@ -2151,16 +2157,16 @@ }, { "name": "laravel/framework", - "version": "v5.6.28", + "version": "v5.6.39", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "40ba2ee0e61cb4bc3c9f1dab04908e6acf06b86f" + "reference": "37bb306f516669ab4f888c16003f694313ab299e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/40ba2ee0e61cb4bc3c9f1dab04908e6acf06b86f", - "reference": "40ba2ee0e61cb4bc3c9f1dab04908e6acf06b86f", + "url": "https://api.github.com/repos/laravel/framework/zipball/37bb306f516669ab4f888c16003f694313ab299e", + "reference": "37bb306f516669ab4f888c16003f694313ab299e", "shasum": "" }, "require": { @@ -2286,20 +2292,20 @@ "framework", "laravel" ], - "time": "2018-07-17T14:15:36+00:00" + "time": "2018-10-04T14:50:41+00:00" }, { "name": "laravel/tinker", - "version": "v1.0.7", + "version": "v1.0.8", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "e3086ee8cb1f54a39ae8dcb72d1c37d10128997d" + "reference": "cafbf598a90acde68985660e79b2b03c5609a405" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/e3086ee8cb1f54a39ae8dcb72d1c37d10128997d", - "reference": "e3086ee8cb1f54a39ae8dcb72d1c37d10128997d", + "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405", + "reference": "cafbf598a90acde68985660e79b2b03c5609a405", "shasum": "" }, "require": { @@ -2349,7 +2355,7 @@ "laravel", "psysh" ], - "time": "2018-05-17T13:42:07+00:00" + "time": "2018-10-12T19:39:35+00:00" }, { "name": "laravolt/avatar", @@ -2410,16 +2416,16 @@ }, { "name": "lcobucci/jwt", - "version": "3.2.2", + "version": "3.2.4", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "0b5930be73582369e10c4d4bb7a12bac927a203c" + "reference": "c9704b751315d21735dc98d78d4f37bd73596da7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/0b5930be73582369e10c4d4bb7a12bac927a203c", - "reference": "0b5930be73582369e10c4d4bb7a12bac927a203c", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c9704b751315d21735dc98d78d4f37bd73596da7", + "reference": "c9704b751315d21735dc98d78d4f37bd73596da7", "shasum": "" }, "require": { @@ -2456,7 +2462,7 @@ { "name": "Luís Otávio Cobucci Oblonczyk", "email": "lcobucci@gmail.com", - "role": "Developer" + "role": "developer" } ], "description": "A simple library to work with JSON Web Token and JSON Web Signature", @@ -2464,20 +2470,20 @@ "JWS", "jwt" ], - "time": "2017-09-01T08:23:26+00:00" + "time": "2018-08-03T11:23:50+00:00" }, { "name": "league/commonmark", - "version": "0.17.5", + "version": "0.18.0", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "82d7ab62d7f68391cb9d323f3ccce50be24a5369" + "reference": "006af077d4b1b7eb1d9760964f9f984ba188632c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/82d7ab62d7f68391cb9d323f3ccce50be24a5369", - "reference": "82d7ab62d7f68391cb9d323f3ccce50be24a5369", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/006af077d4b1b7eb1d9760964f9f984ba188632c", + "reference": "006af077d4b1b7eb1d9760964f9f984ba188632c", "shasum": "" }, "require": { @@ -2506,7 +2512,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "0.18-dev" + "dev-master": "0.19-dev" } }, "autoload": { @@ -2533,32 +2539,32 @@ "markdown", "parser" ], - "time": "2018-03-29T14:35:19+00:00" + "time": "2018-09-18T13:13:55+00:00" }, { "name": "league/flysystem", - "version": "1.0.45", + "version": "1.0.47", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "a99f94e63b512d75f851b181afcdf0ee9ebef7e6" + "reference": "a11e4a75f256bdacf99d20780ce42d3b8272975c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a99f94e63b512d75f851b181afcdf0ee9ebef7e6", - "reference": "a99f94e63b512d75f851b181afcdf0ee9ebef7e6", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a11e4a75f256bdacf99d20780ce42d3b8272975c", + "reference": "a11e4a75f256bdacf99d20780ce42d3b8272975c", "shasum": "" }, "require": { + "ext-fileinfo": "*", "php": ">=5.5.9" }, "conflict": { "league/flysystem-sftp": "<1.0.6" }, "require-dev": { - "ext-fileinfo": "*", "phpspec/phpspec": "^3.4", - "phpunit/phpunit": "^5.7" + "phpunit/phpunit": "^5.7.10" }, "suggest": { "ext-fileinfo": "Required for MimeType", @@ -2617,41 +2623,41 @@ "sftp", "storage" ], - "time": "2018-05-07T08:44:23+00:00" + "time": "2018-09-14T15:30:29+00:00" }, { "name": "mccool/laravel-auto-presenter", - "version": "7.0.1", + "version": "7.1.0", "source": { "type": "git", "url": "https://github.com/laravel-auto-presenter/laravel-auto-presenter.git", - "reference": "79ba1e223c26d7a32b4378b46c79af05d8fbcca7" + "reference": "827326a3b1218a3f789723eb36bb9aa4d3f47181" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-auto-presenter/laravel-auto-presenter/zipball/79ba1e223c26d7a32b4378b46c79af05d8fbcca7", - "reference": "79ba1e223c26d7a32b4378b46c79af05d8fbcca7", + "url": "https://api.github.com/repos/laravel-auto-presenter/laravel-auto-presenter/zipball/827326a3b1218a3f789723eb36bb9aa4d3f47181", + "reference": "827326a3b1218a3f789723eb36bb9aa4d3f47181", "shasum": "" }, "require": { - "illuminate/container": "5.5.*|5.6.*", - "illuminate/contracts": "5.5.*|5.6.*", - "illuminate/events": "5.5.*|5.6.*", - "illuminate/pagination": "5.5.*|5.6.*", - "illuminate/support": "5.5.*|5.6.*", - "illuminate/view": "5.5.*|5.6.*", + "illuminate/container": "5.5.*|5.6.*|5.7.*", + "illuminate/contracts": "5.5.*|5.6.*|5.7.*", + "illuminate/events": "5.5.*|5.6.*|5.7.*", + "illuminate/pagination": "5.5.*|5.6.*|5.7.*", + "illuminate/support": "5.5.*|5.6.*|5.7.*", + "illuminate/view": "5.5.*|5.6.*|5.7.*", "php": "^7.1.3" }, "require-dev": { - "graham-campbell/analyzer": "^2.0", - "graham-campbell/testbench": "^5.0", + "graham-campbell/analyzer": "^2.1", + "graham-campbell/testbench": "^5.1", "mockery/mockery": "^1.0", "phpunit/phpunit": "^6.5|^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "7.0-dev" + "dev-master": "7.1-dev" }, "laravel": { "providers": [ @@ -2685,7 +2691,7 @@ "lpm", "presenter" ], - "time": "2018-04-22T17:07:24+00:00" + "time": "2018-09-06T13:54:36+00:00" }, { "name": "monolog/monolog", @@ -2875,16 +2881,16 @@ }, { "name": "nexmo/client", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/Nexmo/nexmo-php.git", - "reference": "b2a5d5fa371e0f4c8ce20e7f1282bb2bbe303703" + "reference": "4a6ecf73f7ee79b861600cb84e8a44c8a3b3ef15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nexmo/nexmo-php/zipball/b2a5d5fa371e0f4c8ce20e7f1282bb2bbe303703", - "reference": "b2a5d5fa371e0f4c8ce20e7f1282bb2bbe303703", + "url": "https://api.github.com/repos/Nexmo/nexmo-php/zipball/4a6ecf73f7ee79b861600cb84e8a44c8a3b3ef15", + "reference": "4a6ecf73f7ee79b861600cb84e8a44c8a3b3ef15", "shasum": "" }, "require": { @@ -2897,7 +2903,7 @@ "require-dev": { "estahn/phpunit-json-assertions": "@stable", "php-http/mock-client": "^0.3.0", - "phpunit/phpunit": "^5.3", + "phpunit/phpunit": "^5.7", "squizlabs/php_codesniffer": "^3.1" }, "type": "library", @@ -2919,28 +2925,28 @@ } ], "description": "PHP Client for using Nexmo's API.", - "time": "2018-06-03T18:00:34+00:00" + "time": "2018-09-20T14:13:04+00:00" }, { "name": "nikic/php-parser", - "version": "v3.1.5", + "version": "v4.1.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce" + "reference": "d0230c5c77a7e3cfa69446febf340978540958c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce", - "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0", + "reference": "d0230c5c77a7e3cfa69446febf340978540958c0", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": ">=5.5" + "php": ">=7.0" }, "require-dev": { - "phpunit/phpunit": "~4.0|~5.0" + "phpunit/phpunit": "^6.5 || ^7.0" }, "bin": [ "bin/php-parse" @@ -2948,7 +2954,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "4.1-dev" } }, "autoload": { @@ -2970,7 +2976,7 @@ "parser", "php" ], - "time": "2018-02-28T20:30:58+00:00" + "time": "2018-10-10T09:24:14+00:00" }, { "name": "paragonie/random_compat", @@ -3483,21 +3489,23 @@ }, { "name": "psy/psysh", - "version": "v0.9.6", + "version": "v0.9.9", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "4a2ce86f199d51b6e2524214dc06835e872f4fce" + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4a2ce86f199d51b6e2524214dc06835e872f4fce", - "reference": "4a2ce86f199d51b6e2524214dc06835e872f4fce", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", "shasum": "" }, "require": { "dnoegel/php-xdg-base-dir": "0.1", - "jakub-onderka/php-console-highlighter": "0.3.*", + "ext-json": "*", + "ext-tokenizer": "*", + "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", "php": ">=5.4.0", "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0", @@ -3551,7 +3559,7 @@ "interactive", "shell" ], - "time": "2018-06-10T17:57:20+00:00" + "time": "2018-10-13T15:16:03+00:00" }, { "name": "ramsey/uuid", @@ -3693,6 +3701,7 @@ "laravel", "rss" ], + "abandoned": "laravelium/feed", "time": "2018-02-07T20:50:19+00:00" }, { @@ -3748,16 +3757,16 @@ }, { "name": "swiftmailer/swiftmailer", - "version": "v6.1.2", + "version": "v6.1.3", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "7d760881d266d63c5e7a1155cbcf2ac656a31ca8" + "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/7d760881d266d63c5e7a1155cbcf2ac656a31ca8", - "reference": "7d760881d266d63c5e7a1155cbcf2ac656a31ca8", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8ddcb66ac10c392d3beb54829eef8ac1438595f4", + "reference": "8ddcb66ac10c392d3beb54829eef8ac1438595f4", "shasum": "" }, "require": { @@ -3803,20 +3812,20 @@ "mail", "mailer" ], - "time": "2018-07-13T07:04:35+00:00" + "time": "2018-09-11T07:12:52+00:00" }, { "name": "symfony/console", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "5c31f6a97c1c240707f6d786e7e59bfacdbc0219" + "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/5c31f6a97c1c240707f6d786e7e59bfacdbc0219", - "reference": "5c31f6a97c1c240707f6d786e7e59bfacdbc0219", + "url": "https://api.github.com/repos/symfony/console/zipball/dc7122fe5f6113cfaba3b3de575d31112c9aa60b", + "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b", "shasum": "" }, "require": { @@ -3871,20 +3880,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2018-07-16T14:05:40+00:00" + "time": "2018-10-03T08:15:46+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.13", + "version": "v3.4.17", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "d2ce52290b648ae33b5301d09bc14ee378612914" + "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/d2ce52290b648ae33b5301d09bc14ee378612914", - "reference": "d2ce52290b648ae33b5301d09bc14ee378612914", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb", + "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb", "shasum": "" }, "require": { @@ -3924,20 +3933,20 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2018-05-16T12:49:49+00:00" + "time": "2018-10-02T16:33:53+00:00" }, { "name": "symfony/debug", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "a1f2118cedb8731c45e945cdd2b808ca82abc4b5" + "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/a1f2118cedb8731c45e945cdd2b808ca82abc4b5", - "reference": "a1f2118cedb8731c45e945cdd2b808ca82abc4b5", + "url": "https://api.github.com/repos/symfony/debug/zipball/e3f76ce6198f81994e019bb2b4e533e9de1b9b90", + "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90", "shasum": "" }, "require": { @@ -3980,20 +3989,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2018-07-06T14:52:28+00:00" + "time": "2018-10-02T16:36:10+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "00d64638e4f0703a00ab7fc2c8ae5f75f3b4020f" + "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/00d64638e4f0703a00ab7fc2c8ae5f75f3b4020f", - "reference": "00d64638e4f0703a00ab7fc2c8ae5f75f3b4020f", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e", + "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e", "shasum": "" }, "require": { @@ -4043,20 +4052,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2018-07-10T11:02:47+00:00" + "time": "2018-07-26T09:10:45+00:00" }, { "name": "symfony/finder", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "84714b8417d19e4ba02ea78a41a975b3efaafddb" + "reference": "1f17195b44543017a9c9b2d437c670627e96ad06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/84714b8417d19e4ba02ea78a41a975b3efaafddb", - "reference": "84714b8417d19e4ba02ea78a41a975b3efaafddb", + "url": "https://api.github.com/repos/symfony/finder/zipball/1f17195b44543017a9c9b2d437c670627e96ad06", + "reference": "1f17195b44543017a9c9b2d437c670627e96ad06", "shasum": "" }, "require": { @@ -4092,20 +4101,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2018-06-19T21:38:16+00:00" + "time": "2018-10-03T08:47:56+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "8da9ea68ab2d80dfabd41e0d14b9606bb47a10c0" + "reference": "d528136617ff24f530e70df9605acc1b788b08d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8da9ea68ab2d80dfabd41e0d14b9606bb47a10c0", - "reference": "8da9ea68ab2d80dfabd41e0d14b9606bb47a10c0", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d528136617ff24f530e70df9605acc1b788b08d4", + "reference": "d528136617ff24f530e70df9605acc1b788b08d4", "shasum": "" }, "require": { @@ -4146,20 +4155,20 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2018-07-16T14:05:40+00:00" + "time": "2018-10-03T08:48:45+00:00" }, { "name": "symfony/http-kernel", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "ebd28f4f88a2ca0a0488882ad73c4004f3afdbe3" + "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ebd28f4f88a2ca0a0488882ad73c4004f3afdbe3", - "reference": "ebd28f4f88a2ca0a0488882ad73c4004f3afdbe3", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f5e7c15a5d010be0e16ce798594c5960451d4220", + "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220", "shasum": "" }, "require": { @@ -4233,29 +4242,32 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2018-07-23T17:16:22+00:00" + "time": "2018-10-03T12:53:38+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.8.0", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae" + "reference": "e3d826245268269cd66f8326bd8bc066687b4a19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae", - "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19", + "reference": "e3d826245268269cd66f8326bd8bc066687b4a19", "shasum": "" }, "require": { "php": ">=5.3.3" }, + "suggest": { + "ext-ctype": "For best performance" + }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -4288,20 +4300,20 @@ "polyfill", "portable" ], - "time": "2018-04-30T19:57:29+00:00" + "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.8.0", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "3296adf6a6454a050679cde90f95350ad604b171" + "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171", - "reference": "3296adf6a6454a050679cde90f95350ad604b171", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8", + "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8", "shasum": "" }, "require": { @@ -4313,7 +4325,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -4347,20 +4359,20 @@ "portable", "shim" ], - "time": "2018-04-26T10:06:28+00:00" + "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.8.0", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "a4576e282d782ad82397f3e4ec1df8e0f0cafb46" + "reference": "95c50420b0baed23852452a7f0c7b527303ed5ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/a4576e282d782ad82397f3e4ec1df8e0f0cafb46", - "reference": "a4576e282d782ad82397f3e4ec1df8e0f0cafb46", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/95c50420b0baed23852452a7f0c7b527303ed5ae", + "reference": "95c50420b0baed23852452a7f0c7b527303ed5ae", "shasum": "" }, "require": { @@ -4369,7 +4381,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -4402,20 +4414,20 @@ "portable", "shim" ], - "time": "2018-04-26T10:06:28+00:00" + "time": "2018-08-06T14:22:27+00:00" }, { "name": "symfony/process", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "1d1677391ecf00d1c5b9482d6050c0c27aa3ac3a" + "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/1d1677391ecf00d1c5b9482d6050c0c27aa3ac3a", - "reference": "1d1677391ecf00d1c5b9482d6050c0c27aa3ac3a", + "url": "https://api.github.com/repos/symfony/process/zipball/ee33c0322a8fee0855afcc11fff81e6b1011b529", + "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529", "shasum": "" }, "require": { @@ -4451,20 +4463,20 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2018-05-31T10:17:53+00:00" + "time": "2018-10-02T12:40:59+00:00" }, { "name": "symfony/routing", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "73770bf3682b4407b017c2bdcb2b11cdcbce5322" + "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/73770bf3682b4407b017c2bdcb2b11cdcbce5322", - "reference": "73770bf3682b4407b017c2bdcb2b11cdcbce5322", + "url": "https://api.github.com/repos/symfony/routing/zipball/537803f0bdfede36b9acef052d2e4d447d9fa0e9", + "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9", "shasum": "" }, "require": { @@ -4528,20 +4540,20 @@ "uri", "url" ], - "time": "2018-06-28T06:30:33+00:00" + "time": "2018-10-02T12:40:59+00:00" }, { "name": "symfony/translation", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "2dd74d6b2dcbd46a93971e6ce7d245cf3123e957" + "reference": "9f0b61e339160a466ebcde167a6c5521c810e304" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/2dd74d6b2dcbd46a93971e6ce7d245cf3123e957", - "reference": "2dd74d6b2dcbd46a93971e6ce7d245cf3123e957", + "url": "https://api.github.com/repos/symfony/translation/zipball/9f0b61e339160a466ebcde167a6c5521c810e304", + "reference": "9f0b61e339160a466ebcde167a6c5521c810e304", "shasum": "" }, "require": { @@ -4597,20 +4609,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2018-07-23T08:20:20+00:00" + "time": "2018-10-02T16:36:10+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.1.2", + "version": "v4.1.6", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "9f882aed43f364de1d43038e8fb39703c577afc1" + "reference": "60319b45653580b0cdacca499344577d87732f16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9f882aed43f364de1d43038e8fb39703c577afc1", - "reference": "9f882aed43f364de1d43038e8fb39703c577afc1", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60319b45653580b0cdacca499344577d87732f16", + "reference": "60319b45653580b0cdacca499344577d87732f16", "shasum": "" }, "require": { @@ -4672,7 +4684,7 @@ "debug", "dump" ], - "time": "2018-07-05T11:54:23+00:00" + "time": "2018-10-02T16:36:10+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -4789,16 +4801,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v2.5.0", + "version": "v2.5.1", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "6ae3e2e6494bb5e58c2decadafc3de7f1453f70a" + "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/6ae3e2e6494bb5e58c2decadafc3de7f1453f70a", - "reference": "6ae3e2e6494bb5e58c2decadafc3de7f1453f70a", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", + "reference": "8abb4f9aa89ddea9d52112c65bbe8d0125e2fa8e", "shasum": "" }, "require": { @@ -4835,20 +4847,20 @@ "env", "environment" ], - "time": "2018-07-01T10:25:50+00:00" + "time": "2018-07-29T20:33:41+00:00" }, { "name": "zendframework/zend-diactoros", - "version": "1.8.2", + "version": "1.8.6", "source": { "type": "git", "url": "https://github.com/zendframework/zend-diactoros.git", - "reference": "273c18bf6aaab20be9667a3aa4e7702e1e4e7ced" + "reference": "20da13beba0dde8fb648be3cc19765732790f46e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/273c18bf6aaab20be9667a3aa4e7702e1e4e7ced", - "reference": "273c18bf6aaab20be9667a3aa4e7702e1e4e7ced", + "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e", + "reference": "20da13beba0dde8fb648be3cc19765732790f46e", "shasum": "" }, "require": { @@ -4861,7 +4873,8 @@ "require-dev": { "ext-dom": "*", "ext-libxml": "*", - "phpunit/phpunit": "^5.7.16 || ^6.0.8", + "php-http/psr7-integration-tests": "dev-master", + "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7", "zendframework/zend-coding-standard": "~1.0" }, "type": "library", @@ -4898,7 +4911,7 @@ "psr", "psr-7" ], - "time": "2018-07-19T18:38:31+00:00" + "time": "2018-09-05T19:29:37+00:00" } ], "packages-dev": [ @@ -4958,29 +4971,29 @@ }, { "name": "barryvdh/laravel-debugbar", - "version": "v3.1.5", + "version": "v3.2.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "d3cdca2ad6cc6e67735b4a63e7551c690a497f5f" + "reference": "5b68f3972083a7eeec0d6f161962fcda71a127c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/d3cdca2ad6cc6e67735b4a63e7551c690a497f5f", - "reference": "d3cdca2ad6cc6e67735b4a63e7551c690a497f5f", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/5b68f3972083a7eeec0d6f161962fcda71a127c0", + "reference": "5b68f3972083a7eeec0d6f161962fcda71a127c0", "shasum": "" }, "require": { - "illuminate/routing": "5.5.x|5.6.x", - "illuminate/session": "5.5.x|5.6.x", - "illuminate/support": "5.5.x|5.6.x", + "illuminate/routing": "5.5.x|5.6.x|5.7.x", + "illuminate/session": "5.5.x|5.6.x|5.7.x", + "illuminate/support": "5.5.x|5.6.x|5.7.x", "maximebf/debugbar": "~1.15.0", "php": ">=7.0", "symfony/debug": "^3|^4", "symfony/finder": "^3|^4" }, "require-dev": { - "illuminate/framework": "5.5.x" + "laravel/framework": "5.5.x" }, "type": "library", "extra": { @@ -5022,7 +5035,7 @@ "profiler", "webprofiler" ], - "time": "2018-05-03T18:27:04+00:00" + "time": "2018-08-22T11:06:19+00:00" }, { "name": "doctrine/instantiator", @@ -5080,16 +5093,16 @@ }, { "name": "filp/whoops", - "version": "2.2.0", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a" + "reference": "e79cd403fb77fc8963a99ecc30e80ddd885b3311" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/181c4502d8f34db7aed7bfe88d4f87875b8e947a", - "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a", + "url": "https://api.github.com/repos/filp/whoops/zipball/e79cd403fb77fc8963a99ecc30e80ddd885b3311", + "reference": "e79cd403fb77fc8963a99ecc30e80ddd885b3311", "shasum": "" }, "require": { @@ -5108,7 +5121,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" } }, "autoload": { @@ -5137,7 +5150,7 @@ "throwable", "whoops" ], - "time": "2018-03-03T17:56:25+00:00" + "time": "2018-06-30T13:14:06+00:00" }, { "name": "fzaninotto/faker", @@ -5191,26 +5204,26 @@ }, { "name": "graham-campbell/analyzer", - "version": "v2.0.1", + "version": "v2.1.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Analyzer.git", - "reference": "a9b4054282e725eebc09df3c1332e34e8febb101" + "reference": "05c382068f76b95e282b4ca47e5ff6cc6104b83d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Analyzer/zipball/a9b4054282e725eebc09df3c1332e34e8febb101", - "reference": "a9b4054282e725eebc09df3c1332e34e8febb101", + "url": "https://api.github.com/repos/GrahamCampbell/Analyzer/zipball/05c382068f76b95e282b4ca47e5ff6cc6104b83d", + "reference": "05c382068f76b95e282b4ca47e5ff6cc6104b83d", "shasum": "" }, "require": { - "nikic/php-parser": "^2.0|^3.0", + "nikic/php-parser": "^2.0|^3.0|^4.0", "php": "^7.0", - "phpdocumentor/reflection-docblock": "4.2.*", + "phpdocumentor/reflection-docblock": "4.2.*|4.3.*", "phpdocumentor/type-resolver": "0.4.*" }, "require-dev": { - "phpunit/phpunit": "^6.5" + "phpunit/phpunit": "^6.5|^7.0" }, "suggest": { "phpunit/phpunit": "Required to use the analysis trait." @@ -5218,7 +5231,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" } }, "autoload": { @@ -5245,7 +5258,7 @@ "classes", "testing" ], - "time": "2018-01-01T19:57:19+00:00" + "time": "2018-08-23T10:06:35+00:00" }, { "name": "graham-campbell/testbench-core", @@ -5419,16 +5432,16 @@ }, { "name": "mockery/mockery", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "99e29d3596b16dabe4982548527d5ddf90232e99" + "reference": "100633629bf76d57430b86b7098cd6beb996a35a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/99e29d3596b16dabe4982548527d5ddf90232e99", - "reference": "99e29d3596b16dabe4982548527d5ddf90232e99", + "url": "https://api.github.com/repos/mockery/mockery/zipball/100633629bf76d57430b86b7098cd6beb996a35a", + "reference": "100633629bf76d57430b86b7098cd6beb996a35a", "shasum": "" }, "require": { @@ -5437,8 +5450,7 @@ "php": ">=5.6.0" }, "require-dev": { - "phpdocumentor/phpdocumentor": "^2.9", - "phpunit/phpunit": "~5.7.10|~6.5" + "phpunit/phpunit": "~5.7.10|~6.5|~7.0" }, "type": "library", "extra": { @@ -5481,7 +5493,7 @@ "test double", "testing" ], - "time": "2018-05-08T08:54:48+00:00" + "time": "2018-10-02T21:52:37+00:00" }, { "name": "myclabs/deep-copy", @@ -5689,16 +5701,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "4.2.0", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "66465776cfc249844bde6d117abff1d22e06c2da" + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da", - "reference": "66465776cfc249844bde6d117abff1d22e06c2da", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", "shasum": "" }, "require": { @@ -5736,7 +5748,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2017-11-27T17:38:31+00:00" + "time": "2017-11-30T07:14:17+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -5787,16 +5799,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.7.6", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712" + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712", - "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", "shasum": "" }, "require": { @@ -5808,12 +5820,12 @@ }, "require-dev": { "phpspec/phpspec": "^2.5|^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7.x-dev" + "dev-master": "1.8.x-dev" } }, "autoload": { @@ -5846,20 +5858,20 @@ "spy", "stub" ], - "time": "2018-04-18T13:57:24+00:00" + "time": "2018-08-05T17:53:17+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "6.0.7", + "version": "6.0.8", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "865662550c384bc1db7e51d29aeda1c2c161d69a" + "reference": "848f78b3309780fef7ec8c4666b7ab4e6b09b22f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/865662550c384bc1db7e51d29aeda1c2c161d69a", - "reference": "865662550c384bc1db7e51d29aeda1c2c161d69a", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/848f78b3309780fef7ec8c4666b7ab4e6b09b22f", + "reference": "848f78b3309780fef7ec8c4666b7ab4e6b09b22f", "shasum": "" }, "require": { @@ -5909,25 +5921,28 @@ "testing", "xunit" ], - "time": "2018-06-01T07:51:50+00:00" + "time": "2018-10-04T03:41:23+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "cecbc684605bb0cc288828eb5d65d93d5c676d3c" + "reference": "050bedf145a257b1ff02746c31894800e5122946" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cecbc684605bb0cc288828eb5d65d93d5c676d3c", - "reference": "cecbc684605bb0cc288828eb5d65d93d5c676d3c", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", + "reference": "050bedf145a257b1ff02746c31894800e5122946", "shasum": "" }, "require": { "php": "^7.1" }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, "type": "library", "extra": { "branch-alias": { @@ -5956,7 +5971,7 @@ "filesystem", "iterator" ], - "time": "2018-06-11T11:44:00+00:00" + "time": "2018-09-13T20:33:42+00:00" }, { "name": "phpunit/php-text-template", @@ -6099,16 +6114,16 @@ }, { "name": "phpunit/phpunit", - "version": "7.2.7", + "version": "7.4.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "8e878aff7917ef66e702e03d1359b16eee254e2c" + "reference": "f3837fa1e07758057ae06e8ddec6d06ba183f126" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e878aff7917ef66e702e03d1359b16eee254e2c", - "reference": "8e878aff7917ef66e702e03d1359b16eee254e2c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3837fa1e07758057ae06e8ddec6d06ba183f126", + "reference": "f3837fa1e07758057ae06e8ddec6d06ba183f126", "shasum": "" }, "require": { @@ -6133,7 +6148,7 @@ "sebastian/exporter": "^3.1", "sebastian/global-state": "^2.0", "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^1.0", + "sebastian/resource-operations": "^2.0", "sebastian/version": "^2.0.1" }, "conflict": { @@ -6153,7 +6168,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "7.2-dev" + "dev-master": "7.4-dev" } }, "autoload": { @@ -6179,7 +6194,7 @@ "testing", "xunit" ], - "time": "2018-07-15T05:20:50+00:00" + "time": "2018-10-05T04:05:24+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -6661,25 +6676,25 @@ }, { "name": "sebastian/resource-operations", - "version": "1.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", - "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", "shasum": "" }, "require": { - "php": ">=5.6.0" + "php": "^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -6699,7 +6714,7 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2015-07-28T20:34:47+00:00" + "time": "2018-10-04T04:07:39+00:00" }, { "name": "sebastian/version", @@ -6746,16 +6761,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v3.4.13", + "version": "v3.4.17", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "54c9e817b74c7be1840344bf4feaa7a7d02abfb8" + "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/54c9e817b74c7be1840344bf4feaa7a7d02abfb8", - "reference": "54c9e817b74c7be1840344bf4feaa7a7d02abfb8", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722", + "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722", "shasum": "" }, "require": { @@ -6799,7 +6814,7 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2018-07-05T11:53:23+00:00" + "time": "2018-10-02T12:28:39+00:00" }, { "name": "theseer/tokenizer", From abc691979f0b9190722886f53371db7ea3850425 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 15 Oct 2018 12:40:17 +0100 Subject: [PATCH 46/46] Apply fixes from StyleCI (#3277) --- resources/lang/nl-NL/forms.php | 2 +- resources/lang/no-NO/forms.php | 2 +- resources/lang/zh-CN/forms.php | 2 +- resources/lang/zu-ZA/forms.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/lang/nl-NL/forms.php b/resources/lang/nl-NL/forms.php index c473bd52..36c68c1c 100644 --- a/resources/lang/nl-NL/forms.php +++ b/resources/lang/nl-NL/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => 'Statuspagina verversingssnelheid (in seconden)', 'major_outage_rate' => 'Major outage threshold (in %)', 'banner' => 'Banner afbeelding', - 'banner-help' => "Bij voorkeur geen afbeeldingen breder dan 930 pixels uploaden", + 'banner-help' => 'Bij voorkeur geen afbeeldingen breder dan 930 pixels uploaden', 'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?', 'suppress_notifications_in_maintenance' => 'Onderdruk meldingen wanneer incident tijdens de onderhoudingsperiode voordoet?', 'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)', diff --git a/resources/lang/no-NO/forms.php b/resources/lang/no-NO/forms.php index 5e214a6f..1e947d8d 100644 --- a/resources/lang/no-NO/forms.php +++ b/resources/lang/no-NO/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => 'Statusside oppdateringsfrekvens (i sekunder)', 'major_outage_rate' => 'Større brudd terskel (i %)', 'banner' => 'Bannerbilde', - 'banner-help' => "Det anbefales at du ikke laster opp bilder bredere enn 930 piksler", + 'banner-help' => 'Det anbefales at du ikke laster opp bilder bredere enn 930 piksler', 'subscribers' => 'Allow people to signup to email notifications?', 'suppress_notifications_in_maintenance' => 'Utelat notifikasjoner når hendelse inntreffer under vedlikeholdsperiode?', 'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)', diff --git a/resources/lang/zh-CN/forms.php b/resources/lang/zh-CN/forms.php index 362bf3c3..4f5c1dfc 100644 --- a/resources/lang/zh-CN/forms.php +++ b/resources/lang/zh-CN/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => '状态页刷新速度(秒)', 'major_outage_rate' => 'Major outage threshold (in %)', 'banner' => '横幅图像', - 'banner-help' => "建议上传文件宽度不大于 930 像素。", + 'banner-help' => '建议上传文件宽度不大于 930 像素。', 'subscribers' => '允许用户订阅邮件通知', 'suppress_notifications_in_maintenance' => '当计划维护发生时静默处理事件通知?', 'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)', diff --git a/resources/lang/zu-ZA/forms.php b/resources/lang/zu-ZA/forms.php index 8df4bde5..36c814b0 100644 --- a/resources/lang/zu-ZA/forms.php +++ b/resources/lang/zu-ZA/forms.php @@ -156,7 +156,7 @@ return [ 'time_before_refresh' => 'crwdns1434:0crwdne1434:0', 'major_outage_rate' => 'crwdns1444:0crwdne1444:0', 'banner' => 'crwdns1195:0crwdne1195:0', - 'banner-help' => "crwdns1435:0crwdne1435:0", + 'banner-help' => 'crwdns1435:0crwdne1435:0', 'subscribers' => 'crwdns1197:0crwdne1197:0', 'suppress_notifications_in_maintenance' => 'crwdns1427:0crwdne1427:0', 'skip_subscriber_verification' => 'crwdns1198:0crwdne1198:0',