-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 867 Bytes
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 867 Bytes
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
{
"name": "co-stack/stack-test",
"description": "Testing Framework",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"test",
"testing",
"selenium",
"phpunit",
"codeception",
"behat",
"acceptance",
"browser"
],
"authors": [
{
"name": "Oliver Eglseder",
"email": "oliver.eglseder@co-stack.com"
}
],
"autoload": {
"files": [
"functions.php"
],
"psr-4": {
"CoStack\\StackTest\\": "src",
"PHPUnit\\": "phpunit"
}
},
"autoload-dev": {
"psr-4": {
"CoStack\\StackTest\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"co-stack/lib": "^5.1 || ^v6.0",
"php-webdriver/webdriver": "^1.15",
"phpunit/phpunit": "^9.6 || ^10.4 || ^11.5"
},
"provide": {
"symfony/polyfill-mbstring": "*"
}
}