├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Extension └── Loader.php └── Task ├── PhpCsAutoFixer.php ├── PhpCsAutoFixerV2.php └── Phpdoc.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/composer.json -------------------------------------------------------------------------------- /src/Extension/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/src/Extension/Loader.php -------------------------------------------------------------------------------- /src/Task/PhpCsAutoFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/src/Task/PhpCsAutoFixer.php -------------------------------------------------------------------------------- /src/Task/PhpCsAutoFixerV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/src/Task/PhpCsAutoFixerV2.php -------------------------------------------------------------------------------- /src/Task/Phpdoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearejust/grumphp-extra-tasks/HEAD/src/Task/Phpdoc.php --------------------------------------------------------------------------------