Skip to content

Commit dbddd64

Browse files
committed
requirements documentation
1 parent 62bf13b commit dbddd64

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ This plugin affords math related expectations.
55

66
[![Tests](https://github.com/faissaloux/pest-plugin-math/actions/workflows/tests.yml/badge.svg)](https://github.com/faissaloux/pest-plugin-math/actions/workflows/tests.yml) ![Codecov](https://img.shields.io/codecov/c/github/faissaloux/pest-plugin-math) ![Packagist Version](https://img.shields.io/packagist/v/faissaloux/pest-plugin-math) ![Packagist License](https://img.shields.io/packagist/l/faissaloux/pest-plugin-math)
77

8+
## Requirements
9+
10+
| pest | php | pest-plugin-math |
11+
| ------ | ------- | ---------------- |
12+
| ^2.0 | ^8.1 | ^1.0.0 |
13+
| ^3.0 | ^8.2 | ^1.3.0 |
14+
| ^4.0 | ^8.3 | ^1.7.0 |
815

916
#### `toBeDivisibleBy()`
1017
```php
@@ -100,4 +107,4 @@ $$\sum\limits_n^k x * 2$$
100107
```php
101108
expect(2)->toBeSummationOf(fn (int $x) => $x * 2, from: 0, to: 1);
102109
expect(3)->not->toBeSummationOf(fn (int $x) => $x * 2, from: 0, to: 1);
103-
```
110+
```

0 commit comments

Comments
 (0)