├── .github └── FUNDING.yml ├── .gitignore ├── CHANGE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SystemInfo.php ├── composer.json ├── interfaces └── InfoInterface.php └── os ├── Linux.php └── Windows.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/CHANGE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/README.md -------------------------------------------------------------------------------- /SystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/SystemInfo.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/composer.json -------------------------------------------------------------------------------- /interfaces/InfoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/interfaces/InfoInterface.php -------------------------------------------------------------------------------- /os/Linux.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/os/Linux.php -------------------------------------------------------------------------------- /os/Windows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhi1693/yii2-system-info/HEAD/os/Windows.php --------------------------------------------------------------------------------