websitesql/framework

A simple, easy-to-use, REST API framework.

v1.0.1 2025-04-14 23:59 UTC

This package is auto-updated.

Last update: 2025-04-15 00:00:10 UTC


README

The console application is run by calling it from the command line. The entry point is the console.php file located in the root directory of the project. You can run it like this:

php {filename} [options] [arguments]

Where {filename} is the path to the console.php file. For example, if you are in the root directory of the project, you can run:

#!/usr/bin/env php
<?php

// Require autoload
require_once __DIR__ . '/vendor/autoload.php';

// Run the console application
new WebsiteSQL\Framework\Core\Console($argv);