Skip to content

Commit f697120

Browse files
committed
:octocat:
1 parent 589a06a commit f697120

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/.build export-ignore
22
/.github export-ignore
3+
/.idea export-ignore
34
/.phan export-ignore
45
/.phpdoc export-ignore
56
/docs export-ignore

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ jobs:
124124
uses: shivammathur/setup-php@v2
125125
with:
126126
php-version: "8.3"
127-
extensions: simplexml
127+
extensions: simplexml, ${{ env.PHP_EXTENSIONS }}
128+
ini-values: ${{ env.PHP_INI_VALUES }}
128129
coverage: none
129130
tools: phpDocumentor
130131

composer.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
"homepage":"https://github.com/chillerlan/php-library-template/graphs/contributors"
1616
}
1717
],
18+
"funding": [
19+
{
20+
"type": "Ko-Fi",
21+
"url": "https://ko-fi.com/codemasher"
22+
}
23+
],
1824
"homepage": "https://github.com/chillerlan/php-library-template",
1925
"support": {
2026
"docs": "https://php-library-template.readthedocs.io",
@@ -45,8 +51,9 @@
4551
}
4652
},
4753
"scripts": {
48-
"phpunit": "@php vendor/bin/phpunit",
49-
"phan": "@php vendor/bin/phan"
54+
"phan": "@php vendor/bin/phan",
55+
"phpcs": "@php vendor/bin/phpcs",
56+
"phpunit": "@php vendor/bin/phpunit"
5057
},
5158
"config": {
5259
"lock": false,

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
44
bootstrap="vendor/autoload.php"
55
cacheDirectory=".build/phpunit-cache"
66
colors="true"
77
>
88
<testsuites>
99
<testsuite name="chillerlan test suite">
10-
<directory>./tests/</directory>
10+
<directory>tests</directory>
1111
</testsuite>
1212
</testsuites>
1313
<source>

0 commit comments

Comments
 (0)