basic-app/appstarter

CodeIgniter4 starter app

dev-master 2021-06-20 16:28 UTC

This package is auto-updated.

Last update: 2024-04-20 22:51:56 UTC


README

CodeIgniter 4 Application Starter

Installation & updates

composer create-project basic-app/appstarter --stability=dev --prefer-dist --keep-vcs

Setup

Copy env to .env and tailor for your app, specifically the baseURL and any database settings.

You should configure your web server to "point" to your project's public folder, and not to the project root.

Please read the CodeIgniter 4 user guide for a better explanation of how it works!

Server Requirements

PHP version 7.3 or higher is required, with the following extensions installed:

  • intl
  • libcurl if you plan to use the HTTP\CURLRequest library

Additionally, make sure that the following extensions are enabled in your PHP:

  • json (enabled by default - don't turn it off)
  • mbstring
  • mysqlnd
  • xml (enabled by default - don't turn it off)