koriym/spaceman

1.0.3 2020-07-04 22:23 UTC

This package is auto-updated.

Last update: 2024-07-01 00:08:21 UTC


README

Spaceman

Dealing with old unnamaspaced code does not seem fun. Something you had to do at work?

Installation

composer require koriym/spaceman --dev

Usage

<?php

use Koriym\Spaceman\Convert;

require dirname(__DIR__) . '/vendors/autoload.php';

$sourcePath = __DIR__ . '/service/protected/controllers';

// Rewrite php file with adding namespace declaration starting `$packageName` on directory basis
$packageName = 'application';
(new Convert($packageName))($sourcePath);