-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 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
{
"name": "likesistemas/codeception-github-reporter",
"description": "Reports unit test data for a pull request.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ricardo Paes",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"Like\\Codeception\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Like\\Codeception\\Tests\\": "./tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^9.0",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.0.0",
"codeception/module-webdriver": "^1.2",
"codeception/module-rest": "^1.2",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-db": "^1.1"
},
"scripts": {
"test:ci": "codecept run --no-exit --ext \"Like\\Codeception\\GitHubReporter\""
}
}