PHPackages                             nooku/installer - 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. [Framework](/categories/framework)
4. /
5. nooku/installer

AbandonedArchivedComposer-plugin[Framework](/categories/framework)

nooku/installer
===============

A Composer plugin to install Nooku Framework into any Joomla site.

v2.0.2(10y ago)16.2k1[1 issues](https://github.com/nooku/nooku-installer/issues)4GPLv3PHP

Since Aug 28Pushed 10y ago2 watchersCompare

[ Source](https://github.com/nooku/nooku-installer)[ Packagist](https://packagist.org/packages/nooku/installer)[ Docs](https://github.com/nooku/nooku-installer)[ RSS](/packages/nooku-installer/feed)WikiDiscussions develop Synced 5d ago

READMEChangelog (10)Dependencies (1)Versions (15)Used By (4)

Nooku Composer Installer
========================

[](#nooku-composer-installer)

This Composer plugin will deal with Nooku related packages. The following package types are supported:

- [joomla-extension](#user-content-joomla-extension)
- [nooku-component](#user-content-nooku-component)
- [nooku-framework](#user-content-nooku-framework)

### Joomla Extension

[](#joomla-extension)

If you set the type of your Composer package to `joomla-extension`, this plugin will attempt to install it into your Joomla installation as a regular extension.

To make your extension installable through Composer, add a `composer.json` file with at least the following configuration values:

```
{
    "name": "vendor/com_name",
    "type": "joomla-extension",
    "require": {
        "nooku/nooku-framework": "2.*"
    }
}
```

Note: the `nooku/nooku-framework` framework requirement will also install this installer plugin. If you did not build your package on top of the [Nooku Framework](http://github.com/nooku/nooku-framework), you can simply require this plugin instead: `"nooku/installer": "1.*"`.

#### Repository layout

[](#repository-layout)

To have Composer succesfully install your extension into Joomla, you need to make sure your repository layout resembles an installable Joomla package. This means that if you were to create an archive of your repository contents, that archive can be installed using the Joomla Extension Manager.

This means that you need to add a [valid XML manifest](http://docs.joomla.org/Manifest_files) to the root directory and make sure it points to the correct paths. For a working example, you can always refer to our [todo](https://github.com/nooku/joomla-todo) example component!

#### Publishing

[](#publishing)

You can now publish your component on [Packagist](http://packagist.org) or [add your own repository](https://getcomposer.org/doc/05-repositories.md#vcs) to your Joomla's composer.json file. Your component can then be installed using the `composer install` command.

### Nooku Component

[](#nooku-component)

Use the `nooku-component` type to install your reusable Nooku components into your Joomla setup or [Nooku Platform](http://www.nooku.org/platform) application. The Composer installer will take your code and place it inside the `/vendor` directory. For Joomla versions 3.4 and up, it will install into the `/libraries/vendor` folder.

Your package's `composer.json` file should contain at least the following directives:

```
{
    "name": "vendor/name-component",
    "type": "nooku-component",
    "license": "GPLv3",
    "require": {
        "nooku/installer": "1.*"
    },
    "autoload": {
        "files": ["autoload.php"]
    }
}
```

Place this `composer.json` file in the root folder of your component's repository.

The following settings are required to make your component installable through Composer:

- The `type` directive must be set to `nooku-component`.
- You must make sure to require the `nooku/installer` package so that Composer knows how to handle your package.
- Every Nooku Component should include a `koowa-component.xml` manifest file. You can get an example from our [activities component](https://github.com/nooku/nooku-activities/blob/master/koowa-component.xml).
- You must include the `autoload` directive. You do not, however, need to include the `autoload.php` file yourself. The plugin will autogenerate it for you if it's not found in the repository.

You can now publish your component on [Packagist](http://packagist.org) or [add your own repository](https://getcomposer.org/doc/05-repositories.md#vcs) to your Joomla's composer.json file. Your component can then be installed using the `composer install` command.

### Nooku Framework

[](#nooku-framework)

This type is only meant for use by the [Nooku Framework](https://github.com/nooku/nooku-framework). This type will have Composer plugin install the framework into your Joomla setup and enable it.

To install the framework, create a composer.json manifest in your Joomla installation's root folder and add the following:

```
{
    "require": {
        "nooku/nooku-framework": "2.*"
    },
    "minimum-stability": "dev"
}
```

Now execute `composer install` to install the framework.

Requirements
------------

[](#requirements)

- [Composer](https://getcomposer.org/)
- [Joomla](http://www.joomla.org/) version 2.5.0 and up.

Contributing
------------

[](#contributing)

Nooku Installer is an open source, community-driven project. Contributions are welcome from everyone. We have [contributing guidelines](CONTRIBUTING.md) to help you get started.

Contributors
------------

[](#contributors)

See the list of [contributors](https://github.com/nooku/nooku-installer/contributors).

License
-------

[](#license)

The `nooku-installer` plugin t is free and open-source software licensed under the [GPLv3 license](gplv3-license).

Community
---------

[](#community)

Keep track of development and community news.

- Follow [@joomlatoolsdev on Twitter](https://twitter.com/joomlatoolsdev)
- Join [joomlatools/dev on Gitter](http://gitter.im/joomlatools/dev)
- Read the [Joomlatools Developer Blog](https://www.joomlatools.com/developer/blog/)
- Subscribe to the [Joomlatools Developer Newsletter](https://www.joomlatools.com/developer/newsletter/)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~24 days

Recently: every ~8 days

Total

13

Last Release

3992d ago

Major Versions

v0.2.0 → v1.0.02014-09-05

v1.0.5 → v2.0.02015-05-11

### Community

Maintainers

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

---

Top Contributors

[![stevenrombauts](https://avatars.githubusercontent.com/u/77368?v=4)](https://github.com/stevenrombauts "stevenrombauts (12 commits)")[![ercanozkaya](https://avatars.githubusercontent.com/u/90382?v=4)](https://github.com/ercanozkaya "ercanozkaya (8 commits)")[![johanjanssens](https://avatars.githubusercontent.com/u/266640?v=4)](https://github.com/johanjanssens "johanjanssens (7 commits)")

---

Tags

frameworkinstallerplatformcomponentjoomlanooku

### Embed Badge

![Health badge](/badges/nooku-installer/health.svg)

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

###  Alternatives

[joomla/application

Joomla Application Package

23404.8k11](/packages/joomla-application)[joomla/registry

Joomla Registry Package

16468.6k20](/packages/joomla-registry)[joomla/oauth2

Joomla OAuth2 Package

10303.1k2](/packages/joomla-oauth2)[caffeina-core/core

Platform for rapid application development.

355.9k6](/packages/caffeina-core-core)

PHPackages © 2026

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