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

ActiveProject[Framework](/categories/framework)

panada/app
==========

A PHP Framework for those who love simplicity and performance at the same time

2114713[1 PRs](https://github.com/panada/app/pulls)CSS

Since Jul 13Pushed 9y ago7 watchersCompare

[ Source](https://github.com/panada/app)[ Packagist](https://packagist.org/packages/panada/app)[ RSS](/packages/panada-app/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

##### Due to several work related commitments, the development rate is a little slow and I apologize for that. However, I'm looking for awesome folks 🤘 who could contribute and help me maintain this project. If you have any queries that you may have on how to contribute, or you have just general questions about how to use the components in your app - feel free to shoot an email. I'll help you out! 😸

[](#due-to-several-work-related-commitments-the-development-rate-is-a-little-slow-and-i-apologize-for-that-however-im-looking-for-awesome-folks-metal-who-could-contribute-and-help-me-maintain-this-project-if-you-have-any-queries-that-you-may-have-on-how-to-contribute-or-you-have-just-general-questions-about-how-to-use-the-components-in-your-app---feel-free-to-shoot-an-email-ill-help-you-out-smile_cat)

About Panada
============

[](#about-panada)

Panada is a high performance PHP 5.5 base development framework, yet simple. Not only in contexts about how to use it, but also how the core system run it.

At this time, Panada 2.0 is on its very heavy development phase, so it will be a lot changes in the features.

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

[](#requirements)

Panada is only supported on PHP 5.5 and up.

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

[](#installation)

```
composer create-project panada/app --prefer-dist --stability=dev myweb;
php -S localhost:8181 -t myweb/public;

```

Then open your browser

Quick Start Guide
-----------------

[](#quick-start-guide)

### Controller

[](#controller)

Since version 1, Panada use [HMVC](https://en.wikipedia.org/wiki/Hierarchical_model%E2%80%93view%E2%80%93controller) design patern. As part of the HMVC architecture, controllers are responsible for processing requests and generating responses, both in main application controller's and module controller's. Now lets create one in main application.

Create a new file named Hello.php in src/Controller folder. Then write some class:

```
