-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
44 lines (44 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
40
41
42
43
44
{
"name": "codeception/module-rest",
"description": "REST module for Codeception",
"license": "MIT",
"type": "library",
"keywords": [
"codeception",
"rest"
],
"authors": [
{
"name": "Gintautas Miselis"
}
],
"homepage": "https://codeception.com/",
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*",
"codeception/codeception": "^5.0.8",
"codeception/lib-xml": "^1.0",
"justinrainbow/json-schema": "^5.2.9 || ^6",
"softcreatr/jsonpath": "^0.8 || ^0.9"
},
"require-dev": {
"ext-libxml": "*",
"ext-simplexml": "*",
"codeception/lib-innerbrowser": "^3.0 | ^4.0",
"codeception/stub": "^4.0",
"codeception/util-universalframework": "^1.0"
},
"suggest": {
"aws/aws-sdk-php": "For using AWS Auth"
},
"minimum-stability": "RC",
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"classmap-authoritative": true
}
}