-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 927 Bytes
/
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
{
"name": "dhii/stringable-interface",
"description": "Interoperability interface for objects that can be cast to string",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1 | ^8.0",
"symfony/polyfill-php80": "^1.19"
},
"require-dev": {
"phpunit/phpunit": "^6.0 | ^7.0 | ^8.0 | ^9.0",
"vimeo/psalm": "^4.4.0",
"slevomat/coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"Dhii\\Util\\String\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Util\\String\\FuncTest\\": "tests/functional"
}
},
"extra": {
"branch-alias": {
"dev-0.2.x": "0.2.x-dev"
}
}
}