{
  "name": "codemonkey1988/responsive-images",
  "type": "typo3-cms-extension",
  "description": "Adds responsive images support for many browser types to TYPO3 using the picture tag.",
  "homepage": "https://github.com/codemonkey1988/responsive-images/",
  "license": "GPL-2.0-or-later",
  "keywords": [
    "TYPO3 CMS",
    "responsive_images"
  ],
  "authors": [
    {
      "name": "Tim Schreiner",
      "role": "Developer",
	    "email": "dev@tim-schreiner.de"
    }
  ],
  "require": {
    "php": "^8.2",
    "typo3/cms-core": "^13.4 || ^14.3"
  },
  "require-dev": {
    "friendsofphp/php-cs-fixer": "^3.61",
    "phpstan/phpstan": "^2.1",
    "saschaegerer/phpstan-typo3": "^2.1 || ^3.0",
    "typo3/cms-fluid-styled-content": "^13.4 || ^14.3",
    "typo3/cms-filelist": "^13.4 || ^14.3",
    "typo3/cms-extensionmanager": "^13.4 || ^14.3",
    "typo3/cms-install": "^13.4 || ^14.3",
    "typo3/testing-framework": "^9.0"
  },
  "autoload": {
    "psr-4": {
      "Codemonkey1988\\ResponsiveImages\\": "Classes"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Codemonkey1988\\ResponsiveImages\\Tests\\": "Tests"
    }
  },
  "replace": {
    "typo3-ter/responsive-images": "self.version"
  },
  "config": {
    "vendor-dir": ".Build/vendor",
    "bin-dir": ".Build/bin",
    "lock": false,
    "allow-plugins": true
  },
  "scripts": {
    "prepare-release": [
      "rm -f .editorconfig",
      "rm -f .gitattributes",
      "rm -f .gitignore",
      "rm -f .gitlab-ci.yml",
      "rm -f .php-cs-fixer.dist.php",
      "rm -f phpstan.neon",
      "rm -f UnitTests.xml",
      "rm -f FunctionalTests.xml",
      "rm -rf .ddev/",
      "rm -rf build/",
      "rm -rf Tests/"
    ],
    "phpcsfixer": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run --using-cache=no --diff",
    "phpstan": "phpstan analyse --ansi --no-progress --memory-limit=1024M --configuration=phpstan.neon",
    "phpunit": "phpunit --color -c UnitTests.xml",
    "phpunit-functional": "phpunit --color -c FunctionalTests.xml"
  },
  "extra": {
    "typo3/cms": {
      "extension-key": "responsive_images",
      "version": "5.0.1",
      "app-dir": ".Build",
      "web-dir": ".Build/Web"
    }
  }
}
