https://github.com/kubawerlos/php-cs-fixer-config
Provides configuration for PHP CS Fixer
https://github.com/kubawerlos/php-cs-fixer-config
Last synced: about 1 month ago
JSON representation
Provides configuration for PHP CS Fixer
- Host: GitHub
- URL: https://github.com/kubawerlos/php-cs-fixer-config
- Owner: kubawerlos
- License: mit
- Created: 2020-05-03T17:27:01.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-06-11T15:38:10.000Z (about 1 month ago)
- Last Synced: 2025-06-11T17:07:43.839Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 142 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kubawerlos/php-cs-fixer-config
[](https://packagist.org/packages/kubawerlos/php-cs-fixer-config)
[](https://php.net)
[](https://github.com/kubawerlos/php-cs-fixer-config/actions?query=event%3Apush+branch%3Amain)
[](LICENSE)Provides a configuration for PHP CS Fixer.
## Installation
```bash
composer require --dev kubawerlos/php-cs-fixer-config
php vendor/bin/fixinit
```## Usage
Create `.php-cs-fixer.php` file and use `PhpCsFixerConfig\Factory`:
```php
setFinder(
PhpCsFixer\Finder::create()
->files()
->in(__DIR__ . '/src')
);```
for library or use method `createForProject` for project.