Project scaffolding for Reflect and Vegvisir projects
Find a file
Victor Westerlund 93f018551c feat: add vlw/xenum as a scaffolding library (#35)
Since we use [vlw/xenum](/vlw/php-xenum) a lot when dealing with databases I think it's just easier if we include it as a library from here. We do also use it sometimes outside of a database table context, but database tables is still the main reason for including it here.

Reviewed-on: https://codeberg.org/vlw/scaffold/pulls/35
2026-05-17 14:32:24 +02:00
src fix: add missing db chain to database library in Model (#34) 2026-05-10 09:26:14 +02:00
.gitignore initial commit 2025-10-29 19:56:57 +01:00
composer.json feat: add vlw/xenum as a scaffolding library (#35) 2026-05-17 14:32:24 +02:00
composer.lock feat: add vlw/xenum as a scaffolding library (#35) 2026-05-17 14:32:24 +02:00
LICENSE initial commit 2025-10-29 19:56:57 +01:00
README.md doc: add text that this library is primarily for Vegvisir and Reflect scaffolding (#23) 2026-02-11 17:25:05 +01:00

Scaffold

This composer package (primarily) contains my project boilerplate code for working with Vegvisir and Reflect projects. It contains my most commonly used classes and functions which I use to make development of new project in these frameworks easier.

Refer to the documentation in each source file for more information about its function.

Installation

Run the install scripts for Vegvisir and/or Reflect, and then require this composer package to use its features anywhere in your project.

composer require vlw/scaffold

Refer to the code comments in each file for documentation about its function. The base namespace is vlw\Scaffold and each class and function can be used that way. For example:

use vlw\Scaffold\Database\Model;