PHPackages                             solidbunch/starter-kit-theme - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. solidbunch/starter-kit-theme

ActiveWordpress-theme[Utility &amp; Helpers](/categories/utility)

solidbunch/starter-kit-theme
============================

WordPress starter theme with a modern development stack for launching projects faster and easily

3.0.1(3w ago)3037[10 issues](https://github.com/solidbunch/starter-kit-theme/issues)1MITPHPPHP &gt;=8.4

Since Feb 14Pushed 2w ago5 watchersCompare

[ Source](https://github.com/solidbunch/starter-kit-theme)[ Packagist](https://packagist.org/packages/solidbunch/starter-kit-theme)[ Docs](https://starter-kit.io)[ RSS](/packages/solidbunch-starter-kit-theme/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (9)Dependencies (22)Versions (14)Used By (1)

Starter Kit theme
=================

[](#starter-kit-theme)

[ ![GitHub](https://camo.githubusercontent.com/99b5b41166b1ba019a51eff1901e4b928b7a9f74b885748abe52978dac324330/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f736f6c696462756e63682f737461727465722d6b69742d7468656d65) ](LICENSE.md)[ ![GitHub release (latest by date)](https://camo.githubusercontent.com/8cdb9b8c517fa20c8ec4ea59778a187ccfb3a783ee48fb7fdc33d38a2829b120/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f736f6c696462756e63682f737461727465722d6b69742d7468656d653f636f6c6f723d626c756576696f6c6574) ](https://github.com/solidbunch/starter-kit-theme/releases)

**WordPress starter theme with a modern development stack for launching projects faster and easily.**

### [Website](https://starter-kit.io) | [Documentation](https://starter-kit.io/docs/overview/)

[](#website--documentation)

Custom FSE (Full Site Editing) block theme: PSR-4/PSR-12 PHP, Carbon Fields, self-contained Gutenberg blocks, SCSS + Bootstrap 5. Normally used as the application layer of [StarterKit Foundation](https://github.com/solidbunch/starter-kit-foundation) (Docker + IaC + CI/CD), but installs standalone too, see below.

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

[](#requirements)

- [PHP](https://secure.php.net/manual/en/install.php) 8.4
- [WordPress](https://wordpress.org/) 6.1
- [Composer](https://getcomposer.org/) 2.6
- [Node.js](http://nodejs.org/) 18

How to use
----------

[](#how-to-use)

### Installation

[](#installation)

1. Create a new theme directory in wp-content/themes:

```
mkdir you-theme-dir && cd you-theme-dir
```

2. Clone Starter Kit Theme:

```
git clone --depth=1 git@github.com:solidbunch/starter-kit-theme.git . && rm -rf .git
```

3. Setup php dependencies:

```
composer install
```

4. Setup node dependencies:

```
npm install
```

### Build commands

[](#build-commands)

- Build minified assets for production:

```
npm run prod
```

- Build assets with source maps for development:

```
npm run dev
```

- Start watcher with browser sync for development:

```
npm run watch
```

Structure
---------

[](#structure)

```
── config/                      # Base theme configuration
── src/                         # Main theme functionality files
   ├── Base/                    # Base theme functions
   │   └──Hooks.php             # Registering hooks
   │
   ├── Error/                   # Theme additional error handlers, may be enable in config
   ├── Exception/               # Theme additional exceptions
   │
   ├── Handlers/                # Theme hook handlers, main functionality
   │   ├──Blocks/               # Blocks functionality
   │   ├──CLI/                  # WP CLI comands
   │   ├──Meta/                 # Registering meta fields for post types, taxonomis, users etc. Runs by Base/Hooks
   │   ├──PostTypes/            # Registering custom post types with Taxonomies. Runs by Base/Hooks
   │   ├──Settings/             # Theme settings creation.
   │   │  └──ThemeSettings.php  # Main theme settings. Look in wp-admin Theme Settings
   │   ├──Optimization /        # Removes unnecessary things, performance optimization
   │   ├──Security /            # Provides some security options. Disable xmlrpc, etc
   │   ├──Back.php              # wp-admin functions
   │   ├──Front.php             # Basic Front handlers
   │   └──SetupTheme.php        # Setup theme handlers
   │
   ├── Helper/                  # Helpers classes
   │   ├──Assets.php            # Helper to work with assets processed by webpack
   │   ├──Config.php            # Helper functions for theme configuration
   │   ├──Logger.php            # Logging helper
   │   └──Utils.php             # Other useful functions
   │
   ├── Repository/              # Repositories, help to receive data from DB
   │                            # Classes by each post type
   │
   ├── AbstractSingleton.php    # Abstract Class for creating Singleton Classes
   ├── App.php                  # Application Singleton. Entrypoint
   └── dev.php                  # Some developers functions for debug, logging, etc

── blocks/                      # Gutenberg blocks, self-contained (own PHP, templates, styles, assets)
── assets/                      # Theme assets
   ├── build/                   # The compiled assets
   ├── fonts/
   ├── images/
   └── src /                    # Assets source files
       ├── js/
       └── styles/

── parts/                       # Custom template parts for the theme. Include things like headers, footers, and sidebars.
── patterns/                    # Reusable patterns.
── templates/                   # Templates, represent the overall document structure of the front-end.
                                  Templates, parts, patterns are made up of block markup.
                                  WordPress will automatically register files included in this folder.

── functions.php
── package.json
── composer.json
── screenshot.png
── style.css
── webpack.mix.js
── .editorconfig
── .gitignore

```

Blocks
------

[](#blocks)

### Overview

[](#overview)

Gutenberg Blocks in the `blocks/` folder are loaded with the autoloader, create a new block folder with the necessary files and it becomes automatically available, nothing to register by hand.

Each block is a fully self-contained, reusable unit: its own `Block.php`, templates, styles and assets, independent of the theme. Blocks come in two kinds, **static** (content saved into post HTML) and **dynamic** (PHP-rendered on every request from DB/meta data).

Use `_StarterBlock` as an example to create new blocks. Full guide: [blocks/CLAUDE.md](blocks/CLAUDE.md).

Documentation
-------------

[](#documentation)

- [CLAUDE.md](CLAUDE.md) - architecture, DI container, config system, conventions
- [blocks/CLAUDE.md](blocks/CLAUDE.md) - block authoring guide (static vs dynamic, folder shape, gotchas)
- [.claude/skills/](.claude/skills/) - guided workflows: new CPT, new block, FSE → classic conversion
- [StarterKit docs](https://starter-kit.io/docs/overview/) - Foundation-level setup, environments, CI/CD

Stay Connected
--------------

[](#stay-connected)

- Participate on [GitHub Discussions](https://github.com/solidbunch/starter-kit-theme/discussions)
- Connect via [LinkedIn](https://www.linkedin.com/company/solidbunch)

###  Health Score

56

—

FairBetter than 97% of packages

Maintenance89

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity86

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 51.3% 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 ~388 days

Recently: every ~520 days

Total

8

Last Release

22d ago

Major Versions

1.4.2 → 2.0.02025-06-22

2.0.1 → 3.0.12026-07-27

PHP version history (4 changes)1.2PHP &gt;=5.6.0

1.4PHP &gt;=7.2.0

2.0.0PHP &gt;=8.1

3.0.1PHP &gt;=8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/37e2f8fe572978c883080d42e2ee8995928f6b301243fd393da25f33adb3a306?d=identicon)[yuriipavlov](/maintainers/yuriipavlov)

---

Top Contributors

[![yuriipavlov](https://avatars.githubusercontent.com/u/25429417?v=4)](https://github.com/yuriipavlov "yuriipavlov (401 commits)")[![DavidHalkin](https://avatars.githubusercontent.com/u/29730632?v=4)](https://github.com/DavidHalkin "DavidHalkin (239 commits)")[![vvv3](https://avatars.githubusercontent.com/u/12746700?v=4)](https://github.com/vvv3 "vvv3 (84 commits)")[![zyv4yk](https://avatars.githubusercontent.com/u/16142581?v=4)](https://github.com/zyv4yk "zyv4yk (38 commits)")[![Alekamerlin](https://avatars.githubusercontent.com/u/54062392?v=4)](https://github.com/Alekamerlin "Alekamerlin (16 commits)")[![vsedzialo](https://avatars.githubusercontent.com/u/45825940?v=4)](https://github.com/vsedzialo "vsedzialo (3 commits)")

---

Tags

starter-kitwordpresswordpress-boilerplatewordpress-developmentwordpress-starter-themewordpress-themewordpress-theme-developmentwordpressenvironmentboilerplatethemestarterstarter-kitsolidbunch

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/solidbunch-starter-kit-theme/health.svg)

```
[![Health](https://phpackages.com/badges/solidbunch-starter-kit-theme/health.svg)](https://phpackages.com/packages/solidbunch-starter-kit-theme)
```

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k39.6k](/packages/matomo-matomo)[azuracast/azuracast

The AzuraCast self-hosted web radio station management suite.

4.0k27.9k](/packages/azuracast-azuracast)[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k17.3k100](/packages/elgg-elgg)[infinum/eightshift-libs

WordPress libs developed by Eightshift team to use in modern WordPress.

63127.2k3](/packages/infinum-eightshift-libs)

PHPackages © 2026

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