composer.json 827 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "allure-framework/allure-phpunit",
  3. "keywords":["phpunit", "testing", "report", "steps", "attachments", "cases", "allure"],
  4. "description": "A PHPUnit adapter for Allure report.",
  5. "homepage": "http://allure.qatools.ru/",
  6. "license": "Apache-2.0",
  7. "authors": [
  8. {
  9. "name": "Ivan Krutov",
  10. "email": "vania-pooh@yandex-team.ru",
  11. "role": "Developer"
  12. }
  13. ],
  14. "support": {
  15. "email": "allure@yandex-team.ru",
  16. "source": "https://github.com/allure-framework/allure-phpunit"
  17. },
  18. "require": {
  19. "php": ">=7.0.0",
  20. "phpunit/phpunit": ">=6.0.0",
  21. "mikey179/vfsStream": "1.*",
  22. "allure-framework/allure-php-api": "~1.1.0"
  23. },
  24. "autoload": {
  25. "psr-0": {
  26. "Yandex": "src/"
  27. }
  28. }
  29. }