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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.1.1 — 2026-08-10

- Added support for PHPUnit 13 on PHP 8.4.1 or newer while preserving PHPUnit
11 and 12 support for PHP 8.3 projects.

## 0.1.0 — 2026-08-09

- Initial release: a PHPUnit adapter for the property-testing engine — the
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ read — inside an ordinary PHPUnit `TestCase`.
## Requirements

- PHP 8.3+
- [`phpunit/phpunit`](https://packagist.org/packages/phpunit/phpunit) `^11.5 || ^12.0`
- [`phpunit/phpunit`](https://packagist.org/packages/phpunit/phpunit) `^11.5 || ^12.0 || ^13.0`
- [`rasuvaeff/property-testing-core`](https://packagist.org/packages/rasuvaeff/property-testing-core) `^0.1`

PHPUnit 13 requires PHP 8.4.1 or newer. On PHP 8.3, Composer resolves a
compatible PHPUnit 11 or 12 release.

## Installation

```bash
Expand Down
5 changes: 4 additions & 1 deletion README.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ shrink до минимального контрпримера, который р
## Требования

- PHP 8.3+
- [`phpunit/phpunit`](https://packagist.org/packages/phpunit/phpunit) `^11.5 || ^12.0`
- [`phpunit/phpunit`](https://packagist.org/packages/phpunit/phpunit) `^11.5 || ^12.0 || ^13.0`
- [`rasuvaeff/property-testing-core`](https://packagist.org/packages/rasuvaeff/property-testing-core) `^0.1`

PHPUnit 13 требует PHP 8.4.1 или новее. На PHP 8.3 Composer выбирает
совместимый релиз PHPUnit 11 или 12.

## Установка

```bash
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"require": {
"php": "8.3 - 8.5",
"phpunit/phpunit": "^11.5 || ^12.0",
"phpunit/phpunit": "^11.5 || ^12.0 || ^13.0",
"rasuvaeff/property-testing-core": "^0.1"
},
"require-dev": {
Expand Down
3 changes: 2 additions & 1 deletion llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ with a fluent `forAll()->check()` API over `rasuvaeff/property-testing-core`.
composer require --dev rasuvaeff/property-testing-phpunit
```

Requires PHP 8.3–8.5, `phpunit/phpunit` `^11.5 || ^12.0`,
Requires PHP 8.3–8.5, `phpunit/phpunit` `^11.5 || ^12.0 || ^13.0`
(PHPUnit 13 requires PHP 8.4.1+; PHP 8.3 resolves PHPUnit 11 or 12),
`rasuvaeff/property-testing-core` `^0.1`.

## Rules
Expand Down
Loading