├── LICENSE ├── Standards ├── Laravel │ ├── Sniffs │ │ ├── ControlStructures │ │ │ └── ControlSignatureSniff.php │ │ ├── Functions │ │ │ └── FunctionDeclarationSniff.php │ │ └── Tabs │ │ │ └── DisallowWhitespaceIndentSniff.php │ └── ruleset.xml └── TestFiles │ └── Filesystem.php ├── composer.json └── readme.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/LICENSE -------------------------------------------------------------------------------- /Standards/Laravel/Sniffs/ControlStructures/ControlSignatureSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/Standards/Laravel/Sniffs/ControlStructures/ControlSignatureSniff.php -------------------------------------------------------------------------------- /Standards/Laravel/Sniffs/Functions/FunctionDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/Standards/Laravel/Sniffs/Functions/FunctionDeclarationSniff.php -------------------------------------------------------------------------------- /Standards/Laravel/Sniffs/Tabs/DisallowWhitespaceIndentSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/Standards/Laravel/Sniffs/Tabs/DisallowWhitespaceIndentSniff.php -------------------------------------------------------------------------------- /Standards/Laravel/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/Standards/Laravel/ruleset.xml -------------------------------------------------------------------------------- /Standards/TestFiles/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/Standards/TestFiles/Filesystem.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioribeiro/laravelcs/HEAD/readme.md --------------------------------------------------------------------------------