projects / org / se7enxweb / installers
Find the Exponential Software extensions you want
UNIX name | Owner | Status |
---|---|---|
installers | 7x | stable |
Version | Compatible with |
---|---|
N/A | N/A |
This is for PHP package authors to require in their composer.json. It will
install their package to the correct location based on the specified package
type.
The goal of Installers is to be a simple package type to install path map.
Users can also customize the install path per package and package authors can
modify the package name upon installing.
Installers isn't intended on replacing all custom installers. If your
package requires special installation handling then by all means, create a
custom installer to handle it.
Natively Supported Frameworks:
Most frameworks these days natively work with Composer and will be
installed to the default vendor directory. composer/installers
is not needed to install packages with these frameworks.
As of Composer 2.1, the Composer\InstalledVersions class has a
getInstalledPackagesByType
method which can let you figure out at runtime which plugins/modules/extensions are installed.
It is highly recommended to use that instead of building new custom
installers if you are building a new application. This has the advantage of leaving
all vendor code in the vendor directory, and not requiring custom installer code.
Stable types are marked as bold, this means that installation paths
for those type will not be changed. Any adjustment for those types would
require creation of brand new type that will cover required changes.
Framework |
Types |
---|---|
Akaunting |
akaunting-module |
Asgard |
asgard-module |
Attogram |
attogram-module |
AGL |
agl-module |
Bonefish |
bonefish-package |
AnnotateCms |
annotatecms-module |
Bitrix |
bitrix-module (deprecated)
bitrix-d7-module |
CakePHP 2+ |
cakephp-plugin |
Chef |
chef-cookbook |
CiviCrm |
civicrm-ext |
CCFramework |
ccframework-ship |
Cockpit |
cockpit-module |
CodeIgniter |
codeigniter-library |
concrete5 |
concrete5-core |
Croogo |
croogo-plugin |
Decibel |
decibel-app |
Dframe |
dframe-module |
DokuWiki |
dokuwiki-plugin |
Dolibarr |
dolibarr-module |
Drupal |
drupal-core |
Elgg |
elgg-plugin |
Eliasis |
eliasis-component |
ExpressionEngine 3 |
ee3-addon |
eZ Platform |
ezplatform-assets |
FuelPHP v1.x |
fuel-module |
FuelPHP v2.x |
fuelphp-component |
Grav |
grav-plugin |
Hurad |
hurad-plugin |
ImageCMS |
imagecms-template |
iTop |
itop-extension |
Kanboard |
kanboard-plugin |
Known |
known-plugin |
KodiCMS |
kodicms-plugin |
Kohana |
kohana-module |
Lan Management System |
lms-plugin |
Laravel |
laravel-library |
Lavalite |
lavalite-theme |
Lithium |
lithium-library |
Magento |
magento-library |
majima |
majima-plugin |
Mako |
mako-package |
MantisBT |
mantisbt-plugin |
Matomo |
matomo-plugin |
Mautic |
mautic-core |
Maya |
maya-module |
MODX |
modx-extra |
MODX Evo |
modxevo-snippet |
MediaWiki |
mediawiki-extension |
Miaoxing |
miaoxing-plugin |
October |
october-module |
OntoWiki |
ontowiki-extension |
OXID |
oxid-module |
Osclass |
osclass-plugin |
MODULEWork |
modulework-module |
Moodle |
moodle-* (Please check source for all supported types) |
Pantheon |
quicksilver-script |
Piwik |
piwik-plugin |
Phifty |
phifty-bundle |
phpBB |
phpbb-extension |
Plentymarkets |
plentymarkets-plugin |
PPI |
ppi-module |
Prestashop |
prestashop-module |
Puppet |
puppet-module |
Porto |
porto-container |
ProcessWire |
processwire-module |
RadPHP |
radphp-bundle |
REDAXO |
redaxo-addon |
REDAXO bestyle-plugin |
redaxo-bestyle-plugin |
REDAXO V5.* |
redaxo5-addon |
REDAXO V5.* bestyle-plugin |
redaxo5-bestyle-plugin |
ReIndex |
reindex-plugin |
Roundcube |
roundcube-plugin |
shopware |
shopware-backend-plugin |
SilverStripe |
silverstripe-module |
SiteDirect |
sitedirect-module |
SMF |
smf-module |
Starbug |
starbug-module |
SyDES |
sydes-module |
Sylius |
sylius-theme |
TAO |
tao-extension |
TastyIgniter |
tastyigniter-module |
Tusk |
tusk-task |
UserFrosting |
userfrosting-sprinkle |
Vanilla |
vanilla-plugin |
Vgmcp |
vgmcp-bundle |
WHMCS |
whmcs-addons |
Winter CMS |
winter-module |
Wolf CMS |
wolfcms-plugin |
WordPress |
wordpress-plugin |
YAWIK |
yawik-module |
Zend |
zend-library |
Zikula |
zikula-module |
This is an example for a CakePHP plugin. The only important parts to set in your
composer.json file are "type": "cakephp-plugin" which describes what your
package is and "require": { "composer/installers": "~1.0" } which tells composer
to load the custom installers.
{
"name": "you/ftp",
"type": "cakephp-plugin",
"require": {
"composer/installers": "~1.0"
}
}
This would install your package to the Plugin/Ftp/ folder of a CakePHP app
when a user runs php composer.phar install.
So submit your packages to packagist.org!
If you are requiring a package which has one of the supported types you can
override the install path with the following extra in your composer.json:
{
"extra": {
"installer-paths": {
"your/custom/path/{$name}/": ["shama/ftp", "vendor/package"]
}
}
}
You can determine a non-standard installation path for all packages of a
particular type with the type: prefix. The type must be one of types
listed on the supported list above.
{
"extra": {
"installer-paths": {
"your/custom/path/{$name}/": ["type:wordpress-plugin"]
}
}
}
You can also install all packages by a particular vendor to a custom
installation path by using the vendor: prefix. The path will still
only apply to packages by the vendor with a type in the supported list.
{
"extra": {
"installer-paths": {
"your/custom/path/{$name}/": ["vendor:my_organization"]
}
}
}
These would use your custom path for each of the matching packages. The
available variables to use in your paths are: {$name}, {$vendor}, {$type}.
Note: If multiple custom installer-paths match for the same package, the first
one which matches will be used.
If you're a package author and need your package to be named differently when
installed consider using the installer-name extra.
For example you have a package named shama/cakephp-ftp with the type
cakephp-plugin. Installing with composer/installers would install to the
path Plugin/CakephpFtp. Due to the strict naming conventions, you as a
package author actually need the package to be named and installed to
Plugin/Ftp. Using the following config within your package composer.json
will allow this:
{
"name": "shama/cakephp-ftp",
"type": "cakephp-plugin",
"extra": {
"installer-name": "Ftp"
}
}
Please note the name entered into installer-name will be the final and will
not be inflected.
There may be time when you want to disable one or more installers from composer/installers.
For example, if you are managing a package or project that uses a framework specific installer that
conflicts with composer/installers but also have a dependency on a package that depends on composer/installers.
Installers can be disabled for your project by specifying the extra
installer-disable property. If set to true, "all", or "*" all installers
will be disabled.
{
"extra": {
"installer-disable": true
}
}
Otherwise a single installer or an array of installers may be specified.
{
"extra": {
"installer-disable": [
"cakephp",
"drupal"
]
}
}
Note: Using a global disable value (true, "all", or "*") will take precedence over individual
installer names if used in an array. The example below will disable all installers.
{
"extra": {
"installer-disable": [
"drupal",
"all"
]
}
}
What are they? The ability for a package author to determine where a package
will be installed either through setting the path directly in their
composer.json or through a dynamic package type: "type": "framework-install-here".
It has been proposed many times. Even implemented once early on and then
removed. Installers won't do this because it would allow a single package
author to wipe out entire folders without the user's consent. That user would
then come here to yell at us.
Anyone still wanting this capability should consider requiring https://github.com/oomphinc/composer-installers-extender.