2017 © Pedro Peláez
 

library laravel-former

Laravel form library

image

jonhoo/laravel-former

Laravel form library

  • Friday, May 2, 2014
  • by Jonhoo
  • Repository
  • 1 Watchers
  • 1 Stars
  • 28 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

Former

Former is a form library for Laravel that provides HTML5 form field types, validation and various other convenient luxuries for modern app development., (*1)

Build status: Build Status, (*2)

Notes on usage until examples are in place

Former will validate all data that is passed to it, but will not change the array that is given to it. To avoid mass-assignment attacks and such, use, (*3)

$form = new Form(/* ... */);
$form->setInput(Input::all());
$validator = $form->accept();
if (!$validator->fails()) {
  $data = $validator->getData();
  // Work with $data, NOT Input::all()!
}

Installing

  • Install Composer and place the executable somewhere in your $PATH (for the rest of this README, I'll reference it as just composer), (*4)

  • Add jonhoo/former to your project's `composer.json:, (*5)

{
    "require": {
        "jonhoo/former": "0.*"
    }
}
  • Install/update your dependencies
$ cd my_project
$ composer install

And you're good to go! Have a look at the example files in examples/ to see how you might go about using Former., (*6)

The Versions

02/05 2014

dev-master

9999999-dev https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

02/05 2014

0.4.1

0.4.1.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

12/06 2013

0.4.0

0.4.0.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

12/06 2013

0.3.5

0.3.5.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

12/06 2013

0.3.4

0.3.4.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

12/06 2013

0.3.3

0.3.3.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

09/06 2013

0.3.1

0.3.1.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form

09/06 2013

0.3.0

0.3.0.0 https://github.com/jonhoo/laravel-former

Laravel form library

  Sources   Download

MIT

The Requires

 

laravel library form