Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenjis/codeigniter3-filename-checker
CodeIgniter3 Filename Checker
https://github.com/kenjis/codeigniter3-filename-checker
checker codeigniter codeigniter3
Last synced: 2 months ago
JSON representation
CodeIgniter3 Filename Checker
- Host: GitHub
- URL: https://github.com/kenjis/codeigniter3-filename-checker
- Owner: kenjis
- License: mit
- Created: 2015-06-16T12:02:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-12T15:34:02.000Z (over 6 years ago)
- Last Synced: 2024-11-01T07:51:51.210Z (3 months ago)
- Topics: checker, codeigniter, codeigniter3
- Language: PHP
- Homepage:
- Size: 121 KB
- Stars: 22
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# CodeIgniter3 Filename Checker
This controller checks CodeIgniter 3.0 class filename.
> Starting with CodeIgniter 3.0, all class filenames (libraries, drivers, controllers and models) must be named in a Ucfirst-like manner or in other words - they must start with a capital letter.
[CodeIgniter User Guide](http://www.codeigniter.com/user_guide/installation/upgrade_300.html#step-2-update-your-classes-file-names)## Installation
Install `controllers/Check.php` into your CodeIgniter 3.0 `application/controllers` folder.
## Usage
Access to `http://your-server/check/filename`.
Or you can run via CLI:
~~~
$ php index.php check filename
~~~If you want to fix filename:
~~~
$ php index.php check filename fix
~~~## Related Projects for CodeIgniter 3.0
* [CodeIgniter Composer Installer](https://github.com/kenjis/codeigniter-composer-installer)
* [Cli for CodeIgniter 3.0](https://github.com/kenjis/codeigniter-cli)
* [CI PHPUnit Test](https://github.com/kenjis/ci-phpunit-test)
* [CodeIgniter Simple and Secure Twig](https://github.com/kenjis/codeigniter-ss-twig)
* [CodeIgniter Doctrine](https://github.com/kenjis/codeigniter-doctrine)
* [CodeIgniter Deployer](https://github.com/kenjis/codeigniter-deployer)