PHPackages                             deliciousmedia/quickrest - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. deliciousmedia/quickrest

ActiveWordpress-muplugin[API Development](/categories/api)

deliciousmedia/quickrest
========================

QuickREST - a WordPress plugin which speeds up REST API requests by selective loading of plugins.

2.1.2(2y ago)231.0k4GPL-3.0-or-laterPHPPHP &gt;=7.0

Since Aug 22Pushed 2y ago3 watchersCompare

[ Source](https://github.com/DeliciousMedia/quickrest)[ Packagist](https://packagist.org/packages/deliciousmedia/quickrest)[ Docs](https://github.com/DeliciousMedia/quickrest)[ RSS](/packages/deliciousmedia-quickrest/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (1)Versions (6)Used By (0)

QuickREST
=========

[](#quickrest)

A WordPress plugin which speeds up REST API requests by selective loading of plugins.

Installation
------------

[](#installation)

QuickRest needs to be installed as a Must Use plugin.

Install via Composer (`composer require deliciousmedia/quickrest`), or just clone/copy the files to your mu-plugins folder.

Usage
-----

[](#usage)

By default, the plugin will prevent any regular WordPress plugins from loading when a request is made to any REST API endpoint.

Plugins can be enabled on a per-namespace basis by filtering `quickrest_plugin_map`, for example:

```
function my_plugin_map_function( $map ) {
  $new_map = [
    'someplugin' => [ 'some-plugin/some-plugin.php' ],
    'wp'         => [ 'plugin-one/plugin-one.php', 'plugin-two/plugin-two.php' ]
   ];
  return array_merge_recursive( $map, $new_map );
}
add_filter( 'quickrest_plugin_map', 'my_plugin_map_function', 15, 1 );

```

If nothing exists within the array for the current namespace, the plugin will fallback to the `_default` element which you can choose to enable.

If you want the default (or any other plugin) to load all active plugins, you can do this:

```
add_filter(
  'quickrest_plugin_map',
  function( $map ) {
    // Remove our filter so we don't get stuck in a loop when getting the active_plugins option.
    remove_filter( 'option_active_plugins', 'quickrest_filter_plugins', PHP_INT_MAX - 1 );
    $new_map = [
      '_default' => get_option( 'active_plugins' ),
    ];
    add_filter( 'option_active_plugins', 'quickrest_filter_plugins', PHP_INT_MAX - 1 );
    return array_merge_recursive( $map, $new_map );
  },
  10,
  1
);

```

---

Built by the team at [Delicious Media](https://www.deliciousmedia.co.uk/), a specialist WordPress development agency based in Sheffield, UK.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~533 days

Total

4

Last Release

860d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b67aeea9b2d5c1d479d3890134793a0669313dbe07d88e74dc4e77fc4f22a508?d=identicon)[davepullig](/maintainers/davepullig)

---

Top Contributors

[![davepullig](https://avatars.githubusercontent.com/u/5207810?v=4)](https://github.com/davepullig "davepullig (10 commits)")

### Embed Badge

![Health badge](/badges/deliciousmedia-quickrest/health.svg)

```
[![Health](https://phpackages.com/badges/deliciousmedia-quickrest/health.svg)](https://phpackages.com/packages/deliciousmedia-quickrest)
```

###  Alternatives

[sybrew/the-seo-framework

An automated, advanced, accessible, unbranded and extremely fast SEO solution for any WordPress website.

47078.8k](/packages/sybrew-the-seo-framework)[a2design-company/mandrill-cakephp-plugin

Mandrill CakePHP plugin

193.2k](/packages/a2design-company-mandrill-cakephp-plugin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
