codexen/shadow

There is no license information available for the latest version (1.0.4) of this package.

Shadow PHP Framework

Installs: 24

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

1.0.4 2019-11-12 10:02 UTC

This package is auto-updated.

Last update: 2024-03-05 02:48:07 UTC


README

Shadow is an awesome PHP framework providing an easier and expressive way to create websites.

Documentation

For detailed documentation visit https://codexen.github.io/shadow-docs/

Installation

  • composer create-project codexen/shadow foldername dev-master
  • cp remote.ini.example remote.ini
  • php kapitan server

Code Examples

Database Queries

$data = ['title' => 'Shadow Framework', 'description' => 'Framework for kapitans'];
Insert : Model::instance()->insert($data);
Update : Model::instance()->where('id', 1)->update($data);
Delete : Model::instance()->where('id', 1)->delete();
Select : Model::instance()->select('title', 'description')->orderBy('id', 'desc')->getAll();