{"id":22819938,"url":"https://github.com/devdhera/quizee","last_synced_at":"2025-10-15T00:22:34.358Z","repository":{"id":101417564,"uuid":"206951975","full_name":"DevDHera/Quizee","owner":"DevDHera","description":"A TiNY PHP MVC based online examination system","archived":false,"fork":false,"pushed_at":"2019-10-05T14:19:58.000Z","size":5849,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-30T23:15:33.213Z","etag":null,"topics":["example","online-exam-system","tiny-php-mvc"],"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/DevDHera.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2019-09-07T10:25:58.000Z","updated_at":"2021-04-08T17:48:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"9687c872-ab49-4542-9e2b-2a053d9d233a","html_url":"https://github.com/DevDHera/Quizee","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DevDHera/Quizee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDHera%2FQuizee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDHera%2FQuizee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDHera%2FQuizee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDHera%2FQuizee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevDHera","download_url":"https://codeload.github.com/DevDHera/Quizee/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDHera%2FQuizee/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279031938,"owners_count":26089381,"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","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["example","online-exam-system","tiny-php-mvc"],"created_at":"2024-12-12T15:15:07.321Z","updated_at":"2025-10-15T00:22:34.327Z","avatar_url":"https://github.com/DevDHera.png","language":"PHP","readme":"# Quizee\n\nQuizee is an Online Examination Platform developed on top of [TiNY PHP MVC](https://github.com/DevDHera/TiNY-PHP-MVC) framework.\n\nFollowing are few unique features of **Quizee**.\n\n- Support for multiple user roles.\n- Easy to manage admin portal.\n- Dynamic quiz creation for supervisors.\n- Initiative quiz system for users.\n\n## Getting Started\n\nGetting started with `Quizee` is easy. Just clone the repo and work your magic :sparkles:.\n\n1. Clone the repo.\n\n```sh\ngit clone https://github.com/DevDHera/Quizee.git\n```\n\n2. Change the configs under `app/config/config.php`.\n\n```php\n\u003c?php\n    // DB Params\n    define('DB_HOST', '__YOUR_HOST__');\n    define('DB_PORT', '__YOUR_PORT__');\n    define('DB_USER', '__YOUR_USER__');\n    define('DB_PASS', '__YOUR_PASSWORD__');\n    define('DB_NAME', '__YOUR_DB_NAME__');\n    // App Root\n    define('APPROOT', dirname(dirname(__FILE__)));\n    // URL Root\n    define('URLROOT', '__YOUR_URL_ROOT__');\n    // Site Name\n    define('SITENAME', '__YOUR_SITENAME__');\n```\n\n3. Change the Dir name under `public/.htaccess`\n\n```sh\n\u003cIfModule mod_rewrite.c\u003e\n    Options -Multiviews\n    RewriteEngine On\n    RewriteBase /\u003cYOUR_DIRECTORY\u003e/public\n    RewriteCond %{REQUEST_FILENAME} !-d\n    RewriteCond %{REQUEST_FILENAME} !-f\n    RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]\n\u003c/IfModule\u003e\n```\n\n### Prerequisites\n\n- Apache Server\n- PHP 5.6+\n- MySQL\n\nInstall [XAMPP](https://www.apachefriends.org/index.html) for quickstart.\n\n### Installing\n\nUnder documenting by the Author :scroll:.\n\n## Running the tests\n\nUnder documenting by the Author :scroll:.\n\n## Deployment\n\nUnder documenting by the Author :scroll:.\n\n## Built With\n\n- [PHP](https://www.php.net/) - The scripting language.\n- [TiNY PHP MVC](https://github.com/DevDHera/TiNY-PHP-MVC) - The web framework.\n- [Bootstrap](https://getbootstrap.com/) - The CSS framework.\n\n## Contributing\n\nPlease read [CODE_OF_CONDUCT.md](https://github.com/DevDHera/Quizee/blob/master/CODE_OF_CONDUCT.md) for details on our code of conduct, and the process for submitting pull requests to us.\n\n## Versioning\n\nUnder documenting by the Author :scroll:.\n\n## Authors\n\n- **Devin Herath** - _Initial work_ - [DevD Hera](https://github.com/DevDHera)\n\nSee also the list of [contributors](https://github.com/DevDHera/Quizee/graphs/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/DevDHera/Quizee/blob/master/LICENSE) file for details\n\n## Acknowledgments\n\n- [PurpleBooth](https://github.com/PurpleBooth) for this awesome README template :heart:\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevdhera%2Fquizee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevdhera%2Fquizee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevdhera%2Fquizee/lists"}