danog/7to70

This package is abandoned and no longer maintained. The author suggests using the phabel/phabel package instead.

Convert PHP 7 code to PHP 7.0 code

1.5.1 2020-02-26 12:41 UTC

This package is auto-updated.

Last update: 2022-05-26 11:38:13 UTC


README

Latest Version on Packagist Software License Build Status Quality Score Total Downloads

This package can convert PHP 7 code to PHP 7.0. This can be handy when you are running PHP 7 in development, but PHP 5 in production.

You can convert an entire directory with PHP 7 code with a the console command:

php7to70 convert {$directoryWithPHP7Code} {$destinationWithphp70Code}

Here's an example of what it can do. It'll convert this code with PHP 7 features:

class Test
{
    public function test(?string $input): ?string
    {
        try {

        } catch (Exception1|Exception2 $e) {
            echo $e;
        }
    }
    public function a(): string
    {
        
    }
}

to this equivalent PHP 7.0 code:

class Test
{
    public function test(string $input = null)
    {
        try {

        } catch (Exception1 $e) {
            echo $e;
        } catch (Exception2 $e) {
            echo $e;
        }
    }
    public function a(): string
    {
        
    }
}

Installation

If you plan on use the console command we recommend installing the package globally:

$ composer global require danog/7to70

If you want to integrate the package in your own code require the package like usual:

$ composer require danog/7to70

The conversion process

This package converts PHP 7 code to equivalent PHP 5 code by:

  • removing nullable parameter type hints
  • removing nullable return type hints
  • substituting multiple catches

Because there are a lot of things that cannot be detected and/or converted properly we do not guarantee that the converted code will work. We highly recommend running your automated tests against the converted code to determine if it works.

Using the console command

This package provides a console command php7to70 to convert files and directories.

This is how a entire directory can be converted:

$ php7to70 convert {$directoryWithPHP7Code} {$destinationWithphp70Code}

Want to convert a single file? That's cool too! You can use the same command.

$ php7to70 convert {$sourceFileWithPHP7Code} {$destinationFileWithPHP70Code}

By default the command will only copy over php-files. Want to copy over all files? Use the copy-all option:

$ php7to70 convert {$directoryWithPHP7Code} {$destinationWithphp70Code} --copy-all

By default the command will only convert files with a php extension, but you can customize that by using the --extension option.

$ php7to70 convert {$directoryWithPHP7Code} {$destinationWithphp70Code} --extension=php --extension=phtml

If necessary, you can exclude directories / files.

$ php7to70 convert {$directoryWithPHP7Code} {$destinationWithphp70Code} --exсlude=cache

Programmatically convert files

You can convert a single file by running this code:

$converter = new Converter($pathToPhp7Code);

$converter->saveAsphp70($pathToWherephp70CodeShouldBeSaved);

An entire directory can be converted as well:

$converter = new DirectoryConverter($sourceDirectory);

$converter->savephp70FilesTo($destinationDirectory);

By default this will recursively copy all to files to the destination directory, even the non php files.

If you only want to copy over the php files do this:

$converter = new DirectoryConverter($sourceDirectory);

$converter
   ->doNotCopyNonPhpFiles()
   ->savephp70FilesTo($destinationDirectory);

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see License File for more information.