{"id":50445732,"url":"https://github.com/devsimsek/project-sdf","last_synced_at":"2026-05-31T21:30:44.994Z","repository":{"id":173385872,"uuid":"432729605","full_name":"devsimsek/project-sdf","owner":"devsimsek","description":"MVC architecture driven php 8 framework","archived":false,"fork":false,"pushed_at":"2026-05-20T19:02:59.000Z","size":302,"stargazers_count":1,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-20T19:52:54.953Z","etag":null,"topics":["collaborate","communityexchange","framework","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devsimsek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-28T14:07:24.000Z","updated_at":"2026-05-10T10:44:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"53b93303-7ff2-41c8-93a1-77a53d851312","html_url":"https://github.com/devsimsek/project-sdf","commit_stats":null,"previous_names":["devsimsek/project-sdf"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devsimsek/project-sdf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsimsek%2Fproject-sdf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsimsek%2Fproject-sdf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsimsek%2Fproject-sdf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsimsek%2Fproject-sdf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devsimsek","download_url":"https://codeload.github.com/devsimsek/project-sdf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsimsek%2Fproject-sdf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33750474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"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":["collaborate","communityexchange","framework","php"],"created_at":"2026-05-31T21:30:41.569Z","updated_at":"2026-05-31T21:30:44.988Z","avatar_url":"https://github.com/devsimsek.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project SDF v2.0.0\n\nProject SDF is a fast, robust, and modern project development framework designed\nfor PHP enthusiasts. It is compact, easy to maintain, and extremely extendable.\n\nVersion 2.0.0 introduces massive architectural improvements, performance boosts,\nand better security out of the box.\n\n![version v2.0.0](https://img.shields.io/badge/version-v2.0.0-blue)\n[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://devsimsek.mit-license.org)\n\n## Features \u0026 Highlights\n\n- **MVC Pattern:** Clean separation of concerns.\n- **Spark ORM:** Built-in QueryBuilder, Active Record implementation, and PDO\n  connection manager.\n- **Middleware Pipeline:** PSR-15 inspired request filtering.\n- **Guards:** Explicit authentication and authorization classes.\n- **Application Scopes:** Organize context gracefully (Controller, Helper,\n  Global, System, View).\n- **Fast Routing:** Route compilation and caching for massive performance gains.\n- **Config Loader:** Supports `.php` and `.json` configs. Compiled to cache\n  automatically.\n- **Modern Fuse View Engine:** Compiles to raw PHP. High performance and\n  `eval()`-free for enhanced security.\n- **CLI Commands:** Generators for Models, Controllers, Migrations, and more\n  (`sdf/cli`).\n- **Composer Ready:** Optional but recommended PSR-4 autoloading via Composer,\n  while retaining standalone compatibility.\n\n## Tech Stack\n\n**PHP:** 8.0 or higher is required. The framework is fully tested and compatible\nup to PHP 8.5.\n\n## Installation\n\n### Via Git\n\n```bash\ngit clone https://github.com/devsimsek/project-sdf.git\ncd project-sdf\n```\n\n### Via Composer\n\n```bash\ncomposer create-project devsimsek/project-sdf\n```\n\n## Quick Start\n\n### 1. Configuration\n\nConfigure the framework inside `app/config/app.php` or `app/config/app.json`.\n\n### 2. Generate Code\n\nUse the bundled CLI to generate components:\n\n```bash\n# Generate a new Controller\nphp sdf/cli g controller UserController\n\n# Generate a new Spark Model\nphp sdf/cli g model User\n```\n\n### 3. Run Development Server\n\n```bash\nphp sdf/cli serve -p 8000\n```\n\n## Documentation\n\nFull documentation is available in the `wiki/` directory.\n\n- [Core Components](wiki/sdf/home.md)\n- [Spark ORM](wiki/libraries/spark.md)\n- [Fuse Template Engine](wiki/libraries/fuse.md)\n\n## Feedback\n\nIf you have any feedback or encounter issues, please open an issue within the\nrepository.\n\n## Contributing\n\nContributions are always welcome! Please follow PSR-12 coding standards and\nwrite tests for your components before opening a pull request.\n\n## Authors\n\n- [@devsimsek](https://www.github.com/devsimsek)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsimsek%2Fproject-sdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevsimsek%2Fproject-sdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsimsek%2Fproject-sdf/lists"}