{"id":28412010,"url":"https://github.com/pickleboxer/laravel-installer","last_synced_at":"2026-01-29T23:02:46.171Z","repository":{"id":331729915,"uuid":"1039222022","full_name":"PickleBoxer/laravel-installer","owner":"PickleBoxer","description":"Docker image for Laravel Installer - create Laravel projects without local PHP/Composer","archived":false,"fork":false,"pushed_at":"2026-01-25T00:12:19.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-25T13:43:07.129Z","etag":null,"topics":["docker","docker-image","laravel","laravel-installer"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/pickleboxer/laravel-installer","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PickleBoxer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-16T18:34:10.000Z","updated_at":"2026-01-25T00:12:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/PickleBoxer/laravel-installer","commit_stats":null,"previous_names":["pickleboxer/laravel-installer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PickleBoxer/laravel-installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PickleBoxer%2Flaravel-installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PickleBoxer%2Flaravel-installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PickleBoxer%2Flaravel-installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PickleBoxer%2Flaravel-installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PickleBoxer","download_url":"https://codeload.github.com/PickleBoxer/laravel-installer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PickleBoxer%2Flaravel-installer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28889863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-image","laravel","laravel-installer"],"created_at":"2025-06-02T19:19:16.833Z","updated_at":"2026-01-29T23:02:46.166Z","avatar_url":"https://github.com/PickleBoxer.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Installer\n\n![Build](https://github.com/PickleBoxer/laravel-installer/workflows/Build%20and%20Push%20Docker%20Images/badge.svg)\n\nDocker image for Laravel Installer. Create Laravel projects without local PHP or Composer installation.\n\n## Quick Start\n\n### Linux / macOS / Git Bash\n\n```bash\n# Using latest Laravel installer version\ndocker run --rm -v $PWD:/opt pickleboxer/laravel-installer new PROJECT_NAME\n\n# Using specific Laravel installer version\ndocker run --rm -v $PWD:/opt pickleboxer/laravel-installer:5.22.0 new PROJECT_NAME\n```\n\n### PowerShell / Windows\n\n```powershell\n# Using latest Laravel installer version\ndocker run --rm -v ${PWD}:/opt pickleboxer/laravel-installer new PROJECT_NAME\n\n# Using specific Laravel installer version\ndocker run --rm -v ${PWD}:/opt pickleboxer/laravel-installer:5.22.0 new PROJECT_NAME\n```\n\n## Usage Examples\n\n### Interactive Mode (Recommended)\n\nRun without project name to get interactive prompts for starter kits, testing frameworks, and more:\n\n**Linux / macOS / Git Bash:**\n```bash\ndocker run --rm -it -v $PWD:/opt pickleboxer/laravel-installer new\n```\n\n**PowerShell / Windows:**\n```powershell\ndocker run --rm -it -v ${PWD}:/opt pickleboxer/laravel-installer new\n```\n\nThe installer will ask you:\n- Project name\n- Starter kit (Breeze, Jetstream, or none)\n- Testing framework (Pest or PHPUnit)\n- Database configuration\n- Git repository initialization\n\n### Create a new Laravel project (non-interactive)\n\n**Linux / macOS / Git Bash:**\n```bash\ndocker run --rm -v $PWD:/opt pickleboxer/laravel-installer new blog\n```\n\n**PowerShell / Windows:**\n```powershell\ndocker run --rm -v ${PWD}:/opt pickleboxer/laravel-installer new blog\n```\n\n### Run with correct file permissions (Linux/macOS)\n\n```bash\ndocker run --rm -it \\\n  -v $PWD:/opt \\\n  -u $(id -u):$(id -g) \\\n  pickleboxer/laravel-installer new\n```\n\n### Use specific installer version\n\n**Linux / macOS / Git Bash:**\n```bash\ndocker run --rm -it -v $PWD:/opt pickleboxer/laravel-installer:5.21.0 new\n```\n\n**PowerShell / Windows:**\n```powershell\ndocker run --rm -it -v ${PWD}:/opt pickleboxer/laravel-installer:5.21.0 new\n```\n\n## Available Tags\n\nThis repository automatically maintains Docker images for the last 5 stable Laravel Installer versions:\n\n- `latest` - Latest Laravel Installer version (currently 5.23.1)\n- `5.23.1` - Laravel Installer v5.23.1\n- `5.22.0` - Laravel Installer v5.22.0\n- `5.21.0` - Laravel Installer v5.21.0\n- `5.20.0` - Laravel Installer v5.20.0\n- `5.19.0` - Laravel Installer v5.19.0\n\n**Note:** Images are automatically built weekly to track new Laravel Installer releases.\n\n## Version Numbering\n\nImages are tagged with Laravel Installer version numbers (e.g., `5.23.1`), following the official [laravel/installer](https://packagist.org/packages/laravel/installer) package versions.\n\n## Local Development\n\n### Build locally\n\n```bash\n# Build with latest version\n./build.sh\n\n# Build with specific version\n./build.sh --version 5.22.0\n\n# Build with custom Docker Hub username\n./build.sh --version 5.22.0 --username yourusername\n```\n\n### PowerShell (Windows)\n\n```powershell\n# Build with latest version\n.\\build.ps1\n\n# Build with specific version\n.\\build.ps1 -Version 5.22.0\n\n# Build with custom username\n.\\build.ps1 -Version 5.22.0 -DockerHubUsername yourusername\n```\n\n## How It Works\n\n- Base image: Official Composer 2.x image\n- Laravel Installer: Installed globally via Composer\n- Entrypoint: `laravel` command\n- Working directory: `/opt` (mount your project directory here)\n\n## Automated Updates\n\n- **Weekly checks**: Automatically detects new Laravel Installer releases every Sunday\n- **Version tracking**: Maintains `versions.json` with the last 5 stable versions\n- **Auto-build**: Builds and pushes all tracked versions when updates are detected\n- **Smoke testing**: Each image is tested before being pushed to Docker Hub\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is open-source software licensed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpickleboxer%2Flaravel-installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpickleboxer%2Flaravel-installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpickleboxer%2Flaravel-installer/lists"}