uno-php/framework

The Uno Framework.

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

Language:HTML

Type:project

0.0.1 2017-04-20 21:56 UTC

This package is not auto-updated.

Last update: 2024-04-27 23:55:28 UTC


README

A minimalist PHP Framework for very quick projects, aimed at ease of use and extensibility.

It's ship with th following

  • Twig Support in Views
  • Environment Variable Detection
  • An easy Routing System based on AltoRouter
  • Mailer using Swiftmailer
  • Webpack Build Tools using Laravel Mix
  • A Dependency Injection Container and so on.

Server Requirements

The Uno framework has a few system requirements.

  • PHP >= 5.6.4
  • PDO PHP Extension

Installation

Via Git Clone

git clone https://github.com/uno-php/framework.git blog

cd blog

composer install

Via Composer Create-Project

You may install Uno using the Composer create-project command in your terminal:

composer create-project --prefer-dist uno-php/framework blog

Install NPM dependencies

yarn install / npm install

Compile Assets

npm run dev

Serve Your Project

php -S localhost:1990 -t public