PHPackages                             bluzphp/skeleton - 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. bluzphp/skeleton

ActiveLibrary[Framework](/categories/framework)

bluzphp/skeleton
================

Skeleton application for Bluz, a lightweight PHP framework

7.10.1(4y ago)431.7k25[14 issues](https://github.com/bluzphp/skeleton/issues)MITPHPPHP &gt;=7.3

Since Mar 13Pushed 4y ago18 watchersCompare

[ Source](https://github.com/bluzphp/skeleton)[ Packagist](https://packagist.org/packages/bluzphp/skeleton)[ RSS](/packages/bluzphp-skeleton/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (18)Versions (52)Used By (0)

Bluz, a lightweight PHP Framework
=================================

[](#bluz-a-lightweight-php-framework)

Easy to setup, easy to use. Skeleton application

[![Gitter](https://camo.githubusercontent.com/abe08b740a4156153736f791393ec4da6619c4be73212e75769f52edacc0e2b5/68747470733a2f2f6261646765732e6769747465722e696d2f4a6f696e253230436861742e737667)](https://gitter.im/bluzphp/main)

Achievements
------------

[](#achievements)

[![PHP >= 7.3+](https://camo.githubusercontent.com/850c7d3b7b48670b010cbd97f9666c068523aecf3ffa08ec3559be89c8b06e1e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f626c757a7068702f736b656c65746f6e2e7376673f7374796c653d666c6174)](https://php.net/)

[![Latest Stable Version](https://camo.githubusercontent.com/afc345db8a3516c5a2efd5369805e8474a1ca6ea5c68dc5ba9171ec68d4b9ac6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f626c757a7068702f736b656c65746f6e2e7376673f6c6162656c3d76657273696f6e267374796c653d666c6174)](https://packagist.org/packages/bluzphp/skeleton)

[![Build Status](https://camo.githubusercontent.com/26b698c9cc0209cb6a2c29c6791e6f2664e54126eb59dd920184edf4f9db7f72/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f626c757a7068702f736b656c65746f6e2f6d61737465722e7376673f7374796c653d666c6174)](https://travis-ci.com/bluzphp/skeleton)

[![Scrutinizer Code Quality](https://camo.githubusercontent.com/d69c475cde051b289817176ac602327c19f6dbfe2e69f0919abdfb6a19c60430/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f626c757a7068702f736b656c65746f6e2e7376673f7374796c653d666c6174)](https://scrutinizer-ci.com/g/bluzphp/skeleton/)

[![Coverage Status](https://camo.githubusercontent.com/261fce7f37ac1e4820052d8a1b8025bd5b2909e0771eaf55a9a610a69e569fd5/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f626c757a7068702f736b656c65746f6e2f6d61737465722e7376673f7374796c653d666c6174)](https://coveralls.io/r/bluzphp/skeleton?branch=master)

[![Total Downloads](https://camo.githubusercontent.com/e1f3246f1c299570e3f741fb62fb6cde0ff2946192849e2f4c537a895bd1137e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f626c757a7068702f736b656c65746f6e2e7376673f7374796c653d666c6174)](https://packagist.org/packages/bluzphp/skeleton)

[![License](https://camo.githubusercontent.com/9b25e8f6bb248e173028fea12c65fc87a5d1dfcd6ef76b95ca1110fb71d1efc2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f626c757a7068702f736b656c65746f6e2e7376673f7374796c653d666c6174)](https://packagist.org/packages/bluzphp/skeleton)

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

[](#installation)

Bluz works with PHP 7.0 or later and MySQL 5.4 or later (please check [requirements](https://github.com/bluzphp/skeleton/wiki/Requirements))

### I.a. From composer

[](#ia-from-composer)

Download `composer.phar`, it's easy:

```
curl -s https://getcomposer.org/installer | php
```

Run `create-project` command (replace `%path%` ;):

```
php composer.phar create-project bluzphp/skeleton %path% --stability=dev
```

### I.b. From repository

[](#ib-from-repository)

Get Bluz skeleton source files from GitHub repository:

```
git clone git://github.com/bluzphp/skeleton.git %path%
```

Download `composer.phar` to the project folder:

```
cd %path%
curl -s https://getcomposer.org/installer | php
```

Install composer dependencies with the following command:

```
php composer.phar install
```

### I.c. With PhpStorm

[](#ic-with-phpstorm)

For install you need any web-server (for Windows) and PhpStorm. dows) и PhpStorm.

Create project in PhpStorm:

1. File -&gt; New project;
2. Set the project name and location;
3. In a Project type field choose Composer project;
4. Check that radiobutton is set opposite "Download composer.phar from getcomposer.org", type in a search field "bluzphp/skeleton", select this package in Available packages window and click OK.
5. After that file composer.phar and all dependencies will be loaded.

### II. Configuration

[](#ii-configuration)

Edit your configuration's files `/path/to/application/configs/dev/*.php` (configuration for development environment).

> I think you need to change only `db.php` for first run

### III. Setup database

[](#iii-setup-database)

To run the migrations, execute the command:

```
/path/to/vendor/bin/bluzman db:migrate
```

To fill database with data example, execute the command:

```
/path/to/vendor/bin/bluzman db:seed:run
```

### IV.a. Run built-in web-server

[](#iva-run-built-in-web-server)

You can run internal PHP web-server with simple console tool:

```
/path/to/vendor/bin/bluzman server:start --host[="..."] --port[="..."]
```

### IV.b. Use Apache

[](#ivb-use-apache)

Or create symlink to Apache document root (required FollowSymlinks option):

```
# for Linux
ln -s /path/to/public /path/to/web
```

```
# for Windows
mklink /D /path/to/web path/to/public
```

Usage
-----

[](#usage)

You can create models, controllers and views with [Bluzman](https://github.com/bluzphp/bluzman) console tool, or following *old school style*:

### Model

[](#model)

Model consists from two classes `Table` and `Row`:

```

```

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

[](#documentation)

- [Framework wiki](https://github.com/bluzphp/framework/wiki)
- [Skeleton wiki](https://github.com/bluzphp/skeleton/wiki)
- [Bluzman docs](https://github.com/bluzphp/bluzman)

Demo
----

[](#demo)

- [Bluz Demo](http://bluz.demo.php.nixdev.co)

License
-------

[](#license)

The project is developed by [NIX](http://nixsolutions.com) PHP team and distributed under [MIT LICENSE](https://raw.github.com/bluzphp/skeleton/master/LICENSE.md)

[NIX](http://nixsolutions.com) has OEM License of [Redactor](http://imperavi.com/redactor/). Full text of Redactor License you can read at

Vendors
-------

[](#vendors)

- [jQuery](https://github.com/jquery/jquery/)
- [RequireJS](http://requirejs.org/)
- [Twitter Bootstrap](http://getbootstrap.com/)

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community28

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 58.2% 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 ~62 days

Recently: every ~248 days

Total

50

Last Release

1809d ago

Major Versions

0.9.3 → 1.0.02015-05-20

1.0.1 → 2.0.22016-02-12

2.0.2 → 7.0.02016-06-15

PHP version history (5 changes)0.1.0PHP &gt;=5.4

1.0.0PHP &gt;=5.6

7.0.3PHP &gt;=7.0

7.7.0PHP &gt;=7.1

7.10PHP &gt;=7.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2734017?v=4)[Bluz Framework](/maintainers/bluzphp)[@bluzphp](https://github.com/bluzphp)

![](https://avatars.githubusercontent.com/u/142057?v=4)[Anton Shevchuk](/maintainers/AntonShevchuk)[@AntonShevchuk](https://github.com/AntonShevchuk)

---

Top Contributors

[![AntonShevchuk](https://avatars.githubusercontent.com/u/142057?v=4)](https://github.com/AntonShevchuk "AntonShevchuk (235 commits)")[![yuklia](https://avatars.githubusercontent.com/u/4895059?v=4)](https://github.com/yuklia "yuklia (69 commits)")[![bashmach](https://avatars.githubusercontent.com/u/333910?v=4)](https://github.com/bashmach "bashmach (29 commits)")[![kvasenko](https://avatars.githubusercontent.com/u/9797567?v=4)](https://github.com/kvasenko "kvasenko (19 commits)")[![taras-seryogin](https://avatars.githubusercontent.com/u/6518446?v=4)](https://github.com/taras-seryogin "taras-seryogin (10 commits)")[![PetrMarchenko](https://avatars.githubusercontent.com/u/5126771?v=4)](https://github.com/PetrMarchenko "PetrMarchenko (10 commits)")[![l2avenholm](https://avatars.githubusercontent.com/u/5820668?v=4)](https://github.com/l2avenholm "l2avenholm (9 commits)")[![Baziak](https://avatars.githubusercontent.com/u/241709?v=4)](https://github.com/Baziak "Baziak (5 commits)")[![hemiknk](https://avatars.githubusercontent.com/u/10330019?v=4)](https://github.com/hemiknk "hemiknk (5 commits)")[![loginwashere](https://avatars.githubusercontent.com/u/539001?v=4)](https://github.com/loginwashere "loginwashere (4 commits)")[![edamov](https://avatars.githubusercontent.com/u/2741880?v=4)](https://github.com/edamov "edamov (2 commits)")[![assajak](https://avatars.githubusercontent.com/u/6215298?v=4)](https://github.com/assajak "assajak (1 commits)")[![Dyachenko](https://avatars.githubusercontent.com/u/2959636?v=4)](https://github.com/Dyachenko "Dyachenko (1 commits)")[![makarova](https://avatars.githubusercontent.com/u/3932831?v=4)](https://github.com/makarova "makarova (1 commits)")[![Mak-Di](https://avatars.githubusercontent.com/u/2670112?v=4)](https://github.com/Mak-Di "Mak-Di (1 commits)")[![oleksii-novikov](https://avatars.githubusercontent.com/u/812676?v=4)](https://github.com/oleksii-novikov "oleksii-novikov (1 commits)")[![pulavska](https://avatars.githubusercontent.com/u/8693877?v=4)](https://github.com/pulavska "pulavska (1 commits)")[![pzhv](https://avatars.githubusercontent.com/u/1470590?v=4)](https://github.com/pzhv "pzhv (1 commits)")

---

Tags

frameworkphp

###  Code Quality

TestsCodeception

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/bluzphp-skeleton/health.svg)

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

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)[getkirby/cms

The Kirby core

1.5k584.8k472](/packages/getkirby-cms)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.6M574](/packages/shopware-core)[oro/platform

Business Application Platform (BAP)

645143.5k115](/packages/oro-platform)[concrete5/core

Concrete core subtree split

20166.1k52](/packages/concrete5-core)

PHPackages © 2026

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