PHPackages                             rosgear/ge-composer-plugin - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. rosgear/ge-composer-plugin

ActiveComposer-plugin[Utility &amp; Helpers](/categories/utility)

rosgear/ge-composer-plugin
==========================

Composer plugin for installing components, themes and libraries of the RosGear web application

1.0(1mo ago)00BSD-3-ClausePHP

Since Jun 24Pushed 2w agoCompare

[ Source](https://github.com/rosgear/ge2-composer-plugin)[ Packagist](https://packagist.org/packages/rosgear/ge-composer-plugin)[ Docs](https://rosgear.ru/component/ge-composer-plugin/)[ RSS](/packages/rosgear-ge-composer-plugin/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

[Русский](#%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9) | [English](#english)

---

[![Latest Stable Version](https://camo.githubusercontent.com/25654e8969df75372d44a49a640ea71cc6a47f84504ac1f4fa9fd8d4e31c857a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726f73676561722f67652d636f6d706f7365722d706c7567696e2e737667)](https://packagist.org/packages/rosgear/ge-composer-plugin)[![Total Downloads](https://camo.githubusercontent.com/90b67d4525072db4f60f3e7bc138cb82208cef477238c5bb548a472418d41dc7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726f73676561722f67652d636f6d706f7365722d706c7567696e2e737667)](https://packagist.org/packages/rosgear/ge-composer-plugin)[![Source Code](https://camo.githubusercontent.com/38855356858572ad5299fd67a5400823087cae95c450fb04a7d11c3ced55b6cb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736f757263652d726f73676561722f67652d2d636f6d706f7365722d2d706c7567696e2d626c75652e737667)](https://github.com/rosgear/ge-composer-plugin)[![Software License](https://camo.githubusercontent.com/0129fff8055d485d5ceee6caf6f169413d9023598c999f556519840face5164d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d425344253230332d2d436c617573652532304c6963656e73652d627269676874677265656e2e737667)](https://github.com/rosgear/ge-composer-plugin/blob/master/LICENSE)[![php 8.2+](https://camo.githubusercontent.com/b9650bc67fbe9468d5b9a9c0e738f8a492d477c26dd975407624353da58cbaf9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d6d696e253230382e322d7265642e737667)](https://camo.githubusercontent.com/b9650bc67fbe9468d5b9a9c0e738f8a492d477c26dd975407624353da58cbaf9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d6d696e253230382e322d7265642e737667)

Плагин Composer
---------------

[](#плагин-composer)

Плагин Composer служит для установки ресурсов веб‑приложения RosGear — в том числе компонентов, тем и библиотек.

Чтобы установить ресурс, вам нужно добавить атрибут **"type"** в ваш файл `composer.json` и присвоить ему соответствующие значение, а в разделе **"extra"** указать дополнительные настройки.

Для установки ресурсов, таких как:

- **компоненты** (модули, расширения модулей, виджеты и плагины), необходимо указать `"type" : "component"`.

В разделе **"extra"** вы можете дополнительно добавить путь установки или идентификатор компонента, например:

```
{"extra" : {"ge": {"path": "/your-name/component-dir"} } }

```

или

```
{"extra" : {"ge": {"id": "component.id", "vendor": "your-name"} } }

```

- **темы**, необходимо указать `"type" : "theme"`.

В разделе **"extra"** вы можете дополнительно добавить тип и название темы, например:

```
{"extra" : {"ge": {"type": "frontend", "name": "theme-name"} } }

```

или

```
{"extra" : {"ge": {"type": "backend", "name": "theme-name"} } }

```

- **пакеты компонентов или библиотеки Ge Framework**, необходимо указать `"type" : "ge"`.

В разделе **"extra"** вы можете дополнительно добавить путь установки, например:

```
{"extra" : {"ge": {"path": "/public/vendors/ge/panel"} } }

```

- **сторонние библиотеки** (библиотеки других разработчиков), необходимо указать `"type" : "library"`.

В разделе **"extra"** вы можете дополнительно добавить название библиотеки или локальный путь относительно проекта, например:

```
{"extra" : {"ge": {"path": "/vendor/library-dir"} } }

```

или

```
{"extra" : {"ge": {"name": "library-name"} } }

```

- **локализации**, необходимо указать `"type" : "lang"`;
- **файлы и папки** редакции веб-приложения RosGear, необходимо указать `"type": "skeleton"`.

В раздел **"require"** необходимо добавить `"rosgear/ge-composer-plugin": "*"`, а в файле проекта `composer.json` указать:

```
{
    ...,
    "config": {
        "allow-plugins": {
            "rosgear/ge-composer-plugin": true
        }
    }
}

```

Composer plugin
---------------

[](#composer-plugin)

The Composer plugin is used to install RosGear web application resources, including components, themes, and libraries.

To install a resource, you need to add the **"type"** attribute to your `composer.json` file and assign it the appropriate value, and specify additional settings in the **"extra"** section.

To install resources such as:

- **components** (modules, module extensions, widgets, and plugins), must be specified `"type" : "component"`.

In the **"extra"** section you can optionally specify the installation path or component ID, for example:

```
{"extra" : {"ge": {"path": "/your-name/component-dir"} } }

```

or

```
{"extra" : {"ge": {"id": "component.id", "vendor": "your-name"} } }

```

- **themes**, must be specified `"type" : "theme"`.

In the **"extra"** section you can additionally specify the type and name of the theme, for example:

```
{"extra" : {"ge": {"type": "frontend", "name": "theme-name"} } }

```

or

```
{"extra" : {"ge": {"type": "backend", "name": "theme-name"} } }

```

- **Ge Framework component packages or libraries**, must be specified `"type" : "ge"`.

In the **"extra"** section you can additionally specify the installation path, for example:

```
{"extra" : {"ge": {"path": "/public/vendors/ge/panel"} } }

```

- **third-party libraries** (libraries from other developers), must be specified `"type" : "library"`.

In the **"extra"** section you can optionally specify the library name or local path relative to the project, for example:

```
{"extra" : {"ge": {"path": "/vendor/library-dir"} } }

```

or

```
{"extra" : {"ge": {"name": "library-name"} } }

```

- **localization**, must be specified `"type" : "lang"`;
- RosGear web application edition **files and folders**, must be specified `"type": "skeleton"`.

In the **"require"** section you need to add `"rosgear/ge-composer-plugin": "*"`, and in the project file `composer.json` specify:

```
{
    ...,
    "config": {
        "allow-plugins": {
            "rosgear/ge-composer-plugin": true
        }
    }
}

```

###  Health Score

34

—

LowBetter than 74% of packages

Maintenance94

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

46d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/da606e9ab44bbc24872d12cbb07126db07bddd2efa693614484e2936467628e2?d=identicon)[antonius-ti](/maintainers/antonius-ti)

---

Top Contributors

[![antonius-ti](https://avatars.githubusercontent.com/u/287449617?v=4)](https://github.com/antonius-ti "antonius-ti (11 commits)")

---

Tags

plugincomposerrosgear

### Embed Badge

![Health badge](/badges/rosgear-ge-composer-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/rosgear-ge-composer-plugin/health.svg)](https://phpackages.com/packages/rosgear-ge-composer-plugin)
```

###  Alternatives

[vaimo/composer-patches

Applies a patch from a local or remote file to any package that is part of a given composer project. Patches can be defined both on project and on package level. Optional support for patch versioning, sequencing, custom patch applier configuration and patch command for testing/troubleshooting added patches.

3044.7M28](/packages/vaimo-composer-patches)[altis/local-server

Local Server module for Altis

18225.6k4](/packages/altis-local-server)[automattic/jetpack-autoloader

Creates a custom autoloader for a plugin or theme.

566.3M160](/packages/automattic-jetpack-autoloader)[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103574.3k64](/packages/friendsoftypo3-content-blocks)

PHPackages © 2026

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