Start your full development environment with a single command.
marko/devserver orchestrates the PHP built-in server, Docker services, and frontend build tools under a single CLI entry point. Run marko up and your entire stack starts; run marko down and it stops cleanly. Supports both detached and foreground modes, with status inspection at any time.
composer require marko/devservermarko up # Start PHP server, Docker, and frontend tools (detached by default)
marko up -f # Start in foreground mode (press Ctrl+C to stop)
marko status # Check what's running
marko down # Stop everythingFull usage, configuration, and API reference: marko/devserver