inphinit / framework
A framework for easy creation of routes
2.1-beta.10
2026-09-11 04:36 UTC
Requires
- php: >=5.4.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- 2.x-dev
- 2.1-beta.10
- 2.1-beta.9
- 2.1-beta.8
- 2.1-beta.7
- 2.1-beta.6
- 2.1-beta.5
- 2.1-beta.4
- 2.1-beta.3
- 2.1-beta.1
- 2.0
- 1.x-dev
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0
- 0.6.2
- 0.5.19
- 0.5.18
- 0.5.17
- 0.5.16
- 0.5.15
- 0.5.14
- 0.5.13
- 0.5.12
- 0.5.11
- 0.5.10
- 0.5.9
- 0.5.8
- 0.5.7
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.3.0
- 0.2.0
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.0
This package is auto-updated.
Last update: 2026-09-12 00:18:29 UTC
README
Getting started
This repository contains the core code of the Inphinit framework. To build an application, visit the main repository.
The core of the framework is divided into two parts: Inphinit and Inphinit\Experimental.
Inphinitnamespace contains all defined classes that will hardly change their behavior.Inphinit\Experimentalnamespace contains classes that are being designed and tested. Some of them already work very well, while others are still being defined. Once a class is stable and fully tested, it will be moved to theInphinitnamespace.
Contributing
Requirements:
- Recommended: PHP 8 (see the currently supported versions at https://www.php.net/supported-versions.php)
- Minimum: PHP 5.4 (backward compatibility is preserved for environments with upgrade limitations)
- Intl PHP extension, required for the
Inphinit\Utility\Stringsclass. - COM or cURL PHP extension, required for the
Inphinit\Filesystem\Sizeclass.
Before submitting a pull-request, it's important to run LINT with the following command to check for potential errors:
find . -type f -name "*.php" -exec php -l {} \;
In Windows environments (cmd) you should run the command:
for /R %F in (*.php) do @php -l %F
Documentation
The documentation contains instructions for using the framework, as well as the basic application that uses the framework.
- English: https://inphinit.github.io/en/docs/
- Portuguese: https://inphinit.github.io/pt/docs/
- API Reference: https://inphinit.github.io/api/