Remove duplication amoung documentations

There is quite some duplication between the "README.md" file and the
"docs/index.md". This commit will separate what belongs to the
documentation and what is specific of the repository.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
Henrique Moody 2019-05-22 21:07:26 +02:00
parent b88da74f79
commit 6a52b63bbb
No known key found for this signature in database
GPG key ID: 221E9281655813A6
2 changed files with 2 additions and 14 deletions

View file

@ -9,15 +9,10 @@
[The most awesome validation engine ever created for PHP.](http://bit.ly/1a1oeQv)
- Complex rules made simple: `v::numericVal()->positive()->between(1, 255)->validate($input)`.
- Granularity control for advanced reporting.
- More than 150 (fully tested) validation rules.
- A concrete API for non fluent usage.
## Documentation
Documentation can be found in https://respect-validation.readthedocs.io
and also in the [docs/](docs/) folder.
Documentation can be found in https://respect-validation.readthedocs.io and also
in the [docs/](docs/) folder.
## Table of contents

View file

@ -1,12 +1,5 @@
# Overview
[![Build Status](https://img.shields.io/travis/Respect/Validation/master.svg?style=flat-square)](http://travis-ci.org/Respect/Validation)
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/Respect/Validation/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/Respect/Validation/?branch=master)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/Respect/Validation/master.svg?style=flat-square)](https://scrutinizer-ci.com/g/Respect/Validation/?branch=master)
[![Latest Stable Version](https://img.shields.io/packagist/v/respect/validation.svg?style=flat-square)](https://packagist.org/packages/respect/validation)
[![Total Downloads](https://img.shields.io/packagist/dt/respect/validation.svg?style=flat-square)](https://packagist.org/packages/respect/validation)
[![License](https://img.shields.io/packagist/l/respect/validation.svg?style=flat-square)](https://packagist.org/packages/respect/validation)
[The most awesome validation engine ever created for PHP.](http://bit.ly/1a1oeQv)
- Complex rules made simple: `v::numericVal()->positive()->between(1, 255)->validate($input)`.