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 11/.build export-ignore
22/.github export-ignore
3+ /.idea export-ignore
34/.phan export-ignore
45/.phpdoc export-ignore
56/docs export-ignore
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" ,
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 ,
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments