| Recommend this page to a friend! | 
|  Download | 
| Info | Example |  Files |  Install with Composer |  Download | Reputation | Support forum | Blog | Links | 
| Ratings | Unique User Downloads | Download Rankings | ||||
| Not enough user ratings | Total: 152 | All time:  9,068 This week: 49  | ||||
| Version | License | PHP version | Categories | |||
| php-requirements-che 1.0.0 | MIT/X Consortium ... | 5 | PHP 5, System information, Tools | 
| 
<?php | 

A PHP library to check the current environment against a set of defined requirements. Currently it supports checking for PHP version, OS, extensions, php.ini values, functions, classes, apache modules and local files and folders.
composer require mirazmac/php-requirements-checker dev-master
Download the latest release. Extract and require src/Checker.php in your code. But it's highly recommended to use Composer.
require 'src/Checker.php';
use MirazMac\Requirements\Checker;
$checker = new Checker;
// Define requirements
$checker->requirePhpVersion('>=5.6')
        ->requirePhpExtensions(['ffmpeg', 'mbstring'])
        ->requireFunctions(['random_bytes'])
        ->requireFile('../composer.json', Checker::CHECK_FILE_EXISTS)
        ->requireDirectory('../src', Checker::CHECK_IS_READABLE)
        ->requireIniValues([
            'allow_url_fopen' => true,
            'short_open_tag' => true,
            'memory_limit'  => '>=64M',
        ]);
// Runs the check and returns parsed requirements as an array
// Contains parsed requirements with state of the current values
// and their comparison result
$output = $checker->check();
// Should be called after running check() to see if requirements has met or not
$satisfied = $checker->isSatisfied();
if ($satisfied) {
    echo "Requirements are met.";
} else {
    echo join(', ', $checker->getErrors());
}
Every supported requirements check begins with the word require. They return the class instance that means they're chain-able. These are the supported checks:
You can check if current PHP version matches your desired version using this method. The parameter `$version` should be a string containing your desired PHP version. Comparison operators can be prepended at the very beginning of the string.
$checker->requirePhpVersion('7.0.0');
// Note the comparison operator
// Supports comparison operators: <, >, =, >=
$checker->requirePhpVersion('>=7.0.0');
You can check if current OS matches with your desired operating system. The parameter `$os` must have one of the following values:
`Checker::OS_UNIX,Checker::OS_DOS`
$checker->requireOS(Checker::OS_UNIX);
Use this to validate a set of php.ini config values to compare against your provided values. The parameter `$valuesshould be an array as key => value fashion, where the key would contain the php.ini config var and the value should be the desired value. LikerequirePhpVersion();` comparison operators can be prepended at the very beginning of the value.
To keep things simple and neat, use `booleaninstead of usingOn/1/Off/0` for the check.
$checker->requireIniValues([
    // Will check if file_uploads is enabled or not
    // Notice the usage of boolean instead of On/Off/1/0
    'file_uploads' => true,
    // Note the comparison operator > before the desired value
    // This means the library will check if post_max_size is greater than 2M or not
    'post_max_size' => '>2M',
    // Set a value to `NULL` to just skip the check for that value
    // Useful when you don't wanna compare but want to fetch the
    // current value on the parsed requirements array
    'safe_mode'   => null,
]);
To make sure provided extensions are loaded. Parameter `$extenstions` should be an array with the extension names.
$checker->requirePhpExtensions([
    'openssl', 'mbstring', 'curl'
]);
To make sure provided functions are loaded. Parameter `$functions` should be an array with the function names.
$checker->requireFunctions([
    'apcu_fetch', 'mb_substr', 'curl_init'
]);
To make sure provided classes are loaded. Parameter `$classes` should be an array with the class names (namespaced or global namespace will be used).
$checker->requireClasses([
    'PDO', 'finfo', 'stdClass'
]);
To make sure provided modules are loaded. Parameter `$modules` should be an array with the module names.
NOTE: This check will only run if current server is Apache.
$checker->requireApacheModules([
    'mod_rewrite', 'mod_mime'
]);
To check permissions and existence of certain files and directories. The parameter `$path` should be path to any file or directory.
The parameter `$check` is the check name that would be performed on the path. The supported values are:
* `Checker::CHECK_IS_FILE- Runsis_file()` on the path.
NOTE: `requireDirectory()` is an alias of this method.
$checker->requireFile('app/config.ini', Checker::CHECK_IS_FILE)
        ->requireFile('app/cache', Checker::CHECK_IS_WRITABLE);
        ->requireDirectory('app/cache', Checker::CHECK_IS_DIR);
|  Files (6) | 
| File | Role | Description | ||
|---|---|---|---|---|
|  src (1 file) | ||||
|  usage (1 file) | ||||
|    .editorconfig | Data | Auxiliary data | ||
|    composer.json | Data | Auxiliary data | ||
|    LICENSE | Lic. | License text | ||
|    README.md | Doc. | Documentation | ||
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. | 
|  Install with Composer | 
|  | php-requirements-che-2020-02-07.zip 9KB | 
|  | php-requirements-che-2020-02-07.tar.gz 7KB | 
|  | Install with Composer | 
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% | 
 | 
 | 
| Applications that use this package | 
 If you know an application of this package, send a message to the author to add a link here.
 If you know an application of this package, send a message to the author to add a link here.