dev-master
9999999-dev http://github.com/ritey/formsPHP dynamic forms library
MIT
The Requires
- php >=5.5.9
by David Wright
schema html forms
PHP dynamic forms library
Forms is a PHP library class to make dynamic form building easy, (*1)
To install Forms as a Composer package, simply add this to your composer.json:, (*3)
"ritey/forms": "dev-master"
..and run composer update
. Once it's installed, if you're using Laravel 5, you can register the service provider in app/config/app.php
in the providers
array add :, (*4)
Ritey\Forms\FormsServiceProvider::class
You can also benefit from using a Forms Facade in Laravel 5 by adding to the alias array also in app.php below the providers array, (*5)
'Forms' => Ritey\Forms\Facades\FormsFacade,
If you're using Laravel, publish the config file by running, (*6)
php artisan vendor:publish
If you aren't using Laravel then you can create a Forms object by:, (*7)
use Forms\Forms; $forms = new Forms();
For more information about how to use the Forms class, read the Wiki, (*8)
Forms has been written by David Wright and is released under the MIT License., (*9)
PHP dynamic forms library
MIT
schema html forms