loft39 / conduit-project
Barebones project for the Conduit PHP framework.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
Language:Twig
Type:project
Requires
- loft39/conduit: dev-master
README
conduit-project is a barebones project structure for the Conduit PHP framework.
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