Attention

TYPO3 v10 has reached end-of-life as of April 30th 2023 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.

Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.

composer.json

-- required

Note

While the file composer.json is currently not strictly required for an extension to function properly, it is considered bad practice not to add one. That is why we classify it as "required".

Including a composer.json is strongly recommended for a number of reasons:

  1. The file composer.json is required for documentation rendering since May 29, 2019.

    See Register for docs.typo3.org for more information on the necessary changes for extension documentation rendering.

  2. Working with Composer in general is strongly recommended for TYPO3.

    If you are not using Composer for your projects yet, see Migrate TYPO3 Project to Composer in the "Installation & Upgrade Guide".

Minimal composer.json

This is a minimal composer.json for a TYPO3 extension:

  • The vendor name is Vendorname

  • The extension key is my_extension

Subsequently:

  • The namespace will be Vendorname\MyExtension

  • The package name will be vendorname/my-extension

 1{
 2   "name": "vendorname/my-extension",
 3   "type": "typo3-cms-extension",
 4   "description": "An example extension",
 5   "license": "GPL-2.0-or-later",
 6   "require": {
 7        "typo3/cms-core": "^9.5 || ^10.4"
 8   },
 9   "autoload": {
10      "psr-4": {
11         "Vendorname\\MyExtension\\": "Classes/"
12      }
13   },
14   "extra": {
15      "typo3/cms": {
16         "extension-key": "my_extension"
17      }
18   }
19}

Extended composer.json

 1{
 2   "name": "vendorname/my-extension",
 3   "type": "typo3-cms-extension",
 4   "description": "An example extension",
 5   "license": "GPL-2.0-or-later",
 6   "require": {
 7      "php" : "^7.4",
 8      "typo3/cms-backend": "^9.5 || ^10.4",
 9      "typo3/cms-core": "^9.5 || ^10.4"
10   },
11   "authors": {
12      "name": "John Doe",
13      "role": "Developer",
14      "email": "john.doe@example.org",
15      "homepage": "johndoe.example.org"
16   },
17   "keywords": [
18      "typo3",
19      "blog"
20   ],
21   "support": {
22      "issues": "https://github.com/vendorname/my-extensions/issues"
23   },
24   "funding": {
25      "type": "other",
26      "url:" : "myfundpage.org/vendorname"
27   },
28   "autoload": {
29      "psr-4": {
30         "Vendorname\\MyExtension\\": "Classes/"
31      }
32   },
33   "require-dev": {
34      "nimut/testing-framework": "^4.2 || ^5.1"
35   },
36   "extra": {
37      "typo3/cms": {
38         "extension-key": "my_extension"
39      }
40   }
41}

Properties

name

(required)

<vendorname>/<dashed extension key> "Dashed extension key" means that every underscore (_) has been changed to a dash (-). You must be owner of the vendor name and should register it on packagist. Typically, the name will correspond to your namespaces used in the Classes folder, but with different uppercase / lowercase spelling, e.g. GeorgRinger\News namespace and georgringer/news name in composer.json.

description

(required)

Description of your extension (1 line)

type

(required)

Use typo3-cms-extension for third party extensions. This will result in the extension to be installed in {web-dir}/typo3conf/ext instead of vendor/{vendor}/{package}.

Use typo3-cms-framework for system extensions. They will be installed in web-dir/typo3/sysext.

See typo3/cms-composer-installers (required by typo3/cms-core).

license

(recommended)

Has to be GPL-2.0-only or GPL-2.0-or-later. See: https://typo3.org/project/licenses/.

require

(required)

At the least, you will want to require typo3/cms-core. You can add other system extensions and third party extensions, if your extension depends on them.

autoload

(required)

Define namespace - path mapping for PSR-4 autoloading. In TYPO3 we follow the convention that all classes (except test classes) are in the directory Classes.

extra

(required)

Not providing this property will emit a deprecation notice and will fail in future versions.

Hint

The property "extension-key" means the literal string "extension-key", not your actual extension key. The value on the right side should be your actual extension key.

Example for extension key bootstrap_package:

{
   "extra": {
      "typo3/cms": {
         "extension-key": "bootstrap_package"
      }
   }
}

Properties no longer used

version

Was used in earlier TYPO3 versions. For TYPO3 versions 7.6 and above you should not use the version property. The version for the extension is set in the file ext_emconf.php. Composer primarily takes the version information from repository tags, so the releases need to be tagged in the VCS repository with a version number.

replace with typo3-ter vendorname

{
   "replace": {
      "typo3-ter/bootstrap-package": "self.version"
   }
}

This was used previously as long as the TER Composer Repository was relevant. Since the TER Composer Repository is deprecated, the typo3-ter/* entry within replace is not required.

replace with "ext_key": "self.version"

{
   "replace": {
      "ext_key": "self.version"
   }
}

This was used previously, but is not compatible with latest Composer versions and will result in a warning using composer validate or result in an error with Composer version >=2.0:

$ Deprecation warning: replace.ext_key is invalid, it should have a vendor name, a forward slash, and a package name.
  The vendor and package name can be words separated by -, . or _. The complete name should match
  "^[a-z0-9]([_.-]?[a-z0-9]+)*/[a-z0-9](([_.]?|-{0,2})[a-z0-9]+)*$".
  Make sure you fix this as Composer 2.0 will error.

See comment on helhum/composer.json and revisions on helhum/composer.json.

More Information

Not TYPO3 specific:

TYPO3 specific:

  • The section on testing (in this manual) contains further information about adding additional properties to composer.json that are relevant for testing.

  • The Composer plugin (not extension) typo3/cms-composer-installers is responsible for TYPO3 specific Composer installation. Reading the README and source code can be helpful to understand how it works.