From aac81dbf1df038d6340c3aedc2482e7ff140e492 Mon Sep 17 00:00:00 2001 From: Swapnil Sarwe Date: Sat, 21 Mar 2026 18:47:56 +0530 Subject: [PATCH] laravel 13 compatibility --- .composer.json.swp | Bin 12288 -> 0 bytes .github/workflows/tests.yml | 20 ++++++++++++++++++-- composer.json | 8 ++++---- tests/CompilesIconsTest.php | 10 +++++----- 4 files changed, 27 insertions(+), 11 deletions(-) delete mode 100644 .composer.json.swp diff --git a/.composer.json.swp b/.composer.json.swp deleted file mode 100644 index 1ca34462b79c299c8f0cbe0fd95ad4fab52e0472..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12288 zcmeI2&1)n@7{+TwL|0cuLGU1yC9(+V?iu5LUc@M9WCLQ>y|@{v>8{DtPES``RXy2Z zja~&oyoi5*;MJ2Tcu?`+O~sQ3FCvI6cn}0{vd`NeGjWq_yo%NEbWc}TzaPJTt03eZ z_Aae&@N;pG;kci%Pe1-ieSZCkJ8%D;F}EYjLg%rgXSX;uWV&X|gl{(U51sku!eFvv z?8KEaRWZ)isbN)Qxk@tWWirfVrXro1!nMDho|d_aa$R)eshO6>DH~sLra07Lcn}B# z0u6!6kD{|D*y@x0dZ|Aq9_0@{@JgT)2m}IwKp+qZ1OkCTAP@)y0{LcX`P zIiGH?$8Nf|x8V{91OkCTAP@)y0)apv5C{YUfj}S-2m}KEK>{*k?D@MGJ98Yt3*pqHT+pvR#W~4x$`mC>()6AP@)y0)apv5C{YU|C+!q<2ZI%ccnWz#K_pG^x`}hGgV~9 zCPQ5$<+zMe7mf5)WjW4*)stzySMGq>RiV9Dsb>k7T3vbvlh>Mo(yEcNk@IqxD-3&E zsdnyE7kXMv>t{OGeold8YS!A?ZKjcP;f(bWI!`BZTaj_H(%47C=}2#5sPVVwr6yZ? zosKP5Ulu3vtjU!0tCugYQRnJr-K=^6y{hZf!g}!Nrm{1gs+X*p=}g%r7_utLc9`OO zm359pF0GuYd=a5gSG|>s+d~5u7XcfAU}nwTE!~OI+32Z-2_Y+QawD^d;2lZgsLaWs zv+2?9YFB&W7pNSn1*)LBCSYiQCgnE<{a$tC0)TsPpr@t_Lw7+beAGeA$j1ZL30A>9r}MvC2zj=>v&DFJA46 z)~eSlZPfzb-kfxvS145JRpP3$L><;|cWF^_`_pQ?S2~)2#xj(~aX&syks^cI60*E0 z4h%QNytP~b|14%PHd9q%Es%w=_oX|ZB$?I9&2-^ij7IC_=c~CDa#~M*jwbO-G^_PW zj~jRNYftKQd!VDXA>2v3qi*4^@|;ogEHOL zeq0U7b<)*C19@M|d1qy!=4f8e>ZK{xXu*pWRQa+)oo?&qb^39kU9v5I>`BeGh7uy+ z&+v99;@)s2ozCZcDkq9pPH{8h&0fN3GvW1a!gaytrn0;>%toHtml(); @@ -26,7 +26,7 @@ public function it_compiles_a_single_anonymous_component() } /** @test */ - public function it_can_add_classes_to_icons() + public function test_it_can_add_classes_to_icons() { $result = svg('simpleline-ban', 'w-6 h-6 text-gray-500')->toHtml(); $expected = <<<'SVG' @@ -36,7 +36,7 @@ public function it_can_add_classes_to_icons() } /** @test */ - public function it_can_add_styles_to_icons() + public function test_it_can_add_styles_to_icons() { $result = svg('simpleline-ban', ['style' => 'color: #555'])->toHtml(); @@ -49,7 +49,7 @@ public function it_can_add_styles_to_icons() } /** @test */ - public function it_can_add_default_class_from_config() + public function test_it_can_add_default_class_from_config() { Config::set('blade-simple-line-icons.class', 'awesome'); @@ -64,7 +64,7 @@ public function it_can_add_default_class_from_config() } /** @test */ - public function it_can_merge_default_class_from_config() + public function test_it_can_merge_default_class_from_config() { Config::set('blade-simple-line-icons.class', 'awesome');