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
Requires
- php: >=5.6.4
- uno-php/core: dev-master
This package is not auto-updated.
Last update: 2024-11-10 03:19:58 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