Download the PHP package core-system/bootstrap-form without Composer

On this page you can find all versions of the php package core-system/bootstrap-form. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bootstrap-form

CORE-SYSTEM BOOTSTRAP FORM

Packagist GitHub release

This is a standalone part of core-system application for Laravel 5 Framework.

CORE-SYSTEM is Laravel 5 based application

CORE-SYSTEM Bootstrap Form contains laravel-collective/html extension for simple Twitter Bootstrap 3 form generation and and request validation error handling.

Summary

Licence

GPL-3.0+

Requirements and dependencies

This package uses composer to installing dependencies

Composer

Installation

Run terminal. Go to your web projects root directory and type following composer create-project command and install new installation of Laravel Framework

Skip this command if you have Laravel framework already installed

$ composer create-project laravel/laravel your-project-name --prefer-dist

Open composer.json file located in your project folder and add following lines to require key

For laravelcollective/html - 5.3 and bellow versions please use "core-system/bootstrap-form": "1.0.*" because there is some changes in laravelcollective/html API between 5.3 and 5.4 release

Run composer update command

Go to your Laravel config/app.php and add this line to your providers key

and following line to aliases key to register Laravel Collective form facade

If you need you can config control and error class publish vendor config file

Usage

In Blade templates you can use this extensions as standard Laravel Collective Form.

Form methods

create <form> tag with given attributes and <input type="hidden"> for Laravel cross site request forgery protection

create </form> closing tag

create opening .form-group element with given attributes

close cloning tag for actually opened .form-group element

create <input> field

create <select> field

create plain <input> field

create plain <select> field

create <input type="checkbox"> field

create <input type="radio"> field

create in-line <input type="checkbox"> field

create in-line <input type="radio"> field

create <textarea> field

create plain <textarea> field

Basic Blade template usage example

Validation

U can use standard Laravel request validation methods. Package render error classes for Twitter Bootstrap 3 automatically.

Laravel 5 request validation example

Create new request class file via php artisan make:request <className> command

$ php artisan make:request LoginFormRequest

In created LoginFormRequest.php file which is located in your app/Http/Requests folder change content to following lines

And in you controller add request to post action parameters via Laravel 5 dependency injection


All versions of bootstrap-form with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
laravel/framework Version ^5.2
laravelcollective/html Version ^5.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package core-system/bootstrap-form contains the following files

Loading the files please wait ....