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.
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 %FThe 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/