11/06
2018
Wallogit.com
2017 © Pedro PelĂĄez
A framework for easy creation of routes
Inphinit is a PHP framework for use routes, controllers and views. To try it, go to:, (*1)
Inphinit\Utility\Strings class.Inphinit\Filesystem\Size class.This repository is core code of the Inphinit framework, to build an application visit the main repository., (*2)
Inphinit is a minimalist framework based on the syntax of other popular frameworks, to make learning easier. The core of the framework is divided into two parts: Inphinit and Inphinit\Experimental., (*3)
Inphinit namespace contains all defined classes that will hardly change their behavior.Inphinit\Experimental namespace contains classes that are being designed and tested, some of them already work very well, others are not yet fully defined, if the class has all its functionalities defined and tested in the future it will be moved to the Inphinit namespace.If you are a contributor, before sending a pull-request it is important to run LINT, use the following command to make it easier:, (*4)
find . -type f -name "*.php" -exec php -l {} \;
On Windows:, (*5)
for /R %F in (*.php) do @php -l %F