typomedia/exeinfo

Windows Binary Properties Reader

1.0.0 2021-12-18 20:14 UTC

This package is auto-updated.

Last update: 2024-05-19 01:34:12 UTC


README

Library providing file properties/metadata from Windows binaries (*.exe, *.dll).

The Library is PSR-1, PSR-4, PSR-12 compliant.

Unit Tests have a Code Coverage of 100%!

Requirements

  • >= PHP 7.2

Dependencies

  • none

Install

composer require typomedia/exeinfo

Usage

use Typomedia\Exeinfo\Exeinfo;

$exeinfo = new Exeinfo('php.exe');

print $exeinfo->product;
print $exeinfo->company;
print $exeinfo->comment;
print $exeinfo->copyright;
print $exeinfo->description;
print $exeinfo->version;

Credits

This library is heavily inspired by NeuD answer on Stack Overflow.

Information