File tree Expand file tree Collapse file tree 5 files changed +11
-15
lines changed Expand file tree Collapse file tree 5 files changed +11
-15
lines changed 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1515 }
1616 ],
1717 "require" : {
18- "php" : " ~8.2 .0 || ~8.3 .0 || ~8.4 .0" ,
18+ "php" : " ~8.3 .0 || ~8.4 .0 || ~8.5 .0" ,
1919 "ext-dom" : " *" ,
20- "phpunit/phpunit" : " ^10.5.0 || ^11.0 " ,
21- "php-soap/engine" : " ^2.13 " ,
22- "php-soap/xml" : " ^1.8 " ,
20+ "phpunit/phpunit" : " ~12.3 " ,
21+ "php-soap/engine" : " ^2.16 " ,
22+ "php-soap/xml" : " ^1.9 " ,
2323 "php-vcr/php-vcr" : " ^1.6.0" ,
2424 "veewee/xml" : " ^3.0"
25+ },
26+ "require-dev" : {
27+ "php-cs-fixer/shim" : " ~3.88"
2528 }
2629}
Original file line number Diff line number Diff line change 44
55namespace Soap \EngineIntegrationTests ;
66
7+ use PHPUnit \Framework \Attributes \RunInSeparateProcess ;
78use Soap \Engine \Engine ;
89use VCR \VCR ;
910
@@ -17,11 +18,7 @@ abstract protected function getVcrPrefix(): string;
1718 */
1819 abstract protected function skipVcr (): bool ;
1920
20- /**
21- *
22- * @runInSeparateProcess
23- * Note: this method will throw Exceptions if VCR can't take over the configured SoapClient.
24- */
21+ #[RunInSeparateProcess]
2522 public function test_it_should_be_possible_to_hook_php_vcr_for_testing ()
2623 {
2724 $ this ->runWithCasette ('get-city-weather-by-zip-10013.yml ' , function () {
You can’t perform that action at this time.
0 commit comments