It is a fast, lightweight and highly flexible web application PHP framework.
The minimum PHP version must be at least 8.2
It is recommended that you create your first application in a Docker environment or in a Docker RoadRunner environment
Or you can create an application via composer.
$ composer create-project micro/micro {directory} --remove-vcs
$ cd {directory}
$ php -S localhost:10000 -t public/
Open http://localhost:10000 and you will see HelloWorld page.
There is also support for console utilities.
php bin/console
To run tests, run the following command. By default, phpstan, psalm, phpunit will be runned.
$ composer run-script test-all
Contributions are always welcome!