PHPackages                             miduner/miduner - 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. miduner/miduner

ActiveFramework

miduner/miduner
===============

Miduner framework is a strong framework for web applications

22465PHP

Since Dec 22Pushed 1y agoCompare

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

READMEChangelogDependenciesVersions (3)Used By (0)

Please read me mom-facker !!!
=============================

[](#please-read-me-mom-facker-)

This shit is implemented `static typing` with type-hint and arrow function from `PHP 7.4`

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

[](#installation)

```
   composer create-project danganh97/miduner:dev-master your-project-folder
```

About Miduner Framework
-----------------------

[](#about-miduner-framework)

Miduner Framework is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Miduner Framework attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:

Miduner Framework is accessible, yet powerful, providing tools needed for large, robust applications. A superb combination of simplicity, elegance, and innovation give you tools you need to build any application with which you are tasked.

Learning Miduner Framework
--------------------------

[](#learning-miduner-framework)

Miduner Framework has the most extensive and thorough documentation and video tutorial library of any modern web application framework. The [Miduner Framework documentation](https://miduner.com/docs) is building.

Contributing
------------

[](#contributing)

Thank you for considering contributing to the Miduner Framework !

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

If you discover a security vulnerability within Miduner, please send an e-mail to [Dang Anh](https://facebook.com/underspected) from . All security vulnerabilities will be promptly addressed.

Some features from Miduner Framework
------------------------------------

[](#some-features-from-miduner-framework)

*Require PHP Version &gt;= `7.4.10`*

Let's run `php hustle list` to see all available supported commands. Here is some available feature.

**You're wanna making some things ?**

```
   php hustle make:command {Command name}
   php hustle make:controller {Controller name}
   php hustle make:model {Model name}
   php hustle make:request {Request name}
   php hustle make:migration --table={Table name}
```

**Or just wanna refresh caching ?**

```
   php hustle config:cache
```

**Generate application key !**

```
   php hustle key:generate
```

or install `Json Web Tokens` for the application ?

```
   php hustle jwt:install
```

> Then remember refresh caching to register new application key !

**Run migration ?**so easy

```
   php hustle migrate
```

or just rollback all of them

```
   php hustle migrate:rollback
```

**Let's run the seeder**

```
   php hustle db:seed
```

**Live run query, why not ?**

```
   php hustle exec:query --query="select * from users"
```

You just wanna make a test ? Ok please give --test=true, like:

```
   php hustle exec:query --query="select * from users" --test=true
```

**You don't know list of your defined route ?**

```
   php hustle route:list
```

Or view under `json` or `array`

```
   php hustle route:list --format=json/array
```

**And of course, you can begin run live code with Miduner***Code with terminal like with a file*

```
   php hustle live:code
```

Aw shit ! I can't remember all that shit. Give helper

*Don't be worry, we're know that, please choose your command and give argument **--help** to get a cup of coffee*

> Here is example: `php hustle serve --help`

Task Scheduling
---------------

[](#task-scheduling)

Just add to your crontab

`* * * * * cd miduner && php hustle schedule:run >> /dev/null 2>&1`

Example using in `App\Console\Kernel`

```
