2017 © Pedro Peláez
 

library html

Object oriented HTML generation.

image

rocketphp/html

Object oriented HTML generation.

  • Sunday, October 11, 2015
  • by rocketphp
  • Repository
  • 0 Watchers
  • 0 Stars
  • 12 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

html

Build Status Coverage Status Dependency Status, (*1)

Latest Stable Version License, (*2)

This is a forkable respository, (*3)

RocketPHP\HTML is a component for object oriented HTML generation., (*4)

To construct HTML – start with an instance of HTML and add tags by accessing the tag’s method on that object., (*5)

use RocketPHP\HTML\HTML;

$h = new HTML();
$div = $h->div('id="foo" class="bar"');
$div->p('Hello, World!');
echo $h;
<div id="foo" class="bar">
  <p>
    Hello, World!
  </p>
</div>
  • File issues at https://github.com/rocketphp/html/issues
  • Documentation is at http://rocketphp.io/html

The Versions

11/10 2015

dev-master

9999999-dev https://github.com/rocketphp/html

Object oriented HTML generation.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

html rocketphp

11/10 2015

1.0.x-dev

1.0.9999999.9999999-dev https://github.com/rocketphp/html

Object oriented HTML generation.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

html rocketphp

11/10 2015

dev-develop

dev-develop https://github.com/rocketphp/html

Object oriented HTML generation.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

html rocketphp

01/09 2015

1.0.0

1.0.0.0 https://github.com/rocketphp/html

Object oriented HTML generation.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

html rocketphp