Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/binhnlt/codeigniter-service-layer

For those who too lazy to make service layer for CodeIgniter project :)
https://github.com/binhnlt/codeigniter-service-layer

codeigniter service-object

Last synced: 6 days ago
JSON representation

For those who too lazy to make service layer for CodeIgniter project :)

Awesome Lists containing this project

README

        

# CodeIgniter Service Layer

If you're too lazy to create your own service class, use this. =)
(Sorry for by bad English)

## INSTALL

### If you're using Composer
```
composer require nltbinh/codeigniter-service-layer
php vendor/nltbinh/codeigniter-service-layer/install.php
```

### If you're not using composer
Download and override this project to your CodeIgniter project

## USAGE
1. Install this project
2. Create an Service in `\application\services\` with file name `Sample_service.php`
```
load->service('sample_service', '', TRUE);
```