dev-master
9999999-dev https://github.com/machek/MMYQLZend Framework 2 module for easy access to YQL (Yahoo! Query Language)
MIT
The Requires
- php >=5.3.3
- zendframework/zendframework 2.*
zf2 module yql
Wallogit.com
2017 © Pedro Peláez
Zend Framework 2 module for easy access to YQL (Yahoo! Query Language)
Version 0.01 Created by Zdenek Machek during Yahoo! Hack Europe: London 2013, (*1)
This is simple module simplifying YQL - Yahoo! Query Language (http://developer.yahoo.com/yql/) usage, (*2)
"machek/mmyql": "dev-master" to your composer.json file and run php composer.phar update.MMYQL to your config/application.config.php file under the modules key. $select = "latitude, longitude, radius";
$from = "geo.placefinder";
$where = "text=\"{$query}\"";
$response = $this->getServiceLocator()->get('serviceYQL')->executeQuery($select, $from, $where);
$responseArray = json_decode($response);
$resultArray = array('coordinates' => array('latitude' => $result->latitude, 'longitude' => $result->longitude, 'radius' => $result->radius));
or check this project where we used it: https://github.com/Gisleburt/yahoohack, (*3)
Zend Framework 2 module for easy access to YQL (Yahoo! Query Language)
MIT
zf2 module yql