nytris/shift-symfony

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

pkg:composer/nytris/shift-symfony

v0.1.2 2023-12-01 01:12 UTC

This package is auto-updated.

Last update: 2025-09-29 03:14:22 UTC


README

Build Status

Integrates PHP Code Shift into a Symfony application.

Usage

Install via Composer:

$ composer install nytris/shift-symfony

Configuring platform boot config

nytris.config.php

<?php

declare(strict_types=1);

use Asmblah\PhpCodeShift\ShiftPackage;
use Nytris\Boot\BootConfig;
use Nytris\Boot\PlatformConfig;

$bootConfig = new BootConfig(new PlatformConfig(__DIR__ . '/var/cache/nytris/'));

$bootConfig->installPackage(new ShiftPackage([...]));

return $bootConfig;