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

ActiveComposer-plugin

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

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

4.0.2(1mo ago)327.2k↓35.4%[1 issues](https://github.com/eliashaeussler/typo3-vendor-bundler/issues)5GPL-3.0-or-laterPHPPHP ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0CI passing

Since Jun 19Pushed 1mo 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 1mo ago

READMEChangelog (10)Dependencies (44)Versions (20)Used By (5)

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

[](#typo3-vendor-bundler)

[![Coverage](https://camo.githubusercontent.com/3ff3b4f24e37ec21bb345665029ab9783403f86ea8b3d4d41bece1d631cd40d1/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c73436f7665726167652f6769746875622f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65723f6c6f676f3d636f766572616c6c73)](https://coveralls.io/github/eliashaeussler/typo3-vendor-bundler)[![CGL](https://camo.githubusercontent.com/3b0d1da8038b7ccfed818fccc1cf721ae1c07adbba731cbb68ae086cc1faed06/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65722f63676c2e79616d6c3f6c6162656c3d63676c266c6f676f3d676974687562)](https://github.com/eliashaeussler/typo3-vendor-bundler/actions/workflows/cgl.yaml)[![Tests](https://camo.githubusercontent.com/5fefe4fa565abdf41f094783891f027b6fc03062fce99a31637eba6574407049/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f656c6961736861657573736c65722f7479706f332d76656e646f722d62756e646c65722f74657374732e79616d6c3f6c6162656c3d7465737473266c6f676f3d676974687562)](https://github.com/eliashaeussler/typo3-vendor-bundler/actions/workflows/tests.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

51

—

FairBetter than 96% of packages

Maintenance82

Actively maintained with recent releases

Popularity32

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 51.2% 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 ~18 days

Total

16

Last Release

57d 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://www.gravatar.com/avatar/144cefe55242b883c87cb537463f3ba75a0f8198fc5b602b50c838aae31fe7ee?d=identicon)[eliashaeussler](/maintainers/eliashaeussler)

---

Top Contributors

[![eliashaeussler](https://avatars.githubusercontent.com/u/16313625?v=4)](https://github.com/eliashaeussler "eliashaeussler (153 commits)")[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (146 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

[simplesamlphp/simplesamlphp

A PHP implementation of a SAML 2.0 service provider and identity provider.

1.1k12.4M193](/packages/simplesamlphp-simplesamlphp)[drupal/core

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

19562.3M1.3k](/packages/drupal-core)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)

PHPackages © 2026

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