├── .github └── FUNDING.yml ├── .travis.yml ├── LICENSE ├── README.md ├── bootstrap.php ├── codecov.yml ├── composer.json ├── phpunit.xml.dist ├── src └── template.php └── tests ├── mould ├── body.tpl ├── footer.tpl └── header.tpl └── php_templateTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/bootstrap.php -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/src/template.php -------------------------------------------------------------------------------- /tests/mould/body.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/tests/mould/body.tpl -------------------------------------------------------------------------------- /tests/mould/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/tests/mould/footer.tpl -------------------------------------------------------------------------------- /tests/mould/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/tests/mould/header.tpl -------------------------------------------------------------------------------- /tests/php_templateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yakeing/php_template/HEAD/tests/php_templateTest.php --------------------------------------------------------------------------------