{"id":14983659,"url":"https://github.com/welpdev/mailchimp-bundle","last_synced_at":"2025-04-06T20:13:09.891Z","repository":{"id":48101686,"uuid":"66918984","full_name":"welpdev/mailchimp-bundle","owner":"welpdev","description":"MailChimp integration with Symfony and MailChimp API V3","archived":false,"fork":false,"pushed_at":"2024-03-05T14:45:53.000Z","size":659,"stargazers_count":44,"open_issues_count":5,"forks_count":38,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-30T18:11:08.241Z","etag":null,"topics":["bundle","mailchimp","mailchimp-api","mailchimp-bundle","packagist","php","symfony","symfony-bundle","symfony2","symfony3"],"latest_commit_sha":null,"homepage":"https://welpdev.github.io/mailchimp-bundle/","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/welpdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2016-08-30T07:51:06.000Z","updated_at":"2024-05-25T19:09:05.000Z","dependencies_parsed_at":"2024-06-19T05:39:00.225Z","dependency_job_id":null,"html_url":"https://github.com/welpdev/mailchimp-bundle","commit_stats":{"total_commits":108,"total_committers":9,"mean_commits":12.0,"dds":"0.33333333333333337","last_synced_commit":"a26617b03f02e5bee1061c63cc5b30c1e9719989"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/welpdev%2Fmailchimp-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/welpdev%2Fmailchimp-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/welpdev%2Fmailchimp-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/welpdev%2Fmailchimp-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/welpdev","download_url":"https://codeload.github.com/welpdev/mailchimp-bundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247543593,"owners_count":20955865,"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":["bundle","mailchimp","mailchimp-api","mailchimp-bundle","packagist","php","symfony","symfony-bundle","symfony2","symfony3"],"created_at":"2024-09-24T14:07:44.616Z","updated_at":"2025-04-06T20:13:09.868Z","avatar_url":"https://github.com/welpdev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mailchimp-bundle\n\n[![Build Status](https://travis-ci.org/welpdev/mailchimp-bundle.svg?branch=master)](https://travis-ci.org/welpdev/mailchimp-bundle)\n[![Packagist](https://img.shields.io/packagist/v/welp/mailchimp-bundle.svg)](https://packagist.org/packages/welp/mailchimp-bundle)\n[![Packagist](https://img.shields.io/packagist/dt/welp/mailchimp-bundle.svg)](https://packagist.org/packages/welp/mailchimp-bundle)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/welpdev/mailchimp-bundle/master/LICENSE.md)\n[![Documentation](https://img.shields.io/badge/documentation-gh--pages-blue.svg)](https://welpdev.github.io/mailchimp-bundle/)\n\nThis bundle will help you synchronise your project's newsletter subscribers into MailChimp throught MailChimp API V3.\n\n## Features\n\n* [x] Use your own userProvider (basic `FosSubscriberProvider` included to interface with FosUserBundle)\n* [x] Use your own listProvider (`DoctrineListProvider` included to retrieve your list from a database)\n* [x] Synchronize Merge Fields with your config\n* [x] Synchronize your subscriber with a List\n* [x] Use lifecycle event to subscribe/unsubscribe/delete subscriber from a List\n* [x] Retrieve [MailChimp Object](https://github.com/drewm/mailchimp-api) to make custom MailChimp API V3 requests\n* [x] Register Webhooks\n\n## Setup\n\nAdd bundle to your project:\n\n```bash\ncomposer require welp/mailchimp-bundle\n```\n\nAdd `Welp\\MailchimpBundle\\WelpMailchimpBundle` to your `AppKernel.php`:\n\n```php\n$bundles = [\n    // ...\n    new Welp\\MailchimpBundle\\WelpMailchimpBundle(),\n];\n```\n\n## Minimal Configuration\n\nIn your `config.yml`:\n\n```yaml\nwelp_mailchimp:\n    api_key: YOURMAILCHIMPAPIKEY\n```\n\nMore configuration on the [documentation](https://welpdev.github.io/mailchimp-bundle/configuration/).\n\n## Full Documentation\n\nLook at the full documentation at \u003chttps://welpdev.github.io/mailchimp-bundle/\u003e\n\n* Setup\n* Configuration\n* Subscriber Provider\n* List Provider\n* Usage\n    * Synchronize merge fields\n    * Full synchronization with command\n    * Unit synchronization with events\n        * Subscribe new User\n        * Unsubscribe a User\n        * Update a User\n        * Change User's email address (WORKAROUND)\n        * Delete a User\n    * Retrieve [MailChimp Object](https://github.com/drewm/mailchimp-api) to make custom MailChimp API V3 requests\n* Webhook\n    * Update User when subscribe/unsubscribe\n\n## Contributing\n\nIf you want to contribute to this project, look at [over here](CONTRIBUTING.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwelpdev%2Fmailchimp-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwelpdev%2Fmailchimp-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwelpdev%2Fmailchimp-bundle/lists"}