Skip to content

Commit

Permalink
README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
judus committed Feb 23, 2018
1 parent 3b50127 commit 60fb9c6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ App::respond(function () {

### Introduction

The goal is of this framework is to provide basic and easy extensible functionality and to display basic architectural concepts. If you need a full featured and rock solid framework for business application, let me save your time, go to one of these: [Laravel](https://laravel.com/), [Symfony](https://symfony.com/), [Zend Framework](https://framework.zend.com/), ['Yii Framework'](http://www.yiiframework.com/), [CodeIgniter](https://codeigniter.com/)
The goal is of this framework is to provide basic and easy extensible functionality and to display basic architectural concepts.
If you need a full featured and rock solid framework for business application, let me save your time, go for one of these:
[Laravel](https://laravel.com/), [Symfony](https://symfony.com/), [Zend Framework](https://framework.zend.com/), ['Yii Framework'](http://www.yiiframework.com/), [CodeIgniter](https://codeigniter.com/)

So what is it then and what can you do with it?

Expand All @@ -47,7 +49,7 @@ Though, if you are going to build business apps, I again strongly recommend to g
https://en.wikipedia.org/wiki/Facade_pattern<br>
For example: Router::post() basically means $app->getRouter()->post().

##### Know bugs
##### Known bugs
- None that I am aware of, but the documentation might be out of date from time to time

## Requirements
Expand Down Expand Up @@ -206,7 +208,7 @@ or
Router::get(hello/(:any)/(:any), [
'controller' => YourController::class,
'action' => 'yourMethod'
])
]);
```
```php
class App\Demo\Base\Controllers\YourController
Expand Down

0 comments on commit 60fb9c6

Please sign in to comment.