DenoSys application skeleton for bootstrapping a new app with a minimal dependency surface.
composer create-project denosyscore/app my-appThe root app composer.json keeps dependencies minimal:
denosyscore/frameworkas the single framework dependency- all runtime framework components are installed transitively via
denosyscore/framework
cd my-app
php core optimize
php -S 127.0.0.1:8000 -t public- HTTP and CLI entry points (
public/index.php,core) - Application bootstrap (
bootstrap/app.php) - Base app provider, controller, and user model
- Starter configuration in
config/ - Starter routes in
routes/web.php
CI: composer validation + PHP syntax checks on push/PRRelease: publish GitHub release on semantic tagsDependabot: weekly Composer dependency checks