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