Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 months ago
JSON representation
For those who too lazy to make service layer for CodeIgniter project :)
- Host: GitHub
- URL: https://github.com/binhnlt/codeigniter-service-layer
- Owner: binhnlt
- License: mit
- Created: 2017-03-13T06:09:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-31T15:31:51.000Z (over 6 years ago)
- Last Synced: 2024-09-28T16:42:16.462Z (4 months ago)
- Topics: codeigniter, service-object
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 13
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```