An open API service indexing awesome lists of open source software.

https://github.com/elusivecodes/php-cs-fixer-config

PHP-CS-Fixer shareable config for the Fyre style.
https://github.com/elusivecodes/php-cs-fixer-config

Last synced: over 1 year ago
JSON representation

PHP-CS-Fixer shareable config for the Fyre style.

Awesome Lists containing this project

README

          

# Fyre PHP-CS-Fixer Config

PHP-CS-Fixer shareable config for the *Fyre* style.

## Table Of Contents
- [Installation](#installation)
- [Methods](#methods)

## Installation

**Using Composer**

```
composer require --dev fyre/php-cs-fixer-config
```

## Usage

```php
use Fyre\PhpCsFixer\Config;

$config = new Config();

$config->getFinder()->in(__DIR__);

return $config;

```