os-info

Application easily parsing and displaying system information of the host.

MIT License

Downloads
6
Stars
5

Operating system information

Application easily parsing and displaying system information of the host.

Installer

	composer require olivia/os-info

Use

Basic

	$info = new Olivia\OsInfo\OSInfo(
		new Linfo\Linfo
	);

	// Cpu
	echo $info->getCpu();

Laravel or other PHP framework

	use Olivia\OsInfo\OSInfo;

	$info = app(OSInfo::class);

	// Cpu
	echo $info->getCpu();

API

  • getCpu() : string
  • getServer() : string
  • getMemory() : string
  • getMysqlVersion(string $host = '127.0.0.1', string $username = 'root', ?string password = null) : string
  • getPHPVersion() : string
  • getUploadMaxFileSize() : string
Package Rankings
Top 43.53% on Packagist.org