nytris / shift-symfony
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=8.1
- asmblah/php-code-shift: ^0.1
- nytris/bundle: ^0.1
- symfony/console: ^5.0
- symfony/http-kernel: ^5.0
Requires (Dev)
- mockery/mockery: ^1.6
- phpstan/phpstan: ^1.10
- phpstan/phpstan-mockery: ^1.1
- phpstan/phpstan-symfony: ^1.3
- phpunit/phpunit: ^10.2
- symfony/framework-bundle: ^5.0
- symfony/monolog-bundle: ^3.8
README
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;