{"id":28424133,"url":"https://github.com/scrawler-labs/mvc","last_synced_at":"2025-06-25T01:32:01.911Z","repository":{"id":257801970,"uuid":"863791581","full_name":"scrawler-labs/mvc","owner":"scrawler-labs","description":"Template to use Scrawler as MVC framework","archived":false,"fork":false,"pushed_at":"2024-11-05T01:21:32.000Z","size":86,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-05T09:43:39.844Z","etag":null,"topics":["blade","blade-template","mvc","mvc-framework","php-framework","restful","scrawler"],"latest_commit_sha":null,"homepage":"https://github.com/scrawler-php/scrawler","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/scrawler-labs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-26T23:28:56.000Z","updated_at":"2024-11-05T01:20:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"698e14f0-40eb-4ed5-8113-b27d9b486157","html_url":"https://github.com/scrawler-labs/mvc","commit_stats":null,"previous_names":["scrawler-labs/mvc"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/scrawler-labs/mvc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scrawler-labs%2Fmvc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scrawler-labs%2Fmvc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scrawler-labs%2Fmvc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scrawler-labs%2Fmvc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scrawler-labs","download_url":"https://codeload.github.com/scrawler-labs/mvc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scrawler-labs%2Fmvc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261785262,"owners_count":23209275,"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":["blade","blade-template","mvc","mvc-framework","php-framework","restful","scrawler"],"created_at":"2025-06-05T09:36:36.517Z","updated_at":"2025-06-25T01:32:01.898Z","avatar_url":"https://github.com/scrawler-labs.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/7591484/170873489-6aa40fe3-9d5c-476b-9434-f12f0a896c85.png\" width=\"20%\"\u003e\n\n\u003ch1\u003e Scrawler MVC \u003c/h1\u003e\n\n\u003ca href=\"https://github.com/scrawler-labs/app/actions/workflows/main.yml\"\u003e\u003cimg alt=\"GitHub Workflow Status\" src=\"https://img.shields.io/github/actions/workflow/status/scrawler-labs/app/main.yml?style=flat-square\"\u003e\n\u003c/a\u003e\n[![Codecov](https://img.shields.io/codecov/c/gh/scrawler-labs/app?style=flat-square)](https://app.codecov.io/gh/scrawler-labs/app)\n[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/quality/g/scrawler-labs/app?style=flat-square)](https://scrutinizer-ci.com/g/scrawler-labs/app/?branch=main)\n\u003ca href=\"[https://github.com/scrawler-labs/app/actions/workflows/main.yml](https://github.com/scrawler-labs/app/actions/workflows/main.yml)\"\u003e\u003cimg src=\"https://img.shields.io/badge/PHPStan-enabled-brightgreen.svg?style=flat-square\" alt=\"PHPStan Enabled\"\u003e\u003c/a\u003e\n[![Packagist Version](https://img.shields.io/packagist/v/scrawler/app?style=flat-square)](https://packagist.org/packages/scrawler/app)\n[![Packagist License](https://img.shields.io/packagist/l/scrawler/app?style=flat-square)](https://packagist.org/packages/scrawler/app)\n\n\u003cbr\u003e\n\n🔥Create simple but powerful web apps and APIs quickly, with minumum lines of code🔥\u003cbr\u003e\n🇮🇳 Made in India 🇮🇳\n\u003c/div\u003e\n\n## 💻 Installation\nYou can install Scrawler App via Composer. If you don't have composer installed , you can download composer from [here](https://getcomposer.org/download/)\n\nor if you want to start with an mvc template\n```sh\ncomposer create-project scrawler/mvc \u003cproject-name\u003e\n```\n\n## ✨ Folder Structure\n- `public`: this should be the webroot of your server\n  - `assets`: your css and js assets live here\n  - `public`: public file of your storage are accessable via this symlink, if this symlink is broken create one yourseld \n- `config`: global configuration files, you can add your own configurations here\n- `storage`: app caches , file storage stays here\n- `tests`: pest tests for your app lives here\n- `src`\n  - `Controllers`: auto routed controller classes live here\n  - `views`: blade view files live here\n  - `boot.php`: boots the framework and register the required services , do not modify\n  - `app.php`: you can register your services and configuration here\n  - `routes.php`: manual routes can be added here if required\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscrawler-labs%2Fmvc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscrawler-labs%2Fmvc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscrawler-labs%2Fmvc/lists"}