-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 840 Bytes
/
composer.json
File metadata and controls
35 lines (34 loc) · 840 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
33
34
35
{
"name": "yriveiro/dot",
"description": "Dot access for nested structures",
"keywords": ["dot", "dot notation", "dotted access", "dot syntaxt", "dot structure"],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Yago Riveiro",
"email": "yago.riveiro@gmail.com"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"satooshi/php-coveralls": "^1.0",
"psy/psysh": "^0.8.13",
"phpstan/phpstan": "^0.9.0"
},
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"Yriveiro\\Dot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yriveiro\\Dot\\Tests\\": "tests/"
}
}
}