├── .cs.php ├── .github └── workflows │ └── build.yml ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml ├── phpstan.neon └── src └── Configuration.php /.cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/.cs.php -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/config/HEAD/src/Configuration.php --------------------------------------------------------------------------------