stackenv 0.1.2

Native, zero-container multi-project dev environment manager. No Docker, no VMs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
name = "laravel-app"
domain = "laravel-app.localhost"

[language]
php = "8.3.1"

[service.mysql]
version = "8.0.35"
schema = "laravel_app"   # optional -- defaults to the project name anyway

[tool.composer]
version = "2.7.7"   # stack fetches composer.phar itself for this one

[run]
# Once this is a real Laravel install (see README), swap this for:
#   command = "php artisan serve --host=127.0.0.1 --port={port}"
command = "php -S 127.0.0.1:{port} -t public"