PHPackages                             felipelavinz/queulat - 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. felipelavinz/queulat

Abandoned → [bloom-ux/queulat](/?search=bloom-ux%2Fqueulat)ArchivedWordpress-muplugin

felipelavinz/queulat
====================

Developers toolset for WordPress

51.2k7PHP

Since Nov 30Pushed 1y ago1 watchersCompare

[ Source](https://github.com/felipelavinz/queulat)[ Packagist](https://packagist.org/packages/felipelavinz/queulat)[ RSS](/packages/felipelavinz-queulat/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

Installation
============

[](#installation)

Install with [Composer](https://getcomposer.org/):

`composer require felipelavinz/queulat:dev-master`

Composer will install on `wp-content/mu-plugins/queulat`

If you need to install on a different folder, you should add something like this to your project's composer.json:

```
{
	"extra" : {
		"installer-paths" : {
			"htdocs/wp-content/mu-plugins/{$name}" : ["type:wordpress-muplugin"]
		}
	}
}
```

Where `htdocs/wp-content/mu-plugins/{$name}` it's the path to your mu-plugins directory. Queulat will be installed as a sub-folder on the specified folder.

Loading Queulat as mu-plugin
----------------------------

[](#loading-queulat-as-mu-plugin)

Queulat uses the Composer autoloader to lazy-load most of its code, so you need to make sure that the autoloader is included before initializing Queulat.

Also, since mu-plugins installed on a sub-folder are not automatically loaded by WordPress you must manually require the main file.

You can solve this with a single file on the mu-plugins folder, such as:

```
