Boilerplate code for creating apps in the Vegvisir web- and Reflect API-frameworks
Find a file
2026-08-02 09:01:32 +02:00
src fix: use database instance property on insert status and use fetch_assoc() for model isset() (#37) 2026-07-12 17:45:03 +02:00
.gitignore initial commit 2025-10-29 19:56:57 +01:00
composer.json chore: set composer dependency sources to git.vlw.se and lock versions to latest patch (#41) 2026-08-02 09:01:32 +02:00
composer.lock chore: set composer dependency sources to git.vlw.se and lock versions to latest patch (#41) 2026-08-02 09:01:32 +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;