{
  "name": "ilbee/csv-response",
  "type": "library",
  "description": "Symfony component allow you to respond CSV contents directly in your controller",
  "homepage": "https://github.com/ilbee/csv-response",
  "license": "MIT",
  "keywords": [
    "csv",
    "export",
    "Symfony controller response"
  ],
  "authors": [
    {
      "name": "Julien PRIGENT",
      "email": "julien.prigent@dbmail.com",
      "role": "Developer"
    }
  ],
  "support": {
    "issues": "https://github.com/ilbee/csv-response/issues"
  },
  "require": {
    "php": ">=7.4 <9",
    "symfony/http-foundation": "^4 || ^5 || ^6 || ^7"
  },
  "require-dev": {
    "phpunit/phpunit": "^9.6",
    "squizlabs/php_codesniffer": "^3.7",
    "rector/rector": "^0.15.21"
  },
  "autoload": {
    "psr-4": {
      "Ilbee\\CSVResponse\\": "src/"
    }
  },
  "autoload-dev" : {
    "psr-4" : {
      "Ilbee\\CSVResponse\\Tests\\" : "tests/"
    }
  },
  "scripts": {
    "phpcbf": "./vendor/bin/phpcbf",
    "phpcs": "./vendor/bin/phpcs",
    "rector": "./vendor/bin/rector process",
    "rector-dry-run": "./vendor/bin/rector process --dry-run",
    "test": "./vendor/bin/phpunit",
    "test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html ./coverage"
  }
}
