for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManager;
use OutOfBoundsException;
use PackageVersions\Versions;
/**
* Version class
*
* Note that we cannot check the version at runtime via `git` because that would cause a lot of I/O operations.
*/
final class Version
{
* Private constructor - this class is not meant to be instantiated
private function __construct()
}
* Retrieves the package version in the format <detected-version>@<commit-hash>,
* where the detected version is what composer could detect.
* @throws OutOfBoundsException
public static function getVersion() : string
return Versions::getVersion('ocramius/proxy-manager');