|  Download     
 Benchmark ToolsThis package can show a report of PHP configuration information. It provides several classes that retrieve information of configuration of resources that can be used by PHP on the server side. The class can compose a report and display it on a Web page Currently the classes provide information about:
* Databasesupport like MySQL configuration variables and speed of insertion and selection of records
*File systemsupport like disk space and access permissions, speed of creating files
* Resources needed forhigh loadapplications like available memory, accessing shared memory, sending large email messages, upload large files
*HTTPconnection related resources like get the server IP address, HTTP comnnection protocol, HTTP authentication, session support
* Serverplatforminformation like installed applications such as Wordpress, Drupal, etc., other programming languages
*Servers ISPinformation like network, country, city, geographic coordinates
*PHP serverconfiguration like PHP version, cache extensions, available extensions Demonstration Example of use can be found in the file example.php. Requirements
PHP version 5.3 or higher.
 Installation1) Install composer 2) Follow in the project folder: composer require dmamontov/benchmark-tools ~1.0.3
 In config composer.jsonyour project will be added to the librarydmamontov/benchmark-tools, who settled in the foldervendor/. In the absence of a config file or folder with vendors they will be created. If before your project is not used composer, connect the startup file vendors. To do this, enter the code in the project: require 'path/to/vendor/autoload.php';
 |