14 lines
220 B
PHP
14 lines
220 B
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
'name'=>'Hangman Game',
|
||
|
'defaultController'=>'game',
|
||
|
'components'=>array(
|
||
|
'urlManager'=>array(
|
||
|
'urlFormat'=>'path',
|
||
|
'rules'=>array(
|
||
|
'game/guess/<g:\w>'=>'game/guess',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
);
|