Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/code-style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.2', '8.3', '8.4']
php-versions: ['8.3', '8.4', '8.5']
composer-options: ['--ignore-platform-req=php+']
fail-fast: false
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
Expand All @@ -23,4 +23,4 @@ jobs:
- name: Install dependencies
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}
- name: Run the tests
run: PHP_CS_FIXER_IGNORE_ENV=1 ./tools/php-cs-fixer.phar fix --dry-run
run: PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --dry-run
4 changes: 0 additions & 4 deletions .phive/phars.xml

This file was deleted.

11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-dom": "*",
"phpunit/phpunit": "^10.5.0 || ^11.0",
"php-soap/engine": "^2.13",
"php-soap/xml": "^1.8",
"phpunit/phpunit": "~12.3",
"php-soap/engine": "^2.16",
"php-soap/xml": "^1.9",
"php-vcr/php-vcr": "^1.6.0",
"veewee/xml": "^3.0"
},
"require-dev": {
"php-cs-fixer/shim": "~3.88"
}
}
7 changes: 2 additions & 5 deletions src/AbstractEngineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace Soap\EngineIntegrationTests;

use PHPUnit\Framework\Attributes\RunInSeparateProcess;
use Soap\Engine\Engine;
use VCR\VCR;

Expand All @@ -17,11 +18,7 @@ abstract protected function getVcrPrefix(): string;
*/
abstract protected function skipVcr(): bool;

/**
*
* @runInSeparateProcess
* Note: this method will throw Exceptions if VCR can't take over the configured SoapClient.
*/
#[RunInSeparateProcess]
public function test_it_should_be_possible_to_hook_php_vcr_for_testing()
{
$this->runWithCasette('get-city-weather-by-zip-10013.yml', function () {
Expand Down
Binary file removed tools/php-cs-fixer.phar
Binary file not shown.