From e37cb9bb1f46acd91e897d187f58cebe495ee8e0 Mon Sep 17 00:00:00 2001 From: Khoubza Younes Date: Wed, 27 Oct 2021 20:21:05 +0100 Subject: [PATCH] add persistent template notifications -> bump flasher-js to v0.6.1 --- src/Laravel/Resources/config/config.php | 2 +- src/Symfony/DependencyInjection/Configuration.php | 2 +- tests/Symfony/DependencyInjection/ConfigurationTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Laravel/Resources/config/config.php b/src/Laravel/Resources/config/config.php index 9f45ccc6..75a02bed 100644 --- a/src/Laravel/Resources/config/config.php +++ b/src/Laravel/Resources/config/config.php @@ -3,7 +3,7 @@ return array( 'default' => 'template', - 'root_script' => 'https://cdn.jsdelivr.net/npm/@flasher/flasher@0.5.0/dist/flasher.min.js', + 'root_script' => 'https://cdn.jsdelivr.net/npm/@flasher/flasher@0.6.1/dist/flasher.min.js', 'template_factory' => array( 'default' => 'tailwindcss', diff --git a/src/Symfony/DependencyInjection/Configuration.php b/src/Symfony/DependencyInjection/Configuration.php index 7ae806ef..3fdc854e 100755 --- a/src/Symfony/DependencyInjection/Configuration.php +++ b/src/Symfony/DependencyInjection/Configuration.php @@ -29,7 +29,7 @@ final class Configuration implements ConfigurationInterface ->defaultValue('template') ->end() ->scalarNode('root_script') - ->defaultValue('https://cdn.jsdelivr.net/npm/@flasher/flasher@0.5.0/dist/flasher.min.js') + ->defaultValue('https://cdn.jsdelivr.net/npm/@flasher/flasher@0.6.1/dist/flasher.min.js') ->end() ->arrayNode('root_scripts') ->prototype('scalar')->end() diff --git a/tests/Symfony/DependencyInjection/ConfigurationTest.php b/tests/Symfony/DependencyInjection/ConfigurationTest.php index b2347425..10e8095a 100644 --- a/tests/Symfony/DependencyInjection/ConfigurationTest.php +++ b/tests/Symfony/DependencyInjection/ConfigurationTest.php @@ -14,7 +14,7 @@ class ConfigurationTest extends TestCase $expected = array( 'default' => 'template', - 'root_script' => 'https://cdn.jsdelivr.net/npm/@flasher/flasher@0.5.0/dist/flasher.min.js', + 'root_script' => 'https://cdn.jsdelivr.net/npm/@flasher/flasher@0.6.1/dist/flasher.min.js', 'root_scripts' => array(), 'template_factory' => array( 'default' => 'tailwindcss',