typomedia / exeinfo
Windows Binary Properties Reader
1.0.0
2021-12-18 20:14 UTC
Requires
- php: >=7.2
- ext-fileinfo: *
Requires (Dev)
- phpmd/phpmd: ^2.8
- phpunit/phpunit: ^8.5
- squizlabs/php_codesniffer: ^3.6
- symfony/finder: ^5.4
This package is auto-updated.
Last update: 2024-11-19 02:29:58 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.