Hello, I've got a webservice that runs as a module of my phalcon application. All the controller responses are in json and it doesn't use the view.
I'd like to call the webservice through the command line but i can't make tasks working with controller actions withour rewriting al the task actions.
I want to call an url like https://www.mysite.com/webservice/order/get/323 with:
$ php cli.php webservice order get 323
My cli support the modules. Any ideas?