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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- hhvm-nightly

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- [Granularity control](docs/README.md#validation-methods) for advanced reporting.
- Almost 100 (fully tested) validators.
- [A concrete API](docs/CONCRETE_API.md) for non fluent usage.

- Works on PHP 5.3+ or HHVM 3.3+

## Table of contents

Expand Down
2 changes: 2 additions & 0 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ you can install it using [Composer](http://getcomposer.org).
composer require respect/validation
```

[PHP](https://php.net) 5.3+ or [HHVM](http://hhvm.com) 3.3+ are required.

***

See also:
Expand Down
4 changes: 2 additions & 2 deletions tests/Rules/HexRgbColorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ public function providerForInvalidHexRgbColor()
array('#S'),
array('1234'),
array('foo'),
array(000099),
array(005),
array(0x39F),
array(05),
array(1),
array(443),
array(array()),
Expand Down