PHPackages                             gladeye/blueprint - 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. gladeye/blueprint

AbandonedArchivedProject[Framework](/categories/framework)

gladeye/blueprint
=================

WordPress project starter kit, based on the excellent Bedrock boilerplate and Sage theme

1.0.0-beta.1(8y ago)017MITJavaScriptPHP &gt;=5.6.24

Since Jul 7Pushed 8y agoCompare

[ Source](https://github.com/gladeye/blueprint)[ Packagist](https://packagist.org/packages/gladeye/blueprint)[ RSS](/packages/gladeye-blueprint/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (7)Versions (2)Used By (0)

Blueprint
=========

[](#blueprint)

WordPress project starter kit, based on the excellent [Bedrock](https://roots.io/bedrock/) boilerplate and [Sage](https://roots.io/sage/) theme

**🚨 Currently in real battle testing...**

Features
--------

[](#features)

- Better Wordpress folder structure
- Manage Wordpress plugins and dependency via [Composer](https://getcomposer.org/)
- Easy WordPress configuration with environment specific files
- Environment variables with [Dotenv](https://github.com/vlucas/phpdotenv)
- Autoloader for mu-plugins (use regular plugins as mu-plugins)
- Sass and ES6 Javascript for front-end development with HMR enabled
- [Webpack](https://webpack.js.org/) for compiling assets
- [Laravel's Blade](https://laravel.com/docs/5.3/blade) as a templating engine

Requirements
------------

[](#requirements)

- [WordPress](https://wordpress.org/) &gt;= 4.8
- [PHP](http://php.net/manual/en/install.php) &gt;= 5.6.4
- [Composer](https://getcomposer.org/download/)
- [WP-CLI](http://wp-cli.org/)
- [Node.js](http://nodejs.org/) &gt;= 7
- [Yarn](https://yarnpkg.com/en/docs/install)

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

[](#installation)

1. Create a new project in a new folder for your project:

    ```
        composer create-project "gladeye/blueprint:1.0.0-beta.1" your-project-folder-name

    ```
2. Update environment variables in `.env` file:

    - `DB_NAME` - Database name
    - `DB_USER` - Database user
    - `DB_PASSWORD` - Database password
    - `DB_HOST` - Database host
    - `WP_ENV` - Set to environment (`development`, `staging`, `production`)
    - `WP_HOME` - Full URL to WordPress home ()
    - `WP_SITEURL` - Full URL to WordPress including subdirectory ()
    - `AUTH_KEY`, `SECURE_AUTH_KEY`, `LOGGED_IN_KEY`, `NONCE_KEY`, `AUTH_SALT`, `SECURE_AUTH_SALT`, `LOGGED_IN_SALT`, `NONCE_SALT`

    If you want to automatically generate the security keys (assuming you have [wp-cli](http://wp-cli.org/) installed locally) you can use the very handy [wp-cli-dotenv-command](https://github.com/aaemnnosttv/wp-cli-dotenv-command):

    ```
        wp package install aaemnnosttv/wp-cli-dotenv-command

        wp dotenv salts regenerate

    ```

    Or, you can cut and paste from the [Roots WordPress Salt Generator](https://roots.io/salts.html).
3. Run `yarn start` and build something awesome!

Theme structure
---------------

[](#theme-structure)

```
public/content/themes/sage/     # → Root of your Sage based theme
├── app                         # → Theme PHP
│   ├── admin.php               # → Theme customizer setup
│   ├── filters.php             # → Theme filters
│   ├── helpers.php             # → Helper functions
│   ├── post-types.php          # → Custom Post types register list
│   ├── setup.php               # → Theme setup
│   ├── taxonomies.php          # → Custom Taxonomies register list
│   ├── post-types/             # → Custom Post Types definitions
│   └── taxonomies/             # → Custom Taxonomies definitions
└── resources                   # → Theme assets and templates
    ├── assets                  # → Front-end assets
    │   ├── options.json        # → Settings for compiled assets
    │   ├── dist/               # → Built theme assets (never edit)
    │   ├── fonts/              # → Theme fonts
    │   ├── images/             # → Theme images
    │   ├── media/              # → Theme others media (e.g svg, video)
    │   ├── scripts/            # → Theme scripts
    │   └── styles/             # → Theme styles
    ├── functions.php           # → Theme bootstrap
    ├── index.php               # → Never manually edit
    ├── screenshot.png          # → Theme screenshot for WP admin
    ├── style.css               # → Theme meta information
    └── views                   # → Theme templates
        ├── layouts/            # → Base layouts
        └── partials/           # → Partial templates
```

Theme setup
-----------

[](#theme-setup)

Edit `app/setup.php` to enable or disable theme features, setup navigation menus, post thumbnail sizes, and sidebars.

Additional docs
---------------

[](#additional-docs)

- [Scripts](public/content/themes/sage/resources/assets/scripts)

License
-------

[](#license)

MIT © [Gladeye](https://gladeye.com)

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity44

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

Unknown

Total

1

Last Release

3233d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4aeb2dcdd177bdb306292e1a05905f9b01fa9452340cee8037a46c2f660042e6?d=identicon)[kenvunz](/maintainers/kenvunz)

---

Top Contributors

[![ken-gladeye](https://avatars.githubusercontent.com/u/65751307?v=4)](https://github.com/ken-gladeye "ken-gladeye (51 commits)")

---

Tags

bedrockcomposerwordpresswordpress-boilerplate

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/gladeye-blueprint/health.svg)

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

###  Alternatives

[ronilaukkarinen/dudestack

A modern WordPress stack

1131.2k](/packages/ronilaukkarinen-dudestack)

PHPackages © 2026

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