artemalexeev / systeminfo
Package shows system info of your PHP project
v1.1.0
2026-02-06 12:17 UTC
Requires
- php: >=8.0
- ext-zend-opcache: *
Requires (Dev)
- phpstan/phpstan: ^2.1
This package is auto-updated.
Last update: 2026-04-06 12:37:40 UTC
README
Description
For now shows only opcache status information.
Install
- Use composer:
-
composer require artemalexeev/systeminfo
Usage
For getting opcache status information you can use the following code:
use ArtemAlieksieiev\SystemInfo\OpcacheStatus;
(new OpcacheStatus())->display();
Or for real example check examples/opcache_demo.php file.