//
//$renameObject->replace_array = array(
//    'Twenty Fifteen' => 'Twenty Something',
//    'twentyfifteen' => 'twentysomething',
//    'twenty-fifteen' => 'twenty-something',
//    'twenty_fifteen' => 'twenty_something',
//    'TWENTY_FIFTEEN' => 'TWENTY_SOMETHING',
//);
/**
 * You can generate this with next three lines. Or add another search-replace items to array to the beginning or to the end, but after generation of replace array.
 */
$renameObject->search = 'Twenty Fifteen';
$renameObject->replace = 'Twenty Something';
$renameObject->generate_replace_array();
$renameObject->addIgnore('.//.git');
/**
 * Run the renaming process
 */
$renameObject->scanTheDir('./');
?>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <!-- Latest compiled and minified JavaScript -->
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
            integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
            crossorigin="anonymous"></script>
    </body>
</html>