Skip to content

Releases: drkNsubuga/codeigniter-crud-api

Initial Release

18 Apr 08:27
Compare
Choose a tag to compare

Release Notes for v1.0.0 (2023-04-16)

This is the initial release of the CodeIgniter package for generating a CRUD API using PhpCrudApi. The plugin provides a simple and flexible way to set up a CRUD API for a database using a configuration file or user-defined options.

Features:

  • Instantly provides a CRUD REST API from the database schema.
  • Accepts configuration options for the database connection and CRUD API settings
  • Automatically generates a Swagger API from the database schema

Installation:

  1. Install the core composer library by running composer require mevdschee/php-crud-api
  2. Copy the Crud_api.php file into your CodeIgniter application's libraries folder
  3. Load the library in your controller or autoload configuration file
  4. Configure the database connection and other settings using a configuration file or user-defined options
  5. Set up routes to point to the library's handle_request method

Credits:

PhpCrudApi is the core library for the CRUD API.