Skip to content

Commit 90df7a9

Browse files
authored
Merge pull request php-vcr#235 from tiagobrito/Allow-symfony/yaml-v4-as-dependency
[RFC] Allow symfony/yaml and symfony/event-dispatcher v4.0 as dependency
2 parents 04cce22 + 635427c commit 90df7a9

File tree

6 files changed

+32
-25
lines changed

6 files changed

+32
-25
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "php-vcr/php-vcr",
33
"description": "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.",
44
"license": "MIT",
5-
5+
66
"scripts": {
77
"test": "./vendor/bin/phpunit",
88
"lint": "./vendor/bin/php-cs-fixer fix --verbose --diff --dry-run --config-file=.php_cs",
99
"fix": "./vendor/bin/php-cs-fixer fix --verbose --diff --config-file=.php_cs"
1010
},
11-
11+
1212
"authors": [
1313
{
1414
"name": "Adrian Philipp",
@@ -19,8 +19,8 @@
1919
"require": {
2020
"ext-curl": "*",
2121
"beberlei/assert": "^2.0",
22-
"symfony/yaml": "~2.1|^3.0",
23-
"symfony/event-dispatcher": "^2.4|^3.0"
22+
"symfony/yaml": "~2.1|^3.0|^4.0",
23+
"symfony/event-dispatcher": "^2.4|^3.0|^4.0"
2424
},
2525

2626
"require-dev": {

composer.lock

Lines changed: 24 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VCR/Util/Assertion.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace VCR\Util;
34

45
use Assert\Assertion as BaseAssertion;

src/VCR/Util/HttpClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace VCR\Util;
34

45
use VCR\Request;

tests/VCR/Util/StreamHelperTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace VCR\Util;
34

45
use VCR\Request;

tests/integration/soap/src/VCR/Example/ExampleSoapClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace VCR\Example;
34

45
/**

0 commit comments

Comments
 (0)