Skip to content
This repository was archived by the owner on Jul 7, 2025. It is now read-only.

Commit 3915ff7

Browse files
author
Nate Wiebe
authored
Merge pull request #25 from Pixelrobin/phpunit-update
Update phpunit to v9
2 parents b0a7fa9 + 36fb969 commit 3915ff7

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"php": ">=7.3"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": "7"
31+
"ext-json": "*",
32+
"phpunit/phpunit": "^9.5"
3233
},
3334
"scripts": {
3435
"test": "phpunit --verbose tests"

tests/FeatherTest.php

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,22 @@
44

55
class FeatherTest extends TestCase
66
{
7-
protected function setUp()
7+
/**
8+
* @var \Feather\Icons
9+
*/
10+
private $icons;
11+
12+
/**
13+
* @var array
14+
*/
15+
private $XMLTestData;
16+
17+
/**
18+
* @var array
19+
*/
20+
private $AttributeTestData;
21+
22+
protected function setUp(): void
823
{
924
$this->icons = new Feather\Icons();
1025

0 commit comments

Comments
 (0)