{"id":15077661,"url":"https://github.com/jakubkulhan/data-access-kit-symfony","last_synced_at":"2026-01-31T11:02:09.860Z","repository":{"id":242051962,"uuid":"804888329","full_name":"jakubkulhan/data-access-kit-symfony","owner":"jakubkulhan","description":"Symfony bundle for type-safe minimum-writing SQL repositories for PHP","archived":false,"fork":false,"pushed_at":"2025-06-26T17:34:05.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-01T21:41:12.534Z","etag":null,"topics":["dao","data-access-layer","data-access-library","data-access-object","data-mapper","object-relational-mapper","object-relational-mapping","orm","php","symfony","symfony-bundle"],"latest_commit_sha":null,"homepage":"https://github.com/jakubkulhan/data-access-kit","language":"PHP","has_issues":false,"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/jakubkulhan.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}},"created_at":"2024-05-23T13:16:06.000Z","updated_at":"2025-06-26T17:34:09.000Z","dependencies_parsed_at":"2024-10-13T06:31:20.533Z","dependency_job_id":null,"html_url":"https://github.com/jakubkulhan/data-access-kit-symfony","commit_stats":{"total_commits":19,"total_committers":1,"mean_commits":19.0,"dds":0.0,"last_synced_commit":"13be95fa847bdcaf14c0cc6ba95eda2f8bf88244"},"previous_names":["jakubkulhan/data-access-kit-symfony"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jakubkulhan/data-access-kit-symfony","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakubkulhan%2Fdata-access-kit-symfony","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakubkulhan%2Fdata-access-kit-symfony/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakubkulhan%2Fdata-access-kit-symfony/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakubkulhan%2Fdata-access-kit-symfony/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jakubkulhan","download_url":"https://codeload.github.com/jakubkulhan/data-access-kit-symfony/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakubkulhan%2Fdata-access-kit-symfony/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28939490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T10:18:23.202Z","status":"ssl_error","status_checked_at":"2026-01-31T10:18:22.693Z","response_time":128,"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":["dao","data-access-layer","data-access-library","data-access-object","data-mapper","object-relational-mapper","object-relational-mapping","orm","php","symfony","symfony-bundle"],"created_at":"2024-09-25T04:06:14.142Z","updated_at":"2026-01-31T11:02:09.845Z","avatar_url":"https://github.com/jakubkulhan.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DataAccessKit\\Symfony\n\n## Quick start\n\nAdd bundle to `config/bundles.php`.\n\n```php\n\u003c?php\n\nreturn [\n    // ...\n    Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle::class =\u003e ['all' =\u003e true], // DataAccessKit depends on Doctrine\\DBAL\n    DataAccessKit\\Symfony\\DataAccessKitBundle::class =\u003e ['all' =\u003e true],\n];\n```\n\n(Or add to `Kernel::registerBundles()` if you don't use `MicroKernelTrait`.)\n\nThen configure paths to your repository classes in `config/packages/data_access_kit.yaml`.\n\n```yaml\ndata_access_kit:\n  repositories:\n    # similar to how autoload in composer.json works\n    App\\Repository\\:\n      path: %kernel.project_dir%/src/Repository\n```\n\nAnd that's it! Follow repositories [quick start](https://github.com/jakubkulhan/data-access-kit#quick-start) to learn more.\n\n## Installation\n\n```shell\ncomposer require data-access-kit/data-access-kit-symfony@dev-main\n```\n\n### Requirements\n\n- PHP 8.3 or higher.\n- Symfony 7.0 or higher.\n\n## Configuration\n\n```yaml\ndata_access_kit:\n  default_database: default # this database Persistence will be aliased to PersistenceInterface\n  databases:\n    default:\n      connection: doctrine.dbal.default_connection # service reference to Doctrine\\DBAL\\Connection\n    other:\n      connection: doctrine.dbal.other_connection\n  repositories:\n    App\\Repository: # namespace prefix\n      path: %kernel.project_dir%/src/Repository # path to repository classes\n      exclude: # excluded file paths, you can use glob patterns\n        - Support/**\n        - Tests/**\n  name_converter: DataAccessKit\\Converter\\DefaultNameConverter # service reference to NameConverterInterface, if the service doesn't exist, the string is considered to be a class name and a service is added to the container\n  value_converter: DataAccessKit\\Converter\\DefaultValueConverter # service reference to ValueConverterInterface, the same behavior as with name_converter\n```\n\n## Contributing\n\nThis repository is automatically split from the [main repository](https://github.com/jakubkulhan/data-access-kit-src). Please open issues and pull requests there.\n\n## License\n\nLicensed under MIT license. See [LICENSE](https://github.com/jakubkulhan/data-access-kit-src/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakubkulhan%2Fdata-access-kit-symfony","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakubkulhan%2Fdata-access-kit-symfony","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakubkulhan%2Fdata-access-kit-symfony/lists"}