alleyinteractive / wp-to-psr-4
Migrate a WordPress-style code base to PSR-4 file structure.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 20
Forks: 1
Open Issues: 1
Type:project
Requires
- php: ^8.2|^8.3
- illuminate/support: ^10.32|^11.0
- symfony/console: ^6.0|^7.0
- symfony/finder: ^6.0|^7.0
- symfony/process: ^6.0|^7.0
Requires (Dev)
- laravel/pint: ^1.13
- phpunit/phpunit: ^11.3
- symfony/var-dumper: ^7.1
This package is auto-updated.
Last update: 2024-11-04 19:54:22 UTC
README
Migrate a WordPress-style code base to PSR-4 file structure. For example:
src/example/path/to/class-file.php -> src/Example/Path/To/ClassFile.php
src/example/trait-ReusableTrait.php -> src/Example/ReusableTrait.php
src/example/interface-ReusableInterface.php -> src/Example/ReusableInterface.php
Installation
You can download the latest phar from the releases page using the following example:
wget https://github.com/alleyinteractive/wp-to-psr-4/releases/download/v1.0.3/wp-to-psr4.phar chmod +x wp-to-psr4.phar mv wp-to-psr4.phar /usr/local/bin/wp-to-psr4
Or you can install it globally using Composer:
composer global require alleyinteractive/wp-to-psr-4
Usage
wp-to-psr4 path/to/convert
Options
--dry-run
Prints the changes that would be made without actually making them.
--exclude
Exclude a directory/file from being converted. This option can be used multiple times and accepts glob patterns.
--no-git
Do not run git mv
on the files. Will only make changes to the file system.
Credits
This project is actively maintained by Alley Interactive. Like what you see? Come work with us.
License
The GNU General Public License (GPL) license. Please see License File for more information.