Project scaffolding for Reflect and Vegvisir projects
Find a file
Victor Westerlund 4fa45083d0 feat: expose UUID helper as a class of static methods (#10)
Let's expose the uuid helpers as a class of static methods instead. I'm not sure if this approach is actually better but we're going to live with it for a while. I have done UUID helpers before this library as a class. So let's run with it again.

Reviewed-on: https://codeberg.org/vlw/scaffold/pulls/10
2025-11-02 09:50:03 +01:00
src feat: expose UUID helper as a class of static methods (#10) 2025-11-02 09:50:03 +01:00
.gitignore initial commit 2025-10-29 19:56:57 +01:00
composer.json initial commit 2025-10-29 19:56:57 +01:00
composer.lock initial commit 2025-10-29 19:56:57 +01:00
LICENSE initial commit 2025-10-29 19:56:57 +01:00
README.md docs: add note about documentation in README (#6) 2025-11-01 16:26:41 +01:00

Scaffold

This composer package 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;