Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[![Hire Typist Tech](https://img.shields.io/badge/Hire-Typist%20Tech-778899)](https://typist.tech/contact/)

<p>
<strong>Composer plugin to mark package as abandoned if closed on WordPress.org</strong>
<strong>Composer plugin to mark packages as abandoned if closed on WordPress.org</strong>
<br>
<br>
Built with ♥ by <a href="https://typist.tech/">Typist Tech</a>
Expand Down Expand Up @@ -47,7 +47,7 @@ Attention: This package is abandoned and no longer maintained.
```

```console
# The following commands show the same abandonment notice.
# The following commands show the same abandonment warning.
$ composer require
$ composer install
$ composer update
Expand Down Expand Up @@ -151,6 +151,16 @@ Skipped checking for closed plugins because of --locked.

You should run `composer audit` without `--locked` to check for closed plugins.

### Cache

WordPress.org API responses are cached for 10 minutes.

If you must clear the cache, delete the `<composer-cache-dir>/wp-org-closed-plugin` directory.

```sh
rm -rf $(composer config cache-dir)/wp-org-closed-plugin
```

> [!TIP]
> **Hire Tang Rufus!**
>
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typisttech/wp-org-closed-plugin",
"description": "Composer plugin to mark package as abandoned if closed on WordPress.org",
"description": "Composer plugin to mark packages as abandoned if closed on WordPress.org",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
Expand Down
Loading