Download the PHP package stevebauman/unfinalize without Composer
On this page you can find all versions of the php package stevebauman/unfinalize. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download stevebauman/unfinalize
More information about stevebauman/unfinalize
Files in stevebauman/unfinalize
Package unfinalize
Short Description Permanently remove final keywords from vendor packages.
License MIT
Informations about the package unfinalize
Unfinalize
Unleash the freedom lost with open source PHP packages marking classes and methods as final
.
Unfinalize uses PHP CS Fixer to permanently remove final
keywords from composer vendor packages:
- Updates to PHP files are done safely, quickly, and performant.
- Changes are stored permanently. There is no performance impact using Unfinalize.
- No additional dependencies to your application. Unfinalize and its dependencies are compiled into a single phar file.
Installation
Usage
You may unfinalize files using two different methods: package paths.
File Paths
Using files paths allow you to unfinalize specific files or directories by specifying them in the command:
You may unfinalize multiple files or directories by separating them by a space:
To make sure this is always done on your project's dependencies, add the command to your composer.json
file in the scripts
property:
Then run composer update
.
Package Paths
Using package paths allow you to unfinalize entire packages by specifying them in your composer.json
file.
Add the vendor packages you want to remove the final keywords from inside an unfinalize
property:
Add the unfinalize command to your composer.json
so it runs on composer update
:
Then, run composer update
.
Options
--annotate={annotation}
If you would like final classes and methods to be marked with an annotation (@{annotation}
) doc
block after unfinalizing, you may add the --annotate
option to the unfinalize command:
If an annotation already exists in a doc block then it will be left untouched.
Which will produce:
Before:
After:
--properties={protected/public}
If you would like to change the visibility of private
properties to
protected
or public
, you may add the --properties
option to
the unfinalize command with the new visibility to assign:
Which will produce:
Before:
After:
--methods={protected/public}
If you would like to change the visibility of private
methods to
protected
or public
, you may add the --methods
option
to the unfinalize command with the new visibility to assign:
Which will produce:
Before:
After:
--dry
Execute a dry run to see what files will be modified by Unfinalize: