for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Théo FIDRY <[email protected]>,
* Pádraic Brady <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Humbug\PhpScoper\Scoper\Composer;
use Humbug\PhpScoper\Scoper;
final class JsonFileScoper implements Scoper
{
private $decoratedScoper;
public function __construct(Scoper $decoratedScoper)
$this->decoratedScoper = $decoratedScoper;
}
/**
* Scopes PHP and JSON files related to Composer.
* {@inheritdoc}
public function scope(string $filePath, string $prefix): string
if (1 !== preg_match('/composer\.json$/', $filePath)) {
return $this->decoratedScoper->scope($filePath, $prefix);
$decodedJson = json_decode(
file_get_contents($filePath),
true
);
$decodedJson = AutoloadPrefixer::prefixPackageAutoloads($decodedJson, $prefix);
return json_encode(
$decodedJson,
JSON_PRETTY_PRINT