├── .github └── workflows │ ├── update-readme.yml │ └── validate-templates.yml ├── README.md ├── README_template.md ├── screenshot.png └── templates.json /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnylea/laravel-new/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.github/workflows/validate-templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnylea/laravel-new/HEAD/.github/workflows/validate-templates.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnylea/laravel-new/HEAD/README.md -------------------------------------------------------------------------------- /README_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnylea/laravel-new/HEAD/README_template.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnylea/laravel-new/HEAD/screenshot.png -------------------------------------------------------------------------------- /templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnylea/laravel-new/HEAD/templates.json --------------------------------------------------------------------------------