Download the PHP package rbnvrw/pico-load-plugins-composer without Composer
On this page you can find all versions of the php package rbnvrw/pico-load-plugins-composer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download rbnvrw/pico-load-plugins-composer
More information about rbnvrw/pico-load-plugins-composer
Files in rbnvrw/pico-load-plugins-composer
Download rbnvrw/pico-load-plugins-composer
More information about rbnvrw/pico-load-plugins-composer
Files in rbnvrw/pico-load-plugins-composer
Vendor rbnvrw
Package pico-load-plugins-composer
Short Description Automatically load Pico plugins from the Composer vendor directory.
License MIT
Homepage http://rubenverweij.nl/
Package pico-load-plugins-composer
Short Description Automatically load Pico plugins from the Composer vendor directory.
License MIT
Homepage http://rubenverweij.nl/
Please rate this library. Is it a good library?
Informations about the package pico-load-plugins-composer
pico-load-plugins-composer
Automatically load Pico plugins from the Composer vendor
directory. This avoids unneccesary cluttering of the plugins
directory and loads the plugins via a helper plugin based on your config settings.
Step 1: add this repository to your composer.json
"repositories": [
{
"type": "vcs",
"url": "https://github.com/rbnvrw/pico-load-plugins-composer"
}
],
"require": {
"rbnvrw/pico-load-plugins-composer": "dev-master"
}
Save the file and run composer update
.
Step 2: add a loader file to the plugins directory
For this plugin to work, add a file pico_load_plugins_composer.php
to the plugins
directory with the following contents:
<?php
include_once(ROOT_DIR.'vendor/rbnvrw/pico-load-plugins-composer/pico_load_plugins_composer.php');
This will load the plugin, which in turn will load other plugins from the Composer vendor
directory.
Step 3: edit the config.php
file to add plugins
$config['composer_plugins'] = array(
// Path to vendor directory relative to the Pico root directory
// Default: vendor
'path' => 'vendor',
// List of all the plugins you'd like to add
'plugins' => array(
array(
// Name of the class
'name' => 'adv_meta',
// Name of the repository
'repository' => 'adv-meta',
// Author
'author' => 'rbnvrw'
),
array(
'name' => 'pico_multilanguage',
'repository' => 'pico_multilanguage',
'author' => 'rbnvrw'
),
array(
'name' => 'pico_placing',
'repository' => 'Pico-Placing',
'author' => 'rbnvrw'
)
)
);
All versions of pico-load-plugins-composer with dependencies
PHP Build Version
Package Version
No informations.
The package rbnvrw/pico-load-plugins-composer contains the following files
Loading the files please wait ....