{"id":43968716,"url":"https://github.com/ridvanbaluyos/mmda","last_synced_at":"2026-02-07T07:08:36.809Z","repository":{"id":27843293,"uuid":"31333454","full_name":"ridvanbaluyos/mmda","owner":"ridvanbaluyos","description":"A PHP Library built for the MMDA Traffic Update.","archived":false,"fork":false,"pushed_at":"2020-06-12T10:26:47.000Z","size":18,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-11T17:13:50.285Z","etag":null,"topics":["library","mmda","php","traffic"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ridvanbaluyos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-25T20:08:56.000Z","updated_at":"2020-06-12T10:24:53.000Z","dependencies_parsed_at":"2022-09-03T11:31:01.312Z","dependency_job_id":null,"html_url":"https://github.com/ridvanbaluyos/mmda","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/ridvanbaluyos/mmda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridvanbaluyos%2Fmmda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridvanbaluyos%2Fmmda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridvanbaluyos%2Fmmda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridvanbaluyos%2Fmmda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ridvanbaluyos","download_url":"https://codeload.github.com/ridvanbaluyos/mmda/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ridvanbaluyos%2Fmmda/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29188381,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T05:07:31.176Z","status":"ssl_error","status_checked_at":"2026-02-07T05:06:15.227Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["library","mmda","php","traffic"],"created_at":"2026-02-07T07:08:36.178Z","updated_at":"2026-02-07T07:08:36.804Z","avatar_url":"https://github.com/ridvanbaluyos.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"ridvanbaluyos/mmda\n=======\nAn MMDA Traffic Navigator package for PHP\n\u003e Traffic Data downloaded from: [MMDA-TV5 Metro Manila Traffic Navigator](http://mmdatraffic.interaksyon.com/)\n\u003cbr/\u003e\u003cbr/\u003e\n\n[![Latest Stable Version](https://poser.pugx.org/ridvanbaluyos/mmda/v/stable)](https://packagist.org/packages/ridvanbaluyos/mmda) [![Total Downloads](https://poser.pugx.org/ridvanbaluyos/mmda/downloads)](https://packagist.org/packages/ridvanbaluyos/mmda) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/ridvanbaluyos/mmda/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/ridvanbaluyos/mmda/?branch=master) [![Build Status](https://scrutinizer-ci.com/g/ridvanbaluyos/mmda/badges/build.png?b=master)](https://scrutinizer-ci.com/g/ridvanbaluyos/mmda/build-status/master) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/0ce7e7c86bf0405c9497dafc28f14a96)](https://www.codacy.com/app/ridvanbaluyos/mmda?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=ridvanbaluyos/mmda\u0026amp;utm_campaign=Badge_Grade) [![License](https://poser.pugx.org/ridvanbaluyos/mmda/license)](https://packagist.org/packages/ridvanbaluyos/mmda)\n\n## Table of contents ##\n- [Installation](#installation)\n- [Usage](#usage)\n    - [Traffic Data](#getting-traffic-data)\n    - [Highways](#getting-major-highways)\n    - [Segments](#getting-highway-segments)\n- [Credits](#special-thanks-to)\n\n### Installation ##\nOpen your `composer.json` file and add the following to the `require` key:\n\n    \"ridvanbaluyos/mmda\": \"1.1\"\n\n---\n\nAfter adding the key, run composer update from the command line to install the package\n\n```bash\ncomposer install\n```\n\nor\n\n```bash\ncomposer update\n```\n\n### Usage ##\n```php\n\u003c?php\n// require the autoloader created upon composer install/update\nrequire_once __DIR__ . '/vendor/autoload.php';\n\n// namespace\nuse Ridvanbaluyos\\Mmda\\MMDA as MMDA;\n\n// instantiate the MMDA object\n$mmda = new MMDA();\n```\n\n#### Getting Traffic Data\n```php\n$mmda-\u003etraffic();\n\n```\n\n#### Getting Major Highways\n```php\n$mmda-\u003ehighways();\n```\n\n#### Getting Highway Segments\n```php\n// parameter should be a valid highway (see getting major highways)\n$mmda-\u003esegments('EDSA');\n```\n\n## Special thanks to:\n* [Rem Cruz](https://github.com/remerico/) and his [Pebble MMDA App](https://github.com/remerico/pebble-mmda)\n* [MMDA for iOS](https://itunes.apple.com/ph/app/mmda-for-ios/id464656389?mt=8) by Giro AppSolutions\n* [MMDA for Android™](https://play.google.com/store/apps/details?id=edu.up.ittc.mmda\u0026hl=en) by UP ITDC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fridvanbaluyos%2Fmmda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fridvanbaluyos%2Fmmda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fridvanbaluyos%2Fmmda/lists"}