Neos\Flow\Core\Migrations\Manager::writeComposerManifest PHP 메소드

writeComposerManifest() 보호된 메소드

protected writeComposerManifest ( ) : void
리턴 void
    protected function writeComposerManifest()
    {
        $composerFilePathAndName = Files::concatenatePaths([$this->currentPackageData['path'], 'composer.json']);
        file_put_contents($composerFilePathAndName, json_encode($this->currentPackageData['composerManifest'], JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
    }