Skip to content

Repository files navigation

Stand With Ukraine 🇺🇦

Stand With Ukraine


devium/processes

Build statusLatest VersionLicenseDownloads

This package is used to get a list of running processes on Windows or Unix-like systems, even Darwin.

Thanks to fastlist for processes on Windows.

Installation

composer require devium/processes

Usage

useDevium\Processes\Processes;
// some PID, integer$pid = 1234;
// get all processes except both session leaders, default false$all = true;
$processes = newProcesses($all);
$exists = $processes->exists($pid); // returns true of false$arrayOfProcesses = $processes->get(); // returns array of processes where key is PID// for rescanning processes, call rescan() method$newArrayOfProcesses = $processes->rescan()->get();
// if you only need an array of processes, just use the static asArray():$listOfProcesses = Processes::asArray();

Structure of processes array

For windows

{
"PID": {
"pid": "integer",
"ppid": "integer",
"name": "string"
}
}

For unix-like systems

{
"PID": {
"pid": "integer",
"ppid": "integer",
"name": "string",
"uid": "integer",
"cpu": "float",
"memory": "float",
"cmd": "string"
}
}

Testing

composer test

License

devium/processes is open-sourced software licensed under the MIT license.

Vano Devium


Made with ❤️ in Ukraine

About

This package used for getting list of running processes on Windows or Unix-like systems

Resources

Contributing

Stars

24 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages