File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 operating-system : [ubuntu-latest]
10- php-versions : ['8.2 ', '8.3 ']
10+ php-versions : ['8.3 ', '8.4', '8.5 ']
1111 composer-options : ['--ignore-platform-req=php+']
1212 fail-fast : false
1313 name : PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
2323 - name : Install dependencies
2424 run : composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
2525 - name : Run the tests
26- run : ./tools/psalm.phar
26+ run : ./vendor/bin/psalm
27+ continue-on-error : ${{ matrix.php-versions == '8.5' }}
Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 operating-system : [ubuntu-latest]
10- php-versions : ['8.2 ', '8.3 ', '8.4 ']
10+ php-versions : ['8.3 ', '8.4 ', '8.5 ']
1111 composer-options : ['--ignore-platform-req=php+']
1212 fail-fast : false
1313 name : PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
2323 - name : Install dependencies
2424 run : composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
2525 - name : Run the tests
26- run : PHP_CS_FIXER_IGNORE_ENV=1 ./tools/ php-cs-fixer.phar fix --dry-run
26+ run : PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/ php-cs-fixer fix --dry-run
Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 operating-system : [ubuntu-latest]
10- php-versions : ['8.2 ', '8.3 ', '8.4 ']
10+ php-versions : ['8.3 ', '8.4 ', '8.5 ']
1111 composer-options : ['--ignore-platform-req=php+']
1212 fail-fast : false
1313 name : PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2020 }
2121 ],
2222 "require" : {
23- "php" : " ~8.2 .0 || ~8.3 .0 || ~8.4 .0" ,
23+ "php" : " ~8.3 .0 || ~8.4 .0 || ~8.5 .0" ,
2424 "ext-dom" : " *" ,
25- "veewee/xml" : " ^3.0 "
25+ "veewee/xml" : " ^3.4 "
2626 },
2727 "require-dev" : {
28- "phpunit/phpunit" : " ^10.0 || ^11.0"
28+ "phpunit/phpunit" : " ~12.3" ,
29+ "vimeo/psalm" : " ~6.13" ,
30+ "php-cs-fixer/shim" : " ^3.88"
2931 }
3032}
Original file line number Diff line number Diff line change 99 skipChecksOnUnresolvableIncludes =" false"
1010 checkForThrowsDocblock =" true"
1111 checkForThrowsInGlobalScope =" true"
12+ findUnusedCode =" false"
13+ ensureOverrideAttribute =" false"
1214 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
1315 xmlns =" https://getpsalm.org/schema/config"
1416 xsi : schemaLocation =" https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
Original file line number Diff line number Diff line change 33
44namespace SoapTest \Xml \Unit \Xpath ;
55
6+ use PHPUnit \Framework \Attributes \DataProvider ;
67use PHPUnit \Framework \TestCase ;
78use Soap \Xml \Xmlns ;
89use VeeWee \Xml \Xmlns \Xmlns as XmlXmlns ;
@@ -11,8 +12,8 @@ final class XmlnsTest extends TestCase
1112{
1213 /**
1314 * @param callable(): XmlXmlns
14- * @dataProvider provideKnownXmlnses
1515 */
16+ #[DataProvider('provideKnownXmlnses ' )]
1617 public function test_it_knows_some_xmlnses (callable $ factory , string $ uri ): void
1718 {
1819 $ xmlns = $ factory ();
You can’t perform that action at this time.
0 commit comments