Skip to content

Commit b9ba2db

Browse files
Require phpspec/prophecy as dev dependency (#51)
* Require phpspec/prophecy as dev dependency sebastianbergmann/phpunit#5033 changed phpunit to no longer depend on phpspec/prophecy. This results in the need to add a development dependency for phpspec/prophecy. Doing so results in a warning, since PHPUnit\Framework\TestCase::prophesize() is deprecated and will be removed in PHPUnit 10. While we could use the trait provided by phpspec/prophecy-phpunit instead, it would break PHP < 7.3 support. * Closes #50
1 parent 3f7dc36 commit b9ba2db

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243
name: PHPUnit ${{ matrix.phpunit-version }} on PHP ${{ matrix.php-version }}
244244
steps:
245245
- name: Checkout
246-
uses: actions/checkout@v2
246+
uses: actions/checkout@v3
247247
with:
248248
ref: ${{ github.head_ref }}
249249

composer.json

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9",
2323
"php-mock/php-mock-integration": "^2.1"
2424
},
25+
"require-dev": {
26+
"phpspec/prophecy": "^1.10.3"
27+
},
2528
"archive": {
2629
"exclude": ["/tests"]
2730
}

0 commit comments

Comments
 (0)