From f4f09d315217bd07263714bbe0783c49bb19cc8d Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 8 Aug 2024 12:10:10 -0600 Subject: [PATCH] remove extraneous composer repository config from example (#9159) --- .../content/addons/object-cache/howto/wordpress.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/source/content/addons/object-cache/howto/wordpress.md b/source/content/addons/object-cache/howto/wordpress.md index 4077cdb38f..eb2c526bf1 100644 --- a/source/content/addons/object-cache/howto/wordpress.md +++ b/source/content/addons/object-cache/howto/wordpress.md @@ -152,25 +152,13 @@ Refer to the [official Object Cache Pro documentation](https://objectcache.pro/d git add auth.json && git commit -m "Add Object Cache Pro auth token." ``` -1. Add the Object Cache Pro repository to your `composer.json` file's `repositories` section. Your final `repositories` section should look something like this: +1. Add the Object Cache Pro repository to your `composer.json` file's `repositories` section. ```json repositories: [ { "type": "composer", "url": "https://objectcache.pro/repo/" - }, - { - "type": "composer", - "url": "https://wpackagist.org", - "only": [ - "wpackagist-plugin/*", - "wpackagist-theme/*" - ] - }, - { - "type": "path", - "url": "upstream-configuration" } ], ```