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

ActiveLibrary[Framework](/categories/framework)

tobento/app-skeleton
====================

PHP application skeleton.

2.0.1(7mo ago)012MITPHPPHP &gt;=8.4

Since Feb 12Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/tobento-ch/app-skeleton)[ Packagist](https://packagist.org/packages/tobento/app-skeleton)[ Docs](https://www.tobento.ch)[ RSS](/packages/tobento-app-skeleton/feed)WikiDiscussions 2.x Synced 1mo ago

READMEChangelog (6)Dependencies (4)Versions (8)Used By (0)

App Skeleton
============

[](#app-skeleton)

Use this app skeleton to quickly setup and start working on a new [**App**](https://github.com/tobento-ch/app) project.

Table of Contents
-----------------

[](#table-of-contents)

- [Getting Started](#getting-started)
    - [Requirements](#requirements)
- [Documentation](#documentation)
    - [App](#app)
        - [Directory Structure](#directory-structure)
        - [Config](#config)
        - [Src](#src)
        - [Register Boots](#register-boots)
    - [App Testing](#app-testing)
    - [App Bundles](#app-bundles)
- [Credits](#credits)

---

Getting Started
===============

[](#getting-started)

Add the latest version of the app skeleton running this command.

```
composer create-project tobento/app-skeleton [my-app-name]

```

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

[](#requirements)

- PHP 8.4 or greater

Documentation
=============

[](#documentation)

App
---

[](#app)

Check out the [**App**](https://github.com/tobento-ch/app) to learn more about the app in general.

### Directory Structure

[](#directory-structure)

The directories are set on the app.php file. You can freely change them as you prefer.

```
app/app.php

```

Check out the [**App Directories**](https://github.com/tobento-ch/app#app-directories) to learn more about directories in general.

### Config

[](#config)

Some [App Bundles](#app-bundles) have config files, which will be located as default at:

```
app/config/

```

### Src

[](#src)

The `app/src/` directory is the place to put your classes which is namespaced under `App`.

### Register Boots

[](#register-boots)

You may register boots on two places.

**On the app.php config file**

```
app/config/app.php

```

```
return [

    /*
    |--------------------------------------------------------------------------
    | Application Boots
    |--------------------------------------------------------------------------
    |
    | The application boots.
    |
    */

    'boots' => [
        \Tobento\App\Boot\ErrorHandling::class,

        // add more boots.
        AnyBoot::class,
    ],

];
```

**On the app.php file**

```
app/app.php

```

```
// Boot the app -----------------------------------------------------------
$app->boot(\Tobento\App\Boot\App::class);

// Add more boots here
$app->boot(AnyBoot::class);
```

App Testing
-----------

[](#app-testing)

**Unit Tests**

Unit tests are designed to test small, isolated portions of code, often focusing on a single method.

See demo test file: `tests/Unit/DemoTest.php`

**Feature Tests**

Feature tests test the behavior of a complete application. They may make HTTP requests and test that the response is as expected.

See demo test file: `tests/Feature/DemoTest.php`

Furthermore, check out the [App Testing](https://github.com/tobento-ch/app-testing) bundle for more information.

App Bundles
-----------

[](#app-bundles)

[List Of Available App Bundles](https://github.com/tobento-ch?tab=repositories&q=app)

Credits
=======

[](#credits)

- [Tobias Strub](https://www.tobento.ch)
- [All Contributors](../../contributors)

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance64

Regular maintenance activity

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity71

Established project with proven stability

 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 ~190 days

Recently: every ~162 days

Total

8

Last Release

216d ago

Major Versions

1.x-dev → 2.02025-10-03

PHP version history (2 changes)1.0.0PHP &gt;=8.0

2.0PHP &gt;=8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/055d6a1b5c2384bb179c75ab0b55914231d898fdc4dffeb30770f81200e52206?d=identicon)[TOBENTOch](/maintainers/TOBENTOch)

---

Top Contributors

[![tobento-ch](https://avatars.githubusercontent.com/u/16684832?v=4)](https://github.com/tobento-ch "tobento-ch (19 commits)")

---

Tags

phppackageapplicationSkeletontobento

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[fuel/fuel

FuelPHP is a simple, flexible, community driven PHP 5.4+ framework, based on the best ideas of other frameworks, with a fresh start!

1.5k42.3k](/packages/fuel-fuel)

PHPackages © 2026

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