PHPackages                             narrowspark/skeleton-generators - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. narrowspark/skeleton-generators

AbandonedArchivedAutomatic-skeleton[HTTP &amp; Networking](/categories/http)

narrowspark/skeleton-generators
===============================

The narrowspark skeleton generators.

0.5.1(6y ago)31112[2 PRs](https://github.com/narrowspark/skeleton-generators/pulls)MITPHPPHP ^7.3

Since Aug 12Pushed 3y ago1 watchersCompare

[ Source](https://github.com/narrowspark/skeleton-generators)[ Packagist](https://packagist.org/packages/narrowspark/skeleton-generators)[ Docs](https://github.com/narrowspark/skeleton-generators)[ RSS](/packages/narrowspark-skeleton-generators/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (7)Versions (15)Used By (0)

Narrowspark Skeleton Generators
===============================

[](#narrowspark-skeleton-generators)

 [![](https://camo.githubusercontent.com/1a58df2f2f8fb1cb68a3e4fbe5814eaa26548128b0aeae07568a1bb9df6c9244/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6172726f77737061726b2f736b656c65746f6e2d67656e657261746f72732e7376673f7374796c653d666c61742d737175617265)](https://github.com/narrowspark/skeleton-generators/releases) [![](https://camo.githubusercontent.com/a4fe7000eff0deee11fb18648b92bea8bc241cb65e3842d640c073f5c459d4d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545372e332e302d3838393242462e7376673f7374796c653d666c61742d737175617265)](https://php.net/) [![](https://camo.githubusercontent.com/63396f007a93e7162f606f02928afddf7e1523f900aca70aeeb283652d342d02/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f6e6172726f77737061726b2f736b656c65746f6e2d67656e657261746f72732f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://codecov.io/gh/narrowspark/skeleton-generators) [![](https://camo.githubusercontent.com/e43e27acff50e6ee0656e0a112d484ff55f844ff10e79b3d17641033ea51d18f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7374796c652d6c6576656c253230372d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265266c6162656c3d7068707374616e)](#) [![](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](http://opensource.org/licenses/MIT)

Branch Status
-------------

[](#branch-status)

[![Travis branch](https://camo.githubusercontent.com/651c8bd6c1e53ff8b79905859d40d4da5059cb3a44c440286d95ac10ad8767d1/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6e6172726f77737061726b2f736b656c65746f6e2d67656e657261746f72732f6d61737465722e7376673f6c6f6e6743616368653d66616c7365267374796c653d666f722d7468652d6261646765)](https://travis-ci.org/narrowspark/skeleton-generators)[![Appveyor branch](https://camo.githubusercontent.com/9cd1e8360c371dd450af39485b36b0ad0bfcf84a92a8bd5c349ff257260b511b/68747470733a2f2f696d672e736869656c64732e696f2f6170707665796f722f63692f6e6172726f77737061726b2f736b656c65746f6e2d67656e657261746f72732f6d61737465722e7376673f6c6f6e6743616368653d66616c7365267374796c653d666f722d7468652d6261646765)](https://ci.appveyor.com/project/narrowspark/skeleton-generators/branch/master)

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

[](#installation)

> **Note:** this package can be only used with [automatic](https://github.com/narrowspark/automatic).

Use [Composer](https://getcomposer.org/) to install this package:

```
composer require narrowspark/skeleton-generators
```

Default Directories
-------------------

[](#default-directories)

Narrowspark automatically ships with a default directory structure. You can easily override this directory structure to create your own.

The default directory structure is.

```
your-project/
    ├─ app/
    │  ├─ Console/
    │  ├─  └─ Kernel.php
    │  ├─ Provider/
    │  └─ ...
    ├─ config/
    │  └─ ...
    ├─ public/
    │  └─ index.php
    ├─ resources/
    │  └─ ...
    ├─ routes/
    │  ├─ api.php
    │  └─ ...
    ├─ storage/
    │  ├─ app/
    │  ├─ framework/
    │  ├─ logs/
    │  └─ ...
    ├─ tests/
    │  ├─ AbstractTestCase.php
    │  ├─ bootstrap.php
    │  └─ ...
    ├─ cerebro
    └─ vendor/
```

### Override the Directories

[](#override-the-directories)

You can change the default directories by overriding the composer extra section of your app:

```
{
  "extra": {
    "app-dir": "app",
    "config-dir": "config",
    "database-dir": "database",
    "public-dir": "public",
    "resources-dir": "resources",
    "routes-dir": "routes",
    "storage-dir": "storage",
    "tests-dir": "tests"
  }
}
```

The `root-dir` key may be only used if your project is in a sub folder of your main project.

Generators
----------

[](#generators)

#### - Console

[](#--console)

The `Console Generator` is a micro-framework that provides an elegant starting point for your console app.

#### - Http

[](#--http)

The `Http Generator` is a micro-framework that provides an elegant starting point for your next web app.

Testing
-------

[](#testing)

You need to run:

```
$ php vendor/bin/phpunit
```

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

[](#contributing)

If you would like to help take a look at the [list of issues](https://github.com/narrowspark/testing-helper/issues) and check our [Contributing](CONTRIBUTING.md) guild.

> **Note:** please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Credits
-------

[](#credits)

- [Daniel Bannert](https://github.com/prisis)
- [All Contributors](https://github.com/narrowspark/automatic/graphs/contributors)

License
-------

[](#license)

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

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.7% 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 ~42 days

Recently: every ~94 days

Total

12

Last Release

2363d ago

PHP version history (2 changes)v0.1.0PHP ^7.2

0.5.0PHP ^7.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/ca62e19a98f43cce88fa6733762bebbe26f4e7ee0b3d8defdadfd0b7082f77a0?d=identicon)[dani33](/maintainers/dani33)

---

Top Contributors

[![prisis](https://avatars.githubusercontent.com/u/2716058?v=4)](https://github.com/prisis "prisis (38 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (3 commits)")

---

Tags

httpconsolegeneratorSkeletonautomaticnarrowsparkviseriofull-framework

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[guzzlehttp/psr7

PSR-7 message implementation that also provides common utility methods

8.0k1.0B3.2k](/packages/guzzlehttp-psr7)[psr/http-message

Common interface for HTTP messages

7.1k1.0B5.5k](/packages/psr-http-message)[league/uri-interfaces

Common tools for parsing and resolving RFC3987/RFC3986 URI

538204.9M23](/packages/league-uri-interfaces)[aplus/app

Aplus Framework App Project

5951.6M1](/packages/aplus-app)

PHPackages © 2026

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