Skip to content

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.

Composer is the recommended way to install KARCH. It automatically handles dependencies and sets up the project structure for you.

  1. Open your terminal.

  2. Run the create-project command:

    Terminal window
    composer create-project krag/karch example-app

    Replace example-app with your desired project name.

  3. Navigate to your project directory:

    Terminal window
    cd example-app

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.