You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Abel Hoogeveen 52c41a205e
continuous-integration/drone/push Build is passing Details
PHP8 compatibility update.
- Updated to latest libraries
- Added and amended config files
- Implemented drone
2 years ago
application PHP8 compatibility update. 2 years ago
log Initial Commit. 7 years ago
temp Initial Commit. 7 years ago
test PHP8 compatibility update. 2 years ago
www Implemented 1.2.0-RC5 4 years ago
.drone.yml PHP8 compatibility update. 2 years ago
.gitattributes Added Travis, CodeClimate. 7 years ago
.gitignore Initial commit for 1.2.0-BETA. 4 years ago
LICENSE Initial commit for 1.2.0-BETA. 4 years ago
README.md PHP8 compatibility update. 2 years ago
composer.json PHP8 compatibility update. 2 years ago

README.md

FuzeWorks Application Skeleton Build Status

This is a simple, skeleton application using FuzeWorks. This is meant to be used as a starting point for your new projects.

FuzeWorks is a versatile framework for web development. It is designed to be the most usable and friendliest as possible. It focuses on security and performance.

Requirements

PHP 7.4 or higher.

Installation

The best way to install this Application is using Composer. If you don't have Composer yet, download it following the instructions. Then use command:

composer create-project fuzeworks/application path/to/install
cd path/to/install

Make sure directories temp/ and log/ are writable.

Web Server Setup

The simplest way to get started is to start the built-in PHP server in the root directory of your project:

php -S localhost:8000 -t www

Then visit http://localhost:8000 in your browser to see the welcome page.

For Apache or Nginx, setup a virtual host to point to the www/ directory of the project and you should be ready to go.

It is CRITICAL that whole application/, log/ and temp/ directories are not accessible directly via a web browser.