5050
5151## Requirements
5252
53- - ` >= php5.3.3 + `
53+ - ` >= php7.2 + `
5454
5555## Installation
5656
@@ -59,7 +59,7 @@ Prior to installing `ultimate-uploader` get the [Composer](https://getcomposer.o
5959** Step 1** — update your ` composer.json ` :
6060``` composer.json
6161"require" : {
62- "peterson/php-form-validator" : " ^3.3.0 "
62+ "peterson/php-form-validator" : " ^3.3.1 "
6363}
6464```
6565
@@ -116,12 +116,12 @@ public function save(Request $request){
116116```
117117
118118## Methods That Should Always Come First
119- - These methods are mandatory and should always come first before any others.
120- - All are Optional ` method `
119+ - All are Optional ` method `
120+ - These methods are only mandatory on usage and should always come first before others.
121121
122122| Methods | Description |
123123| ----------| -------------------------------|
124- | ->et() | The method takes a ` bool ` parameter to decide how errors are displayed : ` single or multiple ` |
124+ | ->et() | Takes param as ` bool ` to format error's on display : ` single or multiple ` |
125125| ->post() | No param needed. SET ` form ` request to ` POST ` only |
126126| ->get() | No param needed. SET ` form ` request to ` GET ` only |
127127
@@ -138,9 +138,9 @@ $form->post()->submit([
138138
139139| Array Keys | Description |
140140| -------------| -----------------------------------------|
141- | request | String `POST/ | GET/ | ALL` Default ` POST` |
142- | error_type | Boolean `true/ | false` Default ` false` |
143- | csrf_token | Boolean `true/ | false` Default ` true` |
141+ | request | String ` POST\ |GET\ |ALL ` Default ` POST ` |
142+ | error_type | Boolean ` true\ |false ` Default ` false ` |
143+ | csrf_token | Boolean ` true\ |false ` Default ` true ` |
144144
145145```
146146Config_opForm([
@@ -223,7 +223,7 @@ $form->get()->submit([
223223```
224224
225225### All
226- - Same as ` POST/ |GET `
226+ - Same as ` POST\ |GET `
227227 - This will set the Form Request using ` $_SERVER['REQUEST_METHOD'] `
228228
229229```
0 commit comments