-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcomposer.json
More file actions
126 lines (126 loc) · 3.79 KB
/
composer.json
File metadata and controls
126 lines (126 loc) · 3.79 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"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"
]
}
}