Skip to content

Commit 5dc99a4

Browse files
committed
:octocat:
1 parent c1ce9b7 commit 5dc99a4

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

composer.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
"homepage":"https://github.com/chillerlan/php-qrcode/graphs/contributors"
3333
}
3434
],
35+
"funding": [
36+
{
37+
"type": "Ko-Fi",
38+
"url": "https://ko-fi.com/codemasher"
39+
}
40+
],
3541
"support": {
3642
"docs": "https://php-qrcode.readthedocs.io",
3743
"issues": "https://github.com/chillerlan/php-qrcode/issues",
@@ -45,6 +51,7 @@
4551
"chillerlan/php-settings-container": "^2.1.6 || ^3.2.1"
4652
},
4753
"require-dev": {
54+
"ext-fileinfo": "*",
4855
"chillerlan/php-authenticator": "^4.3.1 || ^5.2.1",
4956
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
5057
"phan/phan": "^5.4",
@@ -62,12 +69,12 @@
6269
},
6370
"autoload": {
6471
"psr-4": {
65-
"chillerlan\\QRCode\\": "src/"
72+
"chillerlan\\QRCode\\": "src"
6673
}
6774
},
6875
"autoload-dev": {
6976
"psr-4": {
70-
"chillerlan\\QRCodeTest\\": "tests/"
77+
"chillerlan\\QRCodeTest\\": "tests"
7178
}
7279
},
7380
"scripts": {

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
>
99
<testsuites>
1010
<testsuite name="php-qrcode test suite">
11-
<directory>./tests/</directory>
12-
<exclude>./tests/Performance</exclude>
11+
<directory>tests</directory>
12+
<exclude>tests/Performance</exclude>
1313
</testsuite>
1414
</testsuites>
1515
<coverage processUncoveredFiles="true">
1616
<include>
17-
<directory>./src</directory>
17+
<directory>src</directory>
1818
</include>
1919
<report>
2020
<clover outputFile=".build/coverage/clover.xml"/>

0 commit comments

Comments
 (0)