Skip to content

Commit 1c3754a

Browse files
authored
Merge pull request #18 from Foysal50x/Foysal50x-patch-1
Update composer.json
2 parents d0c0bf1 + 1925d30 commit 1c3754a

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"illuminate/support": "^10.0|^11.0|^12.0"
2525
},
2626
"require-dev": {
27-
"codeat3/blade-icon-generation-helpers": "^0.8.0",
27+
"codeat3/blade-icon-generation-helpers": "^0.8.0|^0.10.0",
2828
"orchestra/testbench": "^8.0|^9.0|^10.0",
2929
"phpunit/phpunit": "^10.5|^11.0|^12.0"
3030
},

tests/CompilesIconsTest.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ protected function getPackageProviders($app)
1313
return [BladeIoniconsServiceProvider::class, BladeIconsServiceProvider::class];
1414
}
1515

16-
/** @test */
17-
public function it_compiles_a_single_anonymous_component()
16+
public function test_it_compiles_a_single_anonymous_component()
1817
{
1918
$result = svg('ionicon-logo-apple')->toHtml();
2019

@@ -24,8 +23,7 @@ public function it_compiles_a_single_anonymous_component()
2423
$this->assertSame($expected, $result);
2524
}
2625

27-
/** @test */
28-
public function it_can_add_classes_to_icons()
26+
public function test_it_can_add_classes_to_icons()
2927
{
3028
$result = svg('ionicon-logo-apple', 'w-6 h-6 text-gray-500')->toHtml();
3129

@@ -35,8 +33,7 @@ public function it_can_add_classes_to_icons()
3533
$this->assertSame($expected, $result);
3634
}
3735

38-
/** @test */
39-
public function it_can_add_styles_to_icons()
36+
public function test_it_can_add_styles_to_icons()
4037
{
4138
$result = svg('ionicon-logo-apple', ['style' => 'color: #555'])->toHtml();
4239

0 commit comments

Comments
 (0)