---
title: "Creating a new extension from scratch"
manual: "TYPO3 Explained"
version: "13.4"
permalink: "https://docs.typo3.org/permalink/t3coreapi:extension-create-new@13.4"
source: "ExtensionArchitecture/Kickstarter/FromScratch/Index.rst"
rendered: "2026-09-26T10:27:18+00:00"
---

# Creating a new extension from scratch {#extension-create-new}

First choose a unique [Composer name](https://getcomposer.org/doc/04-schema.md#name)
and an extension key for your extension.

If you plan to publish your extension in the TYPO3 Extension Repository
(TER), [register an extension key](https://docs.typo3.org/permalink/t3coreapi:extension-key@13.4).

> [!NOTE]
> **See also**
>
> There are different ways to kickstart an extension.
> See [Extension kickstarters](https://docs.typo3.org/permalink/t3coreapi:extension-kickstart@13.4).

-   Create a directory with the extension name
-   Create the [composer.json](https://docs.typo3.org/permalink/t3coreapi:files-composer-json@13.4) file
-   Create the [ext_emconf.php](https://docs.typo3.org/permalink/t3coreapi:ext-emconf-php@13.4) file for Classic mode installations and
    extensions what will be uploaded to TER

## Installing the newly created extension {#extension-create-new-installing-newly-created}

Since TYPO3 v11 extensions can only be installed
using Composer as part of a Composer-based installation.

However, during development you should test your extension locally
before publishing it. Create the extension directory in the
`packages` directory inside the TYPO3 project root directory.

Then edit your project's [`composer.json`](../../FileStructure/ComposerJson.md#file-extension-composer-json) (The one in the TYPO3 root
directory, **not the one in the extension**) and add the following repository:

**composer.json**

```json
{
    "repositories": [
        {
            "type": "path",
            "url": "packages/*"
        }
    ]
}
```

After that install your extension via Composer:

```bash
composer req my-vendor/my-extension:"@dev"
```

> [!TIP]
> **Hint**
>
> In Classic mode installations put the extension in the
> `typo3conf/ext` directory and then **activate** it in
> **Admin Tools > Extensions**.
