Installation
KARCH is designed to be easy to install and get started with. You can choose to install it using Composer (recommended) or by cloning the repository via Git.
Choose your installation method
Section titled “Choose your installation method”Composer is the recommended way to install KARCH. It automatically handles dependencies and sets up the project structure for you.
-
Open your terminal.
-
Run the create-project command:
Terminal window composer create-project krag/karch example-appReplace
example-appwith your desired project name. -
Navigate to your project directory:
Terminal window cd example-app
If you prefer to manage the project manually or want to contribute to the framework, you can clone the repository.
-
Open your terminal.
-
Clone the repository:
Terminal window git clone https://github.com/Kenura-R-Gunarathna/KARCH-Framework.git -
Navigate to the project directory:
Terminal window cd KARCH-Framework -
Install dependencies (if you have Composer installed):
Terminal window composer install
Next Steps
Section titled “Next Steps”Once installed, you can start building your application!
- Check out the Routes documentation to define your first route.
- Learn how to use Controllers to organize your logic.