PHPackages                             glamorous/boiler - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. glamorous/boiler

ActiveLibrary[Framework](/categories/framework)

glamorous/boiler
================

Scripts runner to start a web application from scratch

0.2.0(6y ago)061MITPHPPHP ^7.3CI failing

Since May 14Pushed 6y ago1 watchersCompare

[ Source](https://github.com/glamorous/boiler)[ Packagist](https://packagist.org/packages/glamorous/boiler)[ RSS](/packages/glamorous-boiler/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (18)Versions (8)Used By (0)

Boiler
======

[](#boiler)

[![Latest Stable Version](https://camo.githubusercontent.com/36b23a34318b95cb1c134d6e5bcab850be09e2fa8923a3ada4635783030fd6b3/68747470733a2f2f706f7365722e707567782e6f72672f676c616d6f726f75732f626f696c65722f762f737461626c65)](https://packagist.org/packages/glamorous/boiler)[![License](https://camo.githubusercontent.com/d9e43124b1ca15a255e036a01727a60c35ec295f835a67b38923a74d14339745/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f676c616d6f726f75732f626f696c65722e737667)](https://github.com/glamorous/boiler)![PHP Version](https://camo.githubusercontent.com/2edd5d49851da41b4e8b5da8230c331400d9d76a182f0727c0234f5ac7fda242/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f676c616d6f726f75732f626f696c65722e737667)[![Build Status](https://camo.githubusercontent.com/81323180f162b663f418170a46404b282d45bedd37f64d4ba7f87a1f14bf58fe/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f676c616d6f726f75732f626f696c65722e737667)](https://travis-ci.org/glamorous/boiler)[![Codecov](https://camo.githubusercontent.com/97e1a2f66689162695642a9b9bfabb5e2fa2a92c24ad5f142c60a069d14186da/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f676c616d6f726f75732f626f696c65722e737667)](https://codecov.io/gh/glamorous/boiler)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/6c9a46573db708816445df7decfa254734dac0b33b119c60c7d7bc4c306e9c95/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f676c616d6f726f75732f626f696c65722f6261646765732f7175616c6974792d73636f72652e706e67)](https://scrutinizer-ci.com/g/glamorous/boiler/)[![Total Downloads](https://camo.githubusercontent.com/e0f6dc58c8d1e87be24dc4bbc871aa62ef96eac7ba1ed934ca48c3c46589286f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f676c616d6f726f75732f626f696c65722e737667)](https://packagist.org/packages/glamorous/boiler)[![GitHub issues](https://camo.githubusercontent.com/38a509f82719a35f3bb3633aba9c28c1cd79b4efc96a2199a50d44fc1c0e5ec5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f676c616d6f726f75732f626f696c65722e737667)](https://github.com/glamorous/boiler/issues)

Boiler is a framework to help you create (web)projects instead of using a skeleton project. The reason why this project is built is to win time by not updating your dependencies in your skeleton project.

Installation
------------

[](#installation)

`composer global require glamorous/boiler`

Make sure the `~/.composer/vendor/bin` directory is in your system's "PATH".

How to use it?
--------------

[](#how-to-use-it)

### Create a folder for your (custom) boiler templates

[](#create-a-folder-for-your-custom-boiler-templates)

You can add multiple directories to allow boiler to search templates. To add a directory you only need to run:

```
boiler setup my/path

```

### Create a boiler templates

[](#create-a-boiler-templates)

#### Single boiler-file

[](#single-boiler-file)

A boiler template is a simple yaml file with a couple of steps to execute, so the result is a project.

```
name: Default project

steps:
  - create_readme
  - git

create_readme:
  name: Readme
  script:
    - touch README.md
    - echo '{#PROJECT_NAME#}
           ==============

           This is the default README.md created by boiler.' >README.md

git:
    name: Initialized Git and create first commit
    script:
        - git init
        - git commit -m 'Initial commit'

```

In the above example:

- added a README.md file
- initialize git &amp; created first commit

#### Boiler directory

[](#boiler-directory)

Just like a single boiler yaml-file, you can create a directory with the same name like the yaml-file. All files that are included in this directory will be copied to the new directory. The only file that isn't copied is the yaml-template-file.

### Create a project with your created template

[](#create-a-project-with-your-created-template)

Creating a project based on your `default.yml` template is as simple as:

```
boiler create default

```

The boiler script will create a directory `default` and run the scripts from your template to create your project.

#### Extra options

[](#extra-options)

`--dir`

Define the name of the directory yourself

`--name`

Define the name of the project (can be used in your template as `{#PROJECT_NAME#}`)

Include templates
-----------------

[](#include-templates)

It's possible to include other created templates with extra functions to re-use. Instead of duplicating specific functions for every type of project, you can just include it and call it;

`functions.yml` in a directory where `boiler setup` was run:

```
create_readme:
  name: Readme
  script:
    - touch README.md
    - echo '{#PROJECT_NAME#}
           ==============

           This is the default README.md created by boiler.' >README.md

git:
    name: Initialized Git and create first commit
    script:
        - git init
        - git commit -m 'Initial commit'

```

`default.yml` in a directory where `boiler setup` was run:

```
name: Default project

include:
  - functions

steps:
  - create_readme
  - git

```

Commands
--------

[](#commands)

`boiler create my-template`: Create an application based on the "my-template".

`boiler setup my/path`: Set up a directory as a template directory (path is optional, current directory will be taken).

`boiler remove my/path`: Remove a directory from the template directories (path is optional, current directory will be taken).

`boiler paths`: Show all included template directories.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details. To see a list of the contributors: [all contributors](../../contributors).

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~34 days

Recently: every ~50 days

Total

7

Last Release

2348d ago

PHP version history (2 changes)0.0.1PHP ^7.1

0.2.0PHP ^7.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/0cab559877ffe0e684f9f6a73d6b6f51dfcdec51ae985bdde62cc05d31e76ab4?d=identicon)[glamorous](/maintainers/glamorous)

---

Top Contributors

[![glamorous](https://avatars.githubusercontent.com/u/62723?v=4)](https://github.com/glamorous "glamorous (26 commits)")

---

Tags

frameworkwebinstaller

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/glamorous-boiler/health.svg)

```
[![Health](https://phpackages.com/badges/glamorous-boiler/health.svg)](https://phpackages.com/packages/glamorous-boiler)
```

###  Alternatives

[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19462.3M1.3k](/packages/drupal-core)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[silverstripe/framework

The SilverStripe framework

7213.5M2.5k](/packages/silverstripe-framework)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
