-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.15 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
45
{
"name": "dhii/output-renderer-interface",
"description": "An interface for objects that can perform rendering.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1 | ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0 | ^7.0 | ^8.0 | ^9.0",
"psr/container": "^1.0",
"vimeo/psalm": "^3.11.7 | ^4",
"slevomat/coding-standard": "^6.0",
"symfony/polyfill-php80": "^1.19"
},
"autoload": {
"psr-4": {
"Dhii\\Output\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Output\\UnitTest\\": "tests/unit",
"Dhii\\Output\\FuncTest\\": "tests/functional",
"Dhii\\Output\\Test\\": "tests/stubs"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.3.x-dev",
"0.4.x": "0.4.x-dev"
}
},
"suggest": {
"psr/container": "To use PSR-11 containers as context"
}
}