-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 839 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 839 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
{
"name": "openbuildings/phpunit-spiderling",
"description": "Use openbuildings/spiderling in phpunit tests",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ivan Kerin",
"email": "ivan@openbuildings.com",
"role": "Author"
}
],
"require" : {
"php": "^7.3 || ^7.4",
"openbuildings/spiderling": "^0.4",
"openbuildings/environment-backup": "^0.1",
"phpunit/phpunit": "^9"
},
"require-dev": {
"kohana/core": "^3.3"
},
"autoload": {
"psr-4": {"Openbuildings\\PHPUnitSpiderling\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Openbuildings\\PHPUnitSpiderling\\Test\\": "tests/"},
"psr-0": {"": "vendor/kohana/core/classes/"},
"files": ["tests/kohana_constants.php"]
}
}