Skip to content

A simple PHP interface for creating and modifying HTML elements

Notifications You must be signed in to change notification settings

cam5/domoarigato

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Domoarigato

Build Status Coverage Status

A simple PHP interface for creating and modifying HTML elements and their attributes.

<?php

namespace You\YourApp;

use Cam5\Domoarigato\Domo;

$div = Domo::createElement('div');

$div->setId('foo')
    ->addClass('bar')
    ->setText('baz');

echo $div->render(); // <div id="foo" class="bar">baz</div>

About

A simple PHP interface for creating and modifying HTML elements

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages