How to change the default session time in phalcon framework without changing the php.ini file. I am using the below code for starting session in phalcon framework. Any suggestion is most welcome.
$di->setShared('session', function() {
            $session = new SessionAdapter();
            $session->start();
            return $session;
        });
 
     
    