{
  "name": "allure-framework/allure-phpunit",
  "keywords": [
    "phpunit",
    "testing",
    "report",
    "steps",
    "attachments",
    "cases",
    "allure"
  ],
  "description": "Allure PHPUnit integration",
  "homepage": "https://allurereport.org/",
  "license": "Apache-2.0",
  "authors": [
    {
      "name": "Ivan Krutov",
      "email": "vania-pooh@yandex-team.ru",
      "role": "Developer"
    },
    {
      "name": "Edward Surov",
      "email": "zoohie@gmail.com",
      "role": "Developer"
    }
  ],
  "support": {
    "email": "allure@qameta.io",
    "source": "https://github.com/allure-framework/allure-phpunit"
  },
  "require": {
    "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
    "allure-framework/allure-php-commons": "^2.4",
    "phpunit/phpunit": "^10.0.5 || ^11 || ^12.0.1 || ^13"
  },
  "require-dev": {
    "brianium/paratest": "^7",
    "psalm/plugin-phpunit": "^0.19.5",
    "squizlabs/php_codesniffer": "^3.7.2",
    "vimeo/psalm": "^6.14.3"
  },
  "conflict": {
    "amphp/byte-stream": "<1.5.1",
    "amphp/dns": "<2.2.0",
    "amphp/socket": "<2.3.1",
    "amphp/cache": "<2.0.1",
    "amphp/process": "<2.0.3",
    "amphp/parser": "<1.1.1",
    "daverandom/libdns": "<2.1.0",
    "spatie/array-to-xml": "<3.3.0",
    "ramsey/uuid": "<4.3.0",
    "brianium/paratest": "<7.0.3"
  },
  "autoload": {
    "psr-4": {
      "Qameta\\Allure\\PHPUnit\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-0": {
      "Yandex": "test/"
    },
    "psr-4": {
      "Qameta\\Allure\\PHPUnit\\Test\\Unit\\": "test/unit/",
      "Qameta\\Allure\\PHPUnit\\Test\\Report\\": "test/report/",
      "Qameta\\Allure\\PHPUnit\\Scripts\\": "scripts/"
    }
  },
  "scripts": {
    "test-cs": "vendor/bin/phpcs -sp",
    "test-unit": "vendor/bin/phpunit --coverage-text",
    "test-unit-phpunit10.0": "vendor/bin/phpunit --configuration=phpunit.10.0.xml --coverage-text",
    "clear-allure-results": "rm -rf ./build/allure-results",
    "test-report": [
      "@clear-allure-results",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=positive",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=negative; exit 0"
    ],
    "test-report-phpunit10.0": [
      "@clear-allure-results",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=positive",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=negative; exit 0"
    ],
    "test-report-windows": [
      "@clear-allure-results",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=positive",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.report.xml --testsuite=negative & exit 0"
    ],
    "test-report-windows-phpunit10.0": [
      "@clear-allure-results",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=positive",
      "vendor/bin/paratest --processes=3 --configuration=phpunit.10.0.report.xml --testsuite=negative & exit 0"
    ],
    "test-psalm": "vendor/bin/psalm --shepherd",
    "test": [
      "@test-cs",
      "@test-unit",
      "@test-report",
      "@test-psalm"
    ],
    "test-phpunit10.0": [
      "@test-cs",
      "@test-unit-phpunit10.0",
      "@test-report-phpunit10.0",
      "@test-psalm"
    ],
    "test-windows": [
      "@test-cs",
      "@test-unit",
      "@test-report-windows",
      "@test-psalm"
    ],
    "test-windows-phpunit10.0": [
      "@test-cs",
      "@test-unit-phpunit10.0",
      "@test-report-windows-phpunit10.0",
      "@test-psalm"
    ],
    "print-phpunit-version": [
      "Qameta\\Allure\\PHPUnit\\Scripts\\CiScripts::printPhpUnitVersion"
    ],
    "print-phpunit-schema-version": [
      "Qameta\\Allure\\PHPUnit\\Scripts\\CiScripts::printConfigSchemaVersion"
    ]
  }
}
