File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
1
/.build export-ignore
2
2
/.github export-ignore
3
+ /.idea export-ignore
3
4
/.phan export-ignore
4
5
/.phpdoc export-ignore
5
6
/docs export-ignore
Original file line number Diff line number Diff line change @@ -124,7 +124,8 @@ jobs:
124
124
uses : shivammathur/setup-php@v2
125
125
with :
126
126
php-version : " 8.3"
127
- extensions : simplexml
127
+ extensions : simplexml, ${{ env.PHP_EXTENSIONS }}
128
+ ini-values : ${{ env.PHP_INI_VALUES }}
128
129
coverage : none
129
130
tools : phpDocumentor
130
131
Original file line number Diff line number Diff line change 15
15
"homepage" :" https://github.com/chillerlan/php-library-template/graphs/contributors"
16
16
}
17
17
],
18
+ "funding" : [
19
+ {
20
+ "type" : " Ko-Fi" ,
21
+ "url" : " https://ko-fi.com/codemasher"
22
+ }
23
+ ],
18
24
"homepage" : " https://github.com/chillerlan/php-library-template" ,
19
25
"support" : {
20
26
"docs" : " https://php-library-template.readthedocs.io" ,
45
51
}
46
52
},
47
53
"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"
50
57
},
51
58
"config" : {
52
59
"lock" : false ,
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<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"
4
4
bootstrap =" vendor/autoload.php"
5
5
cacheDirectory =" .build/phpunit-cache"
6
6
colors =" true"
7
7
>
8
8
<testsuites >
9
9
<testsuite name =" chillerlan test suite" >
10
- <directory >./ tests/ </directory >
10
+ <directory >tests</directory >
11
11
</testsuite >
12
12
</testsuites >
13
13
<source >
You can’t perform that action at this time.
0 commit comments