├── .devcontainer ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config └── fixer.php ├── phpunit.xml ├── src ├── Console │ └── FixCommand.php ├── FixerServiceProvider.php └── Services │ ├── Fixer.php │ └── Fixer │ └── Concerns │ ├── HasConfigurationResolver.php │ ├── HasErrorsManager.php │ ├── HasEventDispatcher.php │ ├── HasFinder.php │ ├── HasFixEvent.php │ ├── HasProgressOutput.php │ ├── HasRunner.php │ └── HasStopWatch.php └── tests └── .gitkeep /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | .DS_Store 3 | .idea 4 | composer.lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/composer.json -------------------------------------------------------------------------------- /config/fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/config/fixer.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Console/FixCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Console/FixCommand.php -------------------------------------------------------------------------------- /src/FixerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/FixerServiceProvider.php -------------------------------------------------------------------------------- /src/Services/Fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasConfigurationResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasConfigurationResolver.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasErrorsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasErrorsManager.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasEventDispatcher.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasFinder.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasFixEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasFixEvent.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasProgressOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasProgressOutput.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasRunner.php -------------------------------------------------------------------------------- /src/Services/Fixer/Concerns/HasStopWatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stechstudio/Laravel-PHP-CS-Fixer/HEAD/src/Services/Fixer/Concerns/HasStopWatch.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------