├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ └── license.yml ├── .gitignore ├── .gitlab-ci.yml ├── Dockerfile ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/.github/workflows/license.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/laravel-gitlab-ci/HEAD/README.md --------------------------------------------------------------------------------