Download the PHP package waynestate/formy-parser without Composer
On this page you can find all versions of the php package waynestate/formy-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download waynestate/formy-parser
More information about waynestate/formy-parser
Files in waynestate/formy-parser
Download waynestate/formy-parser
More information about waynestate/formy-parser
Files in waynestate/formy-parser
Vendor waynestate
Package formy-parser
Short Description Parses a string for formy elements and converts the string to an HTML form
License MIT
Package formy-parser
Short Description Parses a string for formy elements and converts the string to an HTML form
License MIT
Please rate this library. Is it a good library?
Informations about the package formy-parser
Formy Parser
Parses a string for formy elements and converts the string to an HTML form Edit Add topics
Installation
composer require waynestate/formy-parser
Usage
<?php
use Waynestate\FormyParser\Parser;
use Waynestate\ParserMiddleware\ParserMiddleware;
// Composer autoload
require __DIR__ . '/../vendor/autoload.php';
// Create the instance of the Parser Middleware
$parser = new ParserMiddleware;
// Set the stack of parsers to run
$parser->setStack([
'Waynestate\FormyParser\Parser'
]);
// Original String we want to parse
$string = '<p>Content before embed.</p><p>[form id="undergrad"]</p><p>Content after embed.</p>';
// Generate the html form
$html_form = $parser->parse($string);
// Display the form with content surrounding it
echo $html_form;
Tests
phpunit
Code Coverage
phpunit --coverage-html ./coverage
All versions of formy-parser with dependencies
PHP Build Version
Package Version
The package waynestate/formy-parser contains the following files
Loading the files please wait ....