Thank you for choosing to use TetherPHP.
Before getting started, please check you are able to meet the requirements.
TetherPHP is designed to be straightforward to use, with minimal dependencies. Its intuitive structure allows developers to quickly set up projects without complex configuration. The framework focuses on simplicity, enabling you to build robust applications with clean, maintainable code. By minimizing external requirements, TetherPHP ensures fast installation and reduces potential compatibility issues, making it ideal for both small and large-scale PHP projects.
The first step is to grab the latest copy of TetherPHP. You can do this by either cloning the repo from GitHub:
git clone https://github.com/Dillonsmart/tetherphp.git
Or you can create a new project using Composer:
composer create-project dillonsmart/tetherphp ./new-project
Once you have a copy of the project local, ensure you copy the .env.example to .env
TetherPHP doesn't require any dependencies out of the box. However, Composer is used to manage dependencies should you want to include any later on.
Generate the autoload load file for Composer:
composer install
To clear all the boilerplate, you can run the following command. This will leave you with a blank slate to build whatever your heart desires.
From the root directory of the project, run:
php tether boilerplate:clear
Now you've cleared all the boilerplate code, your ready to get to work.