{"id":20300940,"url":"https://github.com/rinvex/universities","last_synced_at":"2025-04-09T09:10:01.441Z","repository":{"id":15494633,"uuid":"78117728","full_name":"rinvex/universities","owner":"rinvex","description":"Rinvex University is a simple and lightweight package for retrieving university details with flexibility. A whole bunch of data including name, country, state, email, website, telephone, address, and much more attributes for the 17k+ known universities worldwide at your fingertips.","archived":false,"fork":false,"pushed_at":"2024-09-17T16:49:27.000Z","size":7431,"stargazers_count":62,"open_issues_count":0,"forks_count":25,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-02T05:10:00.520Z","etag":null,"topics":["php","universities"],"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/rinvex.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-01-05T14:02:00.000Z","updated_at":"2025-03-07T00:10:29.000Z","dependencies_parsed_at":"2024-09-17T20:25:45.582Z","dependency_job_id":"fc19ef15-8520-4478-b52f-5ebb781ed5c6","html_url":"https://github.com/rinvex/universities","commit_stats":{"total_commits":208,"total_committers":5,"mean_commits":41.6,"dds":0.3846153846153846,"last_synced_commit":"10da8e69a45ddde000927cc1006d3e5ad392952f"},"previous_names":[],"tags_count":39,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rinvex%2Funiversities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rinvex%2Funiversities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rinvex%2Funiversities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rinvex%2Funiversities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rinvex","download_url":"https://codeload.github.com/rinvex/universities/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248008630,"owners_count":21032556,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["php","universities"],"created_at":"2024-11-14T16:22:25.409Z","updated_at":"2025-04-09T09:09:59.304Z","avatar_url":"https://github.com/rinvex.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rinvex University\n\n**Rinvex University** is a simple and lightweight package for retrieving university details with flexibility. A whole bunch of data including name, country, state, email, website, telephone, address, and much more attributes for the 17k+ known universities worldwide at your fingertips.\n\n[![Packagist](https://img.shields.io/packagist/v/rinvex/universities.svg?label=Packagist\u0026style=flat-square)](https://packagist.org/packages/rinvex/universities)\n[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/rinvex/universities.svg?label=Scrutinizer\u0026style=flat-square)](https://scrutinizer-ci.com/g/rinvex/universities/)\n[![Travis](https://img.shields.io/travis/rinvex/universities.svg?label=TravisCI\u0026style=flat-square)](https://travis-ci.org/rinvex/universities)\n[![StyleCI](https://styleci.io/repos/77772990/shield)](https://styleci.io/repos/77772990)\n[![License](https://img.shields.io/packagist/l/rinvex/universities.svg?label=License\u0026style=flat-square)](https://github.com/rinvex/universities/blob/develop/LICENSE)\n\n\n## Usage\n\nInstall via `composer require rinvex/universities`, then use intuitively:\n\n```php\n// Get single university\n$cairoUniversity = university('cairo-university');\n\n// Get university name: Cairo University\necho $cairoUniversity-\u003egetName();\n\n// Get university alternative name: null\necho $cairoUniversity-\u003egetAltName();\n\n// Get university country: Egypt\necho $cairoUniversity-\u003egetCountry();\n\n// Get university state: null\necho $cairoUniversity-\u003egetState();\n\n// Get university address: {\"street\":\"PO Box 12613, Nahdet Misr Street\",\"city\":\"Giza\",\"province\":\"Cairo\",\"postal_code\":null}\necho $cairoUniversity-\u003egetAddress();\n\n// Get university street: PO Box 12613, Nahdet Misr Street\necho $cairoUniversity-\u003egetStreet();\n\n// Get university city: Giza\necho $cairoUniversity-\u003egetCity();\n\n// Get university province: Cairo\necho $cairoUniversity-\u003egetProvince();\n\n// Get university postal code: null\necho $cairoUniversity-\u003egetPostalCode();\n\n// Get university contact: {\"telephone\":\"+20(2) 572-9584\",\"website\":\"http:\\/\\/www.cu.edu.eg\",\"email\":\"scc@cu.edu.eg\",\"fax\":\"+20(2) 568-8884\"}\necho $cairoUniversity-\u003egetContact();\n\n// Get university telephone: +20(2) 572-9584\necho $cairoUniversity-\u003egetTelephone();\n\n// Get university website: http://www.cu.edu.eg\necho $cairoUniversity-\u003egetWebsite();\n\n// Get university email: scc@cu.edu.eg\necho $cairoUniversity-\u003egetEmail();\n\n// Get university fax: +20(2) 568-8884\necho $cairoUniversity-\u003egetFax();\n\n// Get university funding: Public\necho $cairoUniversity-\u003egetFunding();\n\n// Get university languages: null\necho $cairoUniversity-\u003egetLanguages();\n\n// Get university academic year: September to June (September-January; January-June)\necho $cairoUniversity-\u003egetAcademicYear();\n\n// Get university accrediting agency: null\necho $cairoUniversity-\u003egetAccreditingAgency();\n\n\n// Get all universities\n$universities = universities();\n\n// Get all universities in Egypt (by country code)\n$egyptUniversities = universities('eg');\n```\n\n\u003e **Notes:**\n\u003e - **Rinvex University** is framework-agnostic, so it's compatible with any PHP framework whatsoever without any dependencies at all, except for the PHP version itself **^8.0.0**. Awesome, huh? :smiley:\n\u003e - **Rinvex University** provides the global helpers for your convenience and for ease of use, but in fact it's just wrappers around the underlying `UniversityLoader` class, which you can utilize and use directly if you wish\n\n\n## Features Explained\n\n- University data are all stored here: `resources/names.json`.\n- `name` - university english name\n- `alt_name` - university alternative name\n- `country` - university country\n- `state` - university state\n- `address` - university address details\n    - street: university street\n    - city: university city\n    - province: university province\n    - postal_code: university postal code\n- `contact` - university contact details\n    - telephone: university telephone\n    - website: university website\n    - email: university email\n    - fax: university fax\n- `funding` - university institution funding (public/private)\n- `languages` - university teaching languages (array)\n- `academic_year` - university academic year\n- `accrediting_agency` - university accrediting agency\n\n\n## Changelog\n\nRefer to the [Changelog](CHANGELOG.md) for a full history of the project.\n\n\n## Support\n\nThe following support channels are available at your fingertips:\n\n- [Chat on Slack](https://bit.ly/rinvex-slack)\n- [Help on Email](mailto:help@rinvex.com)\n- [Follow on Twitter](https://twitter.com/rinvex)\n\n\n## Contributing \u0026 Protocols\n\nThank you for considering contributing to this project! The contribution guide can be found in [CONTRIBUTING.md](CONTRIBUTING.md).\n\nBug reports, feature requests, and pull requests are very welcome.\n\n- [Versioning](CONTRIBUTING.md#versioning)\n- [Pull Requests](CONTRIBUTING.md#pull-requests)\n- [Coding Standards](CONTRIBUTING.md#coding-standards)\n- [Feature Requests](CONTRIBUTING.md#feature-requests)\n- [Git Flow](CONTRIBUTING.md#git-flow)\n\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within this project, please send an e-mail to [help@rinvex.com](help@rinvex.com). All security vulnerabilities will be promptly addressed.\n\n\n## About Rinvex\n\nRinvex is a software solutions startup, specialized in integrated enterprise solutions for SMEs established in Alexandria, Egypt since June 2016. We believe that our drive The Value, The Reach, and The Impact is what differentiates us and unleash the endless possibilities of our philosophy through the power of software. We like to call it Innovation At The Speed Of Life. That’s how we do our share of advancing humanity.\n\n\n## License\n\nThis software is released under [The MIT License (MIT)](LICENSE).\n\n(c) 2016-2022 Rinvex LLC, Some rights reserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frinvex%2Funiversities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frinvex%2Funiversities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frinvex%2Funiversities/lists"}