Skip to content

Commit 2f06448

Browse files
committed
Add CodeIgniter3 Filename Checker
1 parent 8214386 commit 2f06448

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ $ php bin/install.php modular-extensions-hmvc codeigniter-3.x
6868
$ php bin/install.php ion-auth 2
6969
```
7070

71+
[CodeIgniter3 Filename Checker](https://github.com/kenjis/codeigniter3-filename-checker):
72+
73+
```
74+
$ php bin/install.php filename-checker master
75+
```
76+
7177
### Run PHP built-in server (PHP 5.4 or later)
7278

7379
```

bin/install.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ public function __construct() {
6464
),
6565
'msg' => 'See http://benedmunds.com/ion_auth/',
6666
),
67+
'filename-checker' => array(
68+
'site' => 'github',
69+
'user' => 'kenjis',
70+
'repos' => 'codeigniter3-filename-checker',
71+
'name' => 'CodeIgniter3 Filename Checker',
72+
'dir' => 'controllers',
73+
'msg' => 'See https://github.com/kenjis/codeigniter3-filename-checker',
74+
),
6775
];
6876
}
6977

@@ -86,6 +94,7 @@ public function usage($self)
8694
$msg .= " php $self hmvc-modules master" . PHP_EOL;
8795
$msg .= " php $self modular-extensions-hmvc codeigniter-3.x" . PHP_EOL;
8896
$msg .= " php $self ion-auth 2" . PHP_EOL;
97+
$msg .= " php $self filename-checker master" . PHP_EOL;
8998

9099
return $msg;
91100
}

0 commit comments

Comments
 (0)