basic-app / appstarter
Basic App starter app
Requires
- php: ^8.2
- basic-app/admin: dev-master
- basic-app/adminlte4: dev-main
- basic-app/jquery3: dev-main
- basic-app/lightbox2: dev-main
- codeigniter4/framework: ^4.7
Requires (Dev)
- codeigniter4/translations: *
- fakerphp/faker: ^1.9
- mikey179/vfsstream: ^1.6
- phpunit/phpunit: ^10.5.16
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-08 20:38:56 UTC
README
Basic App is a free, open-source, self-hosted content management system based on the CodeIgniter 4 PHP Framework.
Basic App is designed to provide a quick start for sites made on CodeIgniter 4 and to take over the implementation of the basic functions of a modern web application.
Installation
Step 1
Create a new application using Composer:
composer create-project --stability=dev basic-app/appstarter
The command installs the application in a directory named appstarter. You can choose a different directory name if you want.
Step 2
Configure application settings (base url, timezone, database) in the /.env file.
Step 3
Execute commands via shell:
php spark migrate -all
php spark db:seed "BasicApp\Admin\Database\Seeds\DemoSeeder"
php spark publish
Step 4
Run local development server
php spark serve
Or set document root to /public directory in case of using another server.
Backend
Access backend by opening http://localhost:8080/index.php/admin in a browser.
login: admin
password: admin
Server Requirements
PHP version 8.2 or higher is required, with the following extensions installed:
Additionally, make sure that the following extensions are enabled in your PHP:
- json (enabled by default - don't turn it off)
- mysqlnd if you plan to use MySQL
- libcurl if you plan to use the HTTP\CURLRequest library