-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
67 lines (67 loc) · 1.52 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "allure-framework/allure-php-commons",
"keywords": [
"php",
"report",
"testing",
"allure",
"commons"
],
"description": "Allure PHP commons",
"homepage": "https://allurereport.org/",
"license": "Apache-2.0",
"authors": [
{
"name": "Dmitry Baev",
"email": "baev.dm@gmail.com",
"role": "Developer"
},
{
"name": "Edward Surov",
"email": "zoohie@gmail.com",
"role": "Developer"
}
],
"support": {
"email": "allure@qameta.io",
"source": "https://github.com/allure-framework/allure-php-commons"
},
"require": {
"php": "^8",
"ext-json": "*",
"doctrine/annotations": "^1.12 || ^2",
"psr/log": "^1 || ^2 || ^3",
"ramsey/uuid": "^3 || ^4"
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1",
"phpunit/phpunit": "^9.6.8",
"psalm/plugin-phpunit": "^0.18.4",
"squizlabs/php_codesniffer": "^3.7.2",
"vimeo/psalm": "^5.12"
},
"autoload": {
"psr-4": {
"Qameta\\Allure\\": "src",
"Yandex\\Allure\\Adapter\\": "src/Legacy"
}
},
"autoload-dev": {
"psr-4": {
"Qameta\\Allure\\Test\\": "test"
}
},
"conflict": {
"amphp/byte-stream": "<1.5.1"
},
"scripts": {
"test-cs": "vendor/bin/phpcs -sp",
"test-unit": "vendor/bin/phpunit --log-junit=build/log/junit.xml --coverage-clover=build/coverage/clover.xml --coverage-text",
"test-psalm": "vendor/bin/psalm --shepherd",
"test": [
"@test-cs",
"@test-unit",
"@test-psalm"
]
}
}