Installation

The extension needs to be installed like any other extension of TYPO3 CMS:

  1. Visit fal_dropbox at Github

  2. You will find a Download-Button where you can select between Download as Zip or Link for cloning this project.

  3. Get the extension

    1. Get it via Zip: Switch to the Extensionmanager and upload fal_dropbox

    2. Get it via Git: If Git is available on your system, switch into the typo3conf/ext/ directory and clone it from Github:

      git clone https://github.com/froemken/fal_dropbox.git
      
    3. Get it via Composer: If you run TYPO3 in composer mode you can add a new Repository into you composer.json:

      {
        "repositories": [
          {
            "type": "composer",
            "url": "https://composer.typo3.org/"
          },
          {
            "type": "vcs",
            "url": "https://github.com/froemken/fal_dropbox"
          }
        ],
        "name": "my-vendor/my-typo3-cms-distribution",
        "require": {
          "typo3/cms": "7.6.*",
          "sfroemken/fal_dropbox": "0.2.*"
        },
        "extra": {
          "typo3/cms": {
            "cms-package-dir": "{$vendor-dir}/typo3/cms",
            "web-dir": "web"
          }
        }
      }