Skip to content

loft39/conduit-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

conduit-project

conduit-project is a barebones project structure for the Conduit PHP framework.

Version License


Installation

Requirements

  • Composer
  • Apache2, NGINX, or any other server that features URL rewriting.
  • PHP 8.1 or newer
  • PDO extension for Database support (optional)

The easiest (and recommended) way to get started for local development with Conduit, is using DDEV. Read more about Docker/DDEV installation over at the DDEV docs.

Installing with Composer

Run create-project to create a new local Conduit project in the HelloWorld directory:

composer create-project loft39/conduit-project HelloWorld

This will clone the repo and run composer install automatically. It'll then run the ddev config wizard to set up your local environment. The defaults are fine (unless you want to specify a different project name), so just press enter until you see Configuration complete., then move to the project directory and run ddev start to start the app.

cd HelloWorld
ddev start