Robo\composer\ScriptHandler::checkDependenciesFor55 PHP Метод

checkDependenciesFor55() защищенный статический Метод

Check to see if the dependencies in composer.lock are compatible with php 5.5.
protected static checkDependenciesFor55 ( )
    protected static function checkDependenciesFor55()
    {
        $fs = new Filesystem();
        if (!$fs->exists('composer.lock')) {
            return;
        }
        $composerLockContents = file_get_contents('composer.lock');
        if (preg_match('#"php":.*(5\\.6)#', $composerLockContents)) {
            static::fixDependenciesFor55();
        }
    }