Download the PHP package merophp/xml-view without Composer
On this page you can find all versions of the php package merophp/xml-view. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download merophp/xml-view
More information about merophp/xml-view
Files in merophp/xml-view
Download merophp/xml-view
More information about merophp/xml-view
Files in merophp/xml-view
Vendor merophp
Package xml-view
Short Description XML view plugin for merophp/view-engine
License MIT
Package xml-view
Short Description XML view plugin for merophp/view-engine
License MIT
Please rate this library. Is it a good library?
Informations about the package xml-view
Introduction
XML view plugin for merophp/view-engine.
Installation
Via composer:
composer require merophp/xml-view
Basic Usage
require_once 'vendor/autoload.php';
use Merophp\XmlViewPlugin\XmlView;
use Merophp\ViewEngine\ViewEngine;
use Merophp\ViewEngine\ViewPlugin\Collection\ViewPluginCollection;
use Merophp\ViewEngine\ViewPlugin\Provider\ViewPluginProvider;
use Merophp\ViewEngine\ViewPlugin\ViewPlugin;
$collection = new ViewPluginCollection();
$collection->add(
new ViewPlugin(XmlView::class),
]);
$provider = new ViewPluginProvider($collection);
$viewEngine = new ViewEngine($provider);
$view = $viewEngine->initializeView();
$view->xml('Hello world ');
echo $viewEngine->renderView($view);
All versions of xml-view with dependencies
PHP Build Version
Package Version
The package merophp/xml-view contains the following files
Loading the files please wait ....