PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Edward Paul   Laravel Multi-Step Form   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Multi-Step Form
Create forms split in several pages for each step
Author: By
Last change:
Date: 3 years ago
Size: 1,476 bytes
 

Contents

Class file image Download
{ "name": "infinitypaul/laravel-multistep-forms", "description": "Multistep form functionality for Laravel, with the ability to persist data for each step, navigate back and forward, prevent accessing future steps and more.", "keywords": [ "infinitypaul", "laravel-multistep-forms" ], "homepage": "https://github.com/infinitypaul/laravel-multistep-forms", "license": "MIT", "type": "library", "authors": [ { "name": "Paul Edward", "email": "infinitypaul@live.com", "role": "Developer" } ], "require": { "php": "^7.1", "illuminate/support": "^5.7|^6.0|^7.0" }, "require-dev": { "orchestra/testbench": "^4.0", "phpunit/phpunit": "^8.0" }, "autoload": { "psr-4": { "Infinitypaul\\MultiStep\\": "src" } }, "autoload-dev": { "psr-4": { "Infinitypaul\\MultiStep\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Infinitypaul\\MultiStep\\MultiStepFormsServiceProvider" ], "aliases": { "MultiStep": "Infinitypaul\\MultiStep\\MultiStepFormsFacade" } } } }