{"id":25416737,"url":"https://github.com/podlove/podlove-publisher","last_synced_at":"2025-05-15T21:07:36.091Z","repository":{"id":7026766,"uuid":"8299792","full_name":"podlove/podlove-publisher","owner":"podlove","description":"Podlove Podcast Publisher for WordPress","archived":false,"fork":false,"pushed_at":"2025-05-02T02:32:25.000Z","size":32339,"stargazers_count":301,"open_issues_count":178,"forks_count":84,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-05-08T10:27:52.979Z","etag":null,"topics":["composer","javascript","php","plugin","podcast","podlove","wordpress"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/podlove-podcasting-plugin-for-wordpress/","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/podlove.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.txt","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"license.txt","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},"funding":{"open_collective":"podlove"}},"created_at":"2013-02-19T21:21:57.000Z","updated_at":"2025-05-02T02:32:29.000Z","dependencies_parsed_at":"2023-09-22T09:56:23.337Z","dependency_job_id":"2c8cbe41-ae95-4768-83a4-248f177b044d","html_url":"https://github.com/podlove/podlove-publisher","commit_stats":{"total_commits":5501,"total_committers":84,"mean_commits":65.48809523809524,"dds":"0.27231412470459915","last_synced_commit":"025fd78464241fe14962d447ca3d4e849e4f51f7"},"previous_names":[],"tags_count":497,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podlove%2Fpodlove-publisher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podlove%2Fpodlove-publisher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podlove%2Fpodlove-publisher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podlove%2Fpodlove-publisher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/podlove","download_url":"https://codeload.github.com/podlove/podlove-publisher/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254422764,"owners_count":22068678,"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":["composer","javascript","php","plugin","podcast","podlove","wordpress"],"created_at":"2025-02-16T16:56:21.957Z","updated_at":"2025-05-15T21:07:36.044Z","avatar_url":"https://github.com/podlove.png","language":"PHP","funding_links":["https://opencollective.com/podlove"],"categories":["Podcasting"],"sub_categories":[],"readme":"# Podlove Podcast Publisher\n\nThis is the podcast publishing plugin for WordPress.\n\n- [Getting Started \u0026 Documentation][6]\n- [Podlove Community][9]\n- Latest stable version: in [WordPress plugin directory][3]\n- [Podlove Project \u0026 Blog][7]\n- Report a bug: [Use GitHub Issues][5]\n\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpodlove%2Fpodlove-publisher.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpodlove%2Fpodlove-publisher?ref=badge_shield)\n\n## Development Setup\n\nPHP dependencies are managed via [Composer](http://getcomposer.org/). So you need to clone the repository and then fetch the dependencies via Composer. JavaScript packages are managed with [yarn](https://yarnpkg.com/lang/en/).\n\nClone the publisher in the `wp-content/plugins` directory.\n\n```\ngit clone --recursive https://github.com/podlove/podlove-publisher.git\ncd podlove-publisher\ncurl -sS https://getcomposer.org/installer | php\nmake install\n```\n\nIf you have a docker environment handy you can simply run:\n\n```\nmake docker-install\n```\n\n## Development\n\n### Legacy JS Development\n\n1. Change your working direcetory to `js/`\n2. Run `npm install`\n3. Run `npm run serve` to start the development build\n4. Go to your local Wordpress environment and see your changes\n\n### Client Development\n\n1. Create an [Wordpress application password](https://www.paidmembershipspro.com/create-application-password-wordpress/)\n2. Update the authorization tokens in= `client/index.html`\n3. Change your working directory to `client/`\n4. Run `npm install`\n5. For isolated development run `WORDPRESS_URL=http://podlove.local npm run dev` with your Wordpress environment\n6. For integrated development run `npm run serve` and go to your local Wordpress environment and see your changes\n\n## Formatting Code\n\nUse [PHP-CS-Fixer](https://github.com/FriendsOfPhp/PHP-CS-Fixer) to format code before committing.\n\nYou can do so manually via command line (`make format`) or configure your editor to format the file on save. For VS Code, use the \"php cs fixer\" extension by junstyle.\n\n## Releases\n\nBoth beta and stable releases are creates with GitHub Actions.\n\nTo release a new stable version:\n\n1. _manually_ update the following fields in `readme.txt`:\n  - Tested up to\n  - Stable tag\n  - check that changelog has an entry\n2. `bash bin/release.sh`, which does:\n  - updates version in `podlove.php`\n  - creates release commit\n  - tags commit\n3. git push\n\nThe GitHub action detects the release via the tag, builds it and submits it to the wordpress.org plugin directory.\n\n[3]: https://wordpress.org/plugins/podlove-podcasting-plugin-for-wordpress/\n[4]: https://trello.com/b/zB4mKQlD/podlove-publisher\n[5]: https://github.com/podlove/podlove-publisher/issues\n[6]: http://docs.podlove.org/\n[7]: http://podlove.org/\n[8]: https://github.com/podlove/podlove-publisher/releases\n[9]: https://community.podlove.org/\n\n\n## License\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fpodlove%2Fpodlove-publisher.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fpodlove%2Fpodlove-publisher?ref=badge_large)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpodlove%2Fpodlove-publisher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpodlove%2Fpodlove-publisher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpodlove%2Fpodlove-publisher/lists"}