frosh / shopware-rector
Shopware specific Rector
Installs: 136 416
Dependents: 2
Suggesters: 0
Security: 0
Stars: 40
Watchers: 2
Forks: 13
Open Issues: 2
Type:rector-extension
Requires
- php: ^8.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.57
- phpstan/phpstan: ~1.10.26
- phpunit/phpunit: ^9.5
- rector/rector: ^1.0
- symfony/var-dumper: *
- symplify/easy-coding-standard: ~11.2
- tracy/tracy: ^2.9
Conflicts
- rector/rector: <1.0
README
This project extends Rector with multiple Rules for Shopware specific.
See available Shopware rules
Install
Make sure to install both frosh/shopware-rector
as well as rector/rector
.
composer req rector/rector frosh/shopware-rector --dev
Use Sets
To add a set to your config, use Frosh\Rector\Set\ShopwareSetList
class and pick one of constants:
use Frosh\Rector\Set\ShopwareSetList; return static function (RectorConfig $rectorConfig): void { $rectorConfig->sets([ ShopwareSetList::SHOPWARE_6_5_0, ]); };
Use directly the config
# Clone this repo composer install # Dry Run ./vendor/bin/rector process --config config/shopware-6.5.0.php --autoload-file [SHOPWARE]/vendor/autoload.php [SHOPWARE]/custom/plugins/MyPlugin --dry-run # Normal Run ./vendor/bin/rector process --config config/shopware-6.5.0.php --autoload-file [SHOPWARE]/vendor/autoload.php [SHOPWARE]/custom/plugins/MyPlugin