An open API service indexing awesome lists of open source software.

https://github.com/krypt0nn/php-blueprints

PHP blueprints
https://github.com/krypt0nn/php-blueprints

php

Last synced: 12 months ago
JSON representation

PHP blueprints

Awesome Lists containing this project

README

          

🚀 php-blueprints

**php-blueprints** is a library that can make your life easier

This library provides functionality to create html/php blueprints and use them in your other files

## Installation

```
composer require krypt0nn/php-blueprints
```

## Example

File `input/blank.php`

```html


Example blueprint


@section(body)

```

File `input/index.php`

```html
@include(blank)

@section(body)

Hello, World!


Hello, World!


Hello, World!


Hello, World!


@end
```

Run this code

```php


Example blueprint



Hello, World!


Hello, World!


Hello, World!


Hello, World!