-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
37 lines (37 loc) · 1015 Bytes
/
composer.json
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
30
31
32
33
34
35
36
37
{
"name": "allure-framework/allure-php-api",
"keywords":["PHP", "report", "allure", "api"],
"description": "Allure PHP commons",
"homepage": "https://allurereport.org/",
"license": "Apache-2.0",
"authors": [
{
"name": "Ivan Krutov",
"email": "vania-pooh@yandex-team.ru",
"role": "Developer"
}
],
"support": {
"email": "allure@qameta.io",
"source": "https://github.com/allure-framework/allure-php-api"
},
"require": {
"php": ">=7.1.3",
"jms/serializer": "^1 | ^2 | ^3",
"ramsey/uuid": "^3 | ^4",
"symfony/mime": "^4.3 | ^5",
"doctrine/annotations": "1.*"
},
"require-dev": {
"phpunit/phpunit": "^7 | ^8 | ^9"
},
"autoload": {
"psr-0": {
"Yandex": ["src/", "test/"]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-legacy": "vendor/bin/phpunit --configuration=phpunit.legacy.xml"
}
}