PHPackages                             dbeurive/slim-controller - 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. dbeurive/slim-controller

ActiveLibrary[Framework](/categories/framework)

dbeurive/slim-controller
========================

This package contains a controller manager for the SLIM framework

1.0.3(9y ago)013Creative Commons Attribution 4.0 International Public LicensePHP

Since Jan 14Pushed 9y ago1 watchersCompare

[ Source](https://github.com/dbeurive/slim-controller)[ Packagist](https://packagist.org/packages/dbeurive/slim-controller)[ RSS](/packages/dbeurive-slim-controller/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependencies (6)Versions (4)Used By (0)

- [Introduction](#a0)
- [Synopsis](#a1)
    - [Define the controllers](#a2)
    - [Create the index that lists all controllers](#a3)
    - [Implement the Slim application](#a4)

Introduction
==========================================

[](#introduction)

This package allows the use of "controllers" with the [Slim framework](https://www.slimframework.com/).

Synopsis
======================================

[](#synopsis)

Define the controllers
----------------------------------------------------

[](#define-the-controllers)

```
$ tree /path
/path
└── to
    └── controllers
        ├── ProfileController.php
        └── UserController.php

```

> Please note the suffix used to create the controllers' file names: "`Controller.php`". This suffix can be changed.

```
