├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── .gitignore ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── _config.yml ├── composer.json ├── phpunit.xml ├── readme.md ├── src └── spresnac │ └── createcliuser │ ├── CreateCliUserCommand.php │ └── CreateCliUserCommandServiceProvider.php └── tests └── spresnac └── createcliuser ├── CreateCliUserCommandTest.php └── User.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/_config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/readme.md -------------------------------------------------------------------------------- /src/spresnac/createcliuser/CreateCliUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/src/spresnac/createcliuser/CreateCliUserCommand.php -------------------------------------------------------------------------------- /src/spresnac/createcliuser/CreateCliUserCommandServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/src/spresnac/createcliuser/CreateCliUserCommandServiceProvider.php -------------------------------------------------------------------------------- /tests/spresnac/createcliuser/CreateCliUserCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/tests/spresnac/createcliuser/CreateCliUserCommandTest.php -------------------------------------------------------------------------------- /tests/spresnac/createcliuser/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spresnac/laravel-create-user-cli/HEAD/tests/spresnac/createcliuser/User.php --------------------------------------------------------------------------------