{"id":27976407,"url":"https://github.com/edumarques/dynamophp-symfony","last_synced_at":"2026-03-01T18:31:36.797Z","repository":{"id":291801671,"uuid":"978582221","full_name":"edumarques/dynamophp-symfony","owner":"edumarques","description":"DynamoPHP Symfony Bundle integrates DynamoPHP into Symfony applications, providing seamless configuration and service registration.","archived":false,"fork":false,"pushed_at":"2025-05-18T13:53:37.000Z","size":98,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-08T07:16:42.528Z","etag":null,"topics":["aws","aws-dynamodb","data-mapper","dynamodb","dynamodb-orm","no-sql","odm","orm","php","single-table-design","strongly-typed","symfony","symfony-bundle","type-safe"],"latest_commit_sha":null,"homepage":"","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/edumarques.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2025-05-06T07:55:44.000Z","updated_at":"2025-05-18T13:50:05.000Z","dependencies_parsed_at":"2025-05-06T16:49:07.581Z","dependency_job_id":"249afcc8-62b8-4288-bd72-b0a41e618a15","html_url":"https://github.com/edumarques/dynamophp-symfony","commit_stats":null,"previous_names":["edumarques/dynamophp-symfony"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/edumarques/dynamophp-symfony","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fdynamophp-symfony","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fdynamophp-symfony/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fdynamophp-symfony/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fdynamophp-symfony/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edumarques","download_url":"https://codeload.github.com/edumarques/dynamophp-symfony/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fdynamophp-symfony/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29741312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T07:44:07.782Z","status":"ssl_error","status_checked_at":"2026-02-23T07:44:07.432Z","response_time":90,"last_error":"SSL_read: 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":["aws","aws-dynamodb","data-mapper","dynamodb","dynamodb-orm","no-sql","odm","orm","php","single-table-design","strongly-typed","symfony","symfony-bundle","type-safe"],"created_at":"2025-05-08T01:26:22.901Z","updated_at":"2026-03-01T18:31:36.767Z","avatar_url":"https://github.com/edumarques.png","language":"PHP","readme":"DynamoPHP Symfony Bundle\n================\n![PHP Version](https://img.shields.io/packagist/dependency-v/edumarques/dynamophp-symfony/php?version=dev-main\u0026color=%23777BB3)\n![License](https://img.shields.io/github/license/edumarques/dynamophp-symfony)\n![Build Status](https://github.com/edumarques/dynamophp-symfony/actions/workflows/base.yml/badge.svg)\n\n---\n\nThe **DynamoPHP Symfony Bundle** integrates [DynamoPHP](https://github.com/edumarques/dynamophp)\ninto [Symfony](https://symfony.com) applications, providing seamless configuration and service registration for Amazon\nDynamoDB operations.\n\n## Features\n\n- Auto-wiring of DynamoPHP services\n- Configurable AWS SDK DynamoDB client, Marshaler and Serializer\n- Sandbox application for testing and development\n\n## Installation\n\nInstall via Composer:\n\n```shell\ncomposer require edumarques/dynamophp-symfony\n```\n\nIf your Symfony application is not configured to use Symfony Flex for automatic bundle registration, you need to\nregister it manually in `config/bundles.php`:\n\n```php\n# config/bundles.php\nreturn [\n    // ... other bundles\n    EduardoMarques\\DynamoPHPBundle\\DynamoPHPBundle::class =\u003e ['all' =\u003e true],\n];\n```\n\n## Configuration\n\nAfter installation, you must configure the bundle by creating a `dynamo_php.yaml` file in your `config/packages/`\ndirectory:\n\n```yaml\n# config/packages/dynamo_php.yaml\ndynamo_php:\n  client: dynamodb_client # set the service ID of the AWS DynamoDB client registered in your app\n  marshaler: marshaler # set the service ID of the AWS Marshaler registered in your app\n  serializer: serializer # set the service ID of the Symfony serializer registered in your app\n```\n\n## Usage\n\nOnce configured, you can inject DynamoPHP services into your Symfony services or controllers. For example, to use the\nEntityManager:\n\n```php\nuse EduardoMarques\\DynamoPHP\\ODM\\EntityManager;\n\nclass YourService\n{\n    public function __construct(\n        private EntityManager $entityManager,\n    ) {\n    }\n\n    // Your methods here\n}\n```\n\n## Contributing\n\nContributors are always welcome! For more information on how you can contribute, please read\nour [contribution guideline](CONTRIBUTING.md).\n\nFor any questions, feel free to reach out to me directly by\nemail: [eduardomarqs1@gmail.com](mailto:eduardomarqs1@gmail.com).\n\nFor more information on DynamoPHP, visit the [DynamoPHP repository](https://github.com/edumarques/dynamophp).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedumarques%2Fdynamophp-symfony","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedumarques%2Fdynamophp-symfony","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedumarques%2Fdynamophp-symfony/lists"}