Skip to content

Commit 2615616

Browse files
committed
Fix: Be compatible with PHP 5.3.13.
Removes phpunit as dependency and lowers PHP requirement in composer.json to >=5.3.
1 parent e439544 commit 2615616

File tree

3 files changed

+7
-538
lines changed

3 files changed

+7
-538
lines changed

Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ To run the guzzle example, do this:
1919

2020
```
2121
cd guzzle
22-
../vendor/bin/phpunit
22+
phpunit
2323
```
2424

2525
If you like to record all http requests again, delete the fixture file.
2626

2727
```
2828
rm test/fixtures/github_adri_php-vcr.yml
29-
../vendor/bin/phpunit
29+
phpunit
3030
```
3131

3232
## Soap
@@ -35,13 +35,13 @@ Soap examples can be run by:
3535

3636
```
3737
cd soap
38-
../vendor/bin/phpunit
38+
phpunit
3939
```
4040

4141
To record all http requests agian, delete the fixtures:
4242

4343
```
4444
cd soap
4545
rm test/fixtures/soap_weather_api_temperature
46-
../vendor/bin/phpunit
46+
phpunit
4747
```

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
"minimum-stability": "dev",
1111

1212
"require": {
13-
"php": ">=5.3.3",
14-
"phpunit/phpunit": "3.8.*@dev",
13+
"php": ">=5.3",
1514
"php-vcr/php-vcr": "dev-master",
1615
"php-vcr/phpunit-testlistener-vcr": "dev-master"
1716
},

0 commit comments

Comments
 (0)