Skip to content
This repository has been archived by the owner on Feb 13, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (18 loc) · 605 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 605 Bytes
description
Siler is a set of general purpose high-level abstractions aiming an API for declarative programming in PHP.

Siler

Simplicity is the ultimate sophistication. – Leonardo Da Vinci

You can use it within any framework or standalone, as a micro-framework:

composer require leocavalcante/siler

A Hello World example

use Siler\Functional as λ;
use Siler\Route;

Route\get('/', λ\puts('Hello World'));

This outputs "Hello World" when the file is reached via HTTP using the GET method and an URI path that matches "/". Got the idea, right?