├── .editorconfig ├── .styleci.yml ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json └── src ├── Console └── Commands │ ├── PackableGeneratorCommand.php │ └── RequestMakeCommand.php └── helpers.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/composer.json -------------------------------------------------------------------------------- /src/Console/Commands/PackableGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/src/Console/Commands/PackableGeneratorCommand.php -------------------------------------------------------------------------------- /src/Console/Commands/RequestMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/src/Console/Commands/RequestMakeCommand.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acacha/helpers/HEAD/src/helpers.php --------------------------------------------------------------------------------