-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 811 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 811 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
{
"name": "best/dot-notation",
"type": "library",
"description": "Compact, MongoDB-like dot notation for manipulating and creating arrays.",
"minimum-stability": "stable",
"keywords": [ "config", "mongo", "array", "configuration", "zend" ],
"license": "MIT",
"homepage": "http://github.com/dmeybohm/dot-notation",
"authors": [
{
"name": "David Meybohm",
"email": "dmeybohm@gmail.com"
}
],
"autoload": {
"psr-4": {
"Best\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Best\\DotNotation\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^8",
"phpstan/phpstan-strict-rules": "^1"
}
}