php-extended/php-system

A generic way to find informations about the running system

7.0.2 2024-04-08 18:42 UTC

README

A generic way to find informations about your system

coverage build status

Installation

The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.

  • Download composer.phar from their website.
  • Then run the following command to install this library as dependency :
  • php composer.phar php-extended/php-system ^7

Basic Usage

You can get the singleton php-system object by doing the following:


use PhpExtended\System\OperatingSystem;

$system = OperatingSystem::get();

This system object have lots of useful properties. An instance of UnknownOs is returned in case this is not implemented. The get method never throws any exception.

License

MIT (See license file).