Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

ivotrompert's avatar

Create a new project with sail and the laravel installer

Is it possible to use the curl -s "https://laravel.build/example-app" | bash command and still use the cli menu from the laravel new command? (I mean the menu where I can choose the starter kit, testing framework and soon)

0 likes
1 reply
martinbean's avatar

@ivotrompert Not really. That URL just returns a string that’s then interpreted by bash.

You can instead use a query string parameter to specify the services you want:

curl -s "https://laravel.build/example-app?with=mailpit,pgsql,redis" | bash

Please or to participate in this conversation.