PHPackages                             eliashaeussler/typo3-vendor-bundler - 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. eliashaeussler/typo3-vendor-bundler

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

eliashaeussler/typo3-vendor-bundler
===================================

Composer plugin to bundle vendor libraries for TYPO3 extensions in classic mode

4.0.3(3w ago)451.0k↓14.4%[1 issues](https://github.com/eliashaeussler/typo3-vendor-bundler/issues)8GPL-3.0-or-laterPHPPHP ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0CI passing

Since Jun 19Pushed 2w ago1 watchersCompare

[ Source](https://github.com/eliashaeussler/typo3-vendor-bundler)[ Packagist](https://packagist.org/packages/eliashaeussler/typo3-vendor-bundler)[ RSS](/packages/eliashaeussler-typo3-vendor-bundler/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (10)Dependencies (65)Versions (27)Used By (8)

TYPO3 Vendor Bundler
====================

[](#typo3-vendor-bundler)

[![Coverage](https://camo.githubusercontent.com/3ff3b4f24e37ec21bb345665029ab9783403f86ea8b3d4d41bece1d631cd40d1/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c73436f7665726167652f6769746875622f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65723f6c6f676f3d636f766572616c6c73)](https://coveralls.io/github/eliashaeussler/typo3-vendor-bundler)[![CI](https://camo.githubusercontent.com/0644fde654639537497931d5634fe09b7e1bc7e8d7c83c688604a159badd87bc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65722f63692e79616d6c3f6c6162656c3d4349266c6f676f3d676974687562)](https://github.com/eliashaeussler/typo3-vendor-bundler/actions/workflows/ci.yaml)[![Supported PHP Versions](https://camo.githubusercontent.com/6b245b7176a03d9200276af2cb89ffd86af4833f025d68d59afd2797ad100f4f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646570656e64656e63792d762f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65722f7068703f6c6f676f3d706870)](https://packagist.org/packages/eliashaeussler/typo3-vendor-bundler)

A Composer plugin to bundle vendor libraries of TYPO3 extensions for use in [classic mode](https://docs.typo3.org/permalink/t3coreapi:classic-directory-structure). It allows to easily prepare dependencies, which are not part of TYPO3's bundled dependencies, in order to make TYPO3 extensions fully usable in classic mode installations.

🚀 Features
----------

[](#-features)

- [**Autoload bundler**](docs/bundlers/autoload.md): Bundles autoload information from vendor libraries in root `composer.json` file. This enables deep integration of vendor libraries directly into TYPO3, e.g. for use with dependency injection.
- [**Dependency bundler**](docs/bundlers/dependencies.md): Bundles dependency information of shipped vendor libraries. Uses the standardized [CycloneDX](https://cyclonedx.org/) format to generate a [Software Bill of Materials (SBOM)](https://en.wikipedia.org/wiki/Software_supply_chain).
- [**Automatic dependency extraction**](docs/extract.md): Allows to automatically extract used vendor libraries from the root `composer.json` file of an extension.
- [**Various configuration options**](docs/config-file.md): Provides an extensive configuration system, which allows to customize several parts of the bundling system.
- **Composer integration**: Built as Composer plugin, the package provides a smooth integration in your Composer workflow. Bundlers can be executed directly by using dedicated Composer commands, e.g. `composer bundle` to execute all available bundlers.

🔥 Installation
--------------

[](#-installation)

[![Packagist](https://camo.githubusercontent.com/b34fd3106f6ea17438fd4aef74963878ba8c13c412d002fc9ee6fb01da002ade/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65723f6c6162656c3d76657273696f6e266c6f676f3d7061636b6167697374)](https://packagist.org/packages/eliashaeussler/typo3-vendor-bundler)[![Packagist Downloads](https://camo.githubusercontent.com/f3a7b5948d456dea4fd188862a365ba2847939c10e20cb19be40496767949c29/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65723f636f6c6f723d627269676874677265656e)](https://packagist.org/packages/eliashaeussler/typo3-vendor-bundler)

```
composer require --dev eliashaeussler/typo3-vendor-bundler
```

⚡ Quickstart
------------

[](#-quickstart)

Execute the main bundler:

```
composer bundle
```

You can also execute a single bundler. Read more about [available bundlers](docs/bundlers/index.md).

### Custom configuration

[](#custom-configuration)

The default configuration should be sufficient in most cases. If necessary, a [config file](docs/config-file.md) such as `typo3-vendor-bundler.yaml` can be created to customize individual configuration settings.

Tip

You can use the [`composer validate-bundler-config`](docs/cli.md#validate-bundler-config) command to validate your config file.

📝 Documentation
---------------

[](#-documentation)

- Features
    - [Bundlers](docs/bundlers/index.md)
        - [Autoload bundler](docs/bundlers/autoload.md)
        - [Dependency bundler](docs/bundlers/dependencies.md)
    - [Automatic dependency extraction](docs/extract.md)
- Usage
    - [Console commands](docs/cli.md)
    - [Continuous Integration](docs/ci.md)
    - [PHP API](docs/api.md)
- Configuration
    - [Config file](docs/config-file.md)
    - [Schema](docs/schema.md)

🧑‍💻 Contributing
----------------

[](#‍-contributing)

Please have a look at [`CONTRIBUTING.md`](CONTRIBUTING.md).

⭐ License
---------

[](#-license)

This project is licensed under [GNU General Public License 3.0 (or later)](LICENSE).

###  Health Score

55

—

FairBetter than 97% of packages

Maintenance91

Actively maintained with recent releases

Popularity34

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 53.1% 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

Every ~22 days

Recently: every ~34 days

Total

17

Last Release

22d ago

Major Versions

1.1.0 → 2.0.02025-07-18

2.3.0 → 3.0.02025-12-29

3.1.1 → 4.0.02026-02-22

PHP version history (2 changes)1.0.0PHP ~8.2.0 || ~8.3.0 || ~8.4.0

2.1.0PHP ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16313625?v=4)[Elias Häußler](/maintainers/eliashaeussler)[@eliashaeussler](https://github.com/eliashaeussler)

---

Top Contributors

[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (200 commits)")[![eliashaeussler](https://avatars.githubusercontent.com/u/16313625?v=4)](https://github.com/eliashaeussler "eliashaeussler (177 commits)")

---

Tags

bundlercomposer-pluginextensionlibrariestypo3vendor

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/eliashaeussler-typo3-vendor-bundler/health.svg)

```
[![Health](https://phpackages.com/badges/eliashaeussler-typo3-vendor-bundler/health.svg)](https://phpackages.com/packages/eliashaeussler-typo3-vendor-bundler)
```

###  Alternatives

[friendsoftypo3/content-blocks

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

103519.9k53](/packages/friendsoftypo3-content-blocks)[phpro/grumphp

A composer plugin that enables source code quality checks.

4.3k16.7M1.0k](/packages/phpro-grumphp)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

21866.0M1.7k](/packages/drupal-core)[oro/platform

Business Application Platform (BAP)

645143.5k115](/packages/oro-platform)[drupal/core-recommended

Locked core dependencies; require this project INSTEAD OF drupal/core.

6942.5M421](/packages/drupal-core-recommended)[phpactor/phpactor

PHP refactoring and intellisense tool for text editors

1.9k17.1k1](/packages/phpactor-phpactor)

PHPackages © 2026

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