forked from Codeception/lib-innerbrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (43 loc) · 1.09 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/lib-innerbrowser",
"description":"Parent library for all Codeception framework modules and PhpBrowser",
"keywords":["codeception"],
"homepage":"https://codeception.com/",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Michael Bodnarchuk",
"email":"[email protected]",
"homepage":"http://codegyre.com"
},
{
"name":"Gintautas Miselis"
}
],
"minimum-stability": "RC",
"require": {
"php": ">=5.6.0 <9.0",
"codeception/codeception": "*@dev",
"symfony/browser-kit": ">=2.7 <6.0",
"symfony/dom-crawler": ">=2.7 <6.0",
"ext-mbstring": "*",
"ext-dom": "*",
"ext-json": "*"
},
"require-dev": {
"codeception/util-universalframework": "dev-master"
},
"conflict": {
"codeception/codeception": "<4.0"
},
"autoload":{
"classmap": ["src/"]
},
"config": {
"classmap-authoritative": true
},
"scripts": {
"test": "codecept run --coverage-xml"
}
}