PHPackages                             sourcebroker/deployer-typo3-deploy - 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. [DevOps &amp; Deployment](/categories/devops)
4. /
5. sourcebroker/deployer-typo3-deploy

ActiveLibrary[DevOps &amp; Deployment](/categories/devops)

sourcebroker/deployer-typo3-deploy
==================================

Deploy for TYPO3 with Deployer

2.0.0(11mo ago)011.2k—6%11MITPHP

Since Mar 1Pushed 10mo ago4 watchersCompare

[ Source](https://github.com/sourcebroker/deployer-typo3-deploy)[ Packagist](https://packagist.org/packages/sourcebroker/deployer-typo3-deploy)[ RSS](/packages/sourcebroker-deployer-typo3-deploy/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (2)Versions (14)Used By (1)

deployer-typo3-deploy
=====================

[](#deployer-typo3-deploy)

[![Latest Stable Version](https://camo.githubusercontent.com/ba9bcf947041dc0516f4cc43469a16cfbe76bcdba99a7962f305af2ca8d99947/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736f7572636562726f6b65722f6465706c6f7965722d7479706f332d6465706c6f792e7376673f7374796c653d666c6174)](https://packagist.org/packages/sourcebroker/deployer-typo3-deploy)[![License: MIT](https://camo.githubusercontent.com/f48f8d6cf609f5b181b9c3218a85175fe8a5809c7ea400347f39697a5d55065d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c6174)](https://packagist.org/packages/sourcebroker/deployer-typo3-deploy)

What does it do?
----------------

[](#what-does-it-do)

This package provides a deploy task for deploying TYPO3 CMS with Deployer (deployer.org).

Installation
------------

[](#installation)

1. Install package with composer:

    ```
    composer require sourcebroker/deployer-typo3-deploy

    ```
2. Put the following lines at the beginning of your `deploy.php`:

    ```
    require_once(__DIR__ . '/vendor/autoload.php');

    new \SourceBroker\DeployerLoader\Loader([
      ['get' => 'sourcebroker/deployer-typo3-deploy'],
    ]);
    ```
3. Remove the task "deploy" from your `deploy.php`. Otherwise, you will overwrite the deploy task defined in `vendor/sourcebroker/deployer-typo3-deploy/deployer/default/deploy/task/deploy.php`. Look at [Example of working configuration](#example-of-working-configuration)to see how simple a working `deploy.php` file can be.

Example of working configuration
--------------------------------

[](#example-of-working-configuration)

This is an example of a working configuration for TYPO3 13. The aim of `sourcebroker/deployer-typo3-deploy` is to have a very slim `deploy.php` file in order to make it easy to upgrade to future versions of `sourcebroker/deployer-typo3-deploy`.

```
