PHPackages                             khalilouh/appcore - 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. khalilouh/appcore

ActiveProject

khalilouh/appcore
=================

Appcore - Framework PHP léger et modulaire.

v1.0.0(9mo ago)11PHP

Since Jul 23Pushed 9mo agoCompare

[ Source](https://github.com/brahim1205/App-Core)[ Packagist](https://packagist.org/packages/khalilouh/appcore)[ RSS](/packages/khalilouh-appcore/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

⚙️ Appcore
==========

[](#️-appcore)

**Appcore** est un micro-framework PHP léger, modulaire et extensible conçu pour t’aider à démarrer rapidement un projet PHP avec une architecture propre. Il intègre les concepts essentiels : routage, middlewares, entités, contrôleurs, validation, configuration, traduction et gestion des sessions.

---

🚀 Installation
--------------

[](#-installation)

Installe le package via [Composer](https://getcomposer.org/):

```
composer require khalilouh/appcore

 Arborescence du projet
 app/
├── config/              # Configuration globale
│   ├── bootstrap.php
│   ├── dependencies.php
│   ├── env.php
│   ├── helpers.php
│   ├── middlewares.php
│   └── service.yaml
├── core/                # Cœur du framework
│   ├── App.php
│   ├── Router.php
│   ├── Session.php
│   ├── Database.php
│   ├── Validator.php
│   ├── abstract/        # Classes abstraites : Controller, Entity, Repository
│   └── middlewares/     # Middlewares (ex: Auth)
├── translate/
│   └── fr/
│       └── error_fr.php

Utilisation rapide
1. Démarrage de l'application

// public/index.php
require __DIR__ . '/../vendor/autoload.php';

use khalilouh\Appcore\core\App;

$app = new App();
$app->run();

2. Définir une route

use khalilouh\Appcore\core\Router;

Router::get('/home', [HomeController::class, 'index']);

⚙️ Configuration
| Fichier            |Rôle
| ------------------ | --------------------------------------------------------- |
| `env.php`          | Variables d’environnement (base de données, locale, etc.) |
| `bootstrap.php`    | Initialisation globale de l’application                   |
| `dependencies.php` | Dépendances injectées dans les services                   |
| `middlewares.php`  | Liste des middlewares globaux à appliquer                 |
| `service.yaml`     | Déclaration des services à injecter automatiquement       |

👤 Auteur
Nom : brahim1205

Email : sadiocheri11@gmail.com
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance56

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

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

296d ago

### Community

Maintainers

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

### Embed Badge

![Health badge](/badges/khalilouh-appcore/health.svg)

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

PHPackages © 2026

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