-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.39 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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
46
47
48
{
"name": "dflydev/dot-access-configuration",
"type": "library",
"description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
"homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
"keywords": ["config", "configuration"],
"license": "MIT",
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "info@dflydev.com",
"homepage": "http://dflydev.com"
},
{
"name": "Beau Simensen",
"email": "beau@dflydev.com",
"homepage": "http://beausimensen.com"
}
],
"require": {
"php": ">=7.4",
"dflydev/dot-access-data": "^3",
"dflydev/placeholder-resolver": "1.*"
},
"require-dev": {
"symfony/yaml": "^5.4 || ^6.0",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"symfony/yaml": "Required for using the YAML Configuration Builders"
},
"autoload": {
"psr-0": {
"Dflydev\\DotAccessConfiguration": "src"
}
},
"scripts": {
"style:fix": "@php ./vendor/bin/phpcsf",
"style:check": "@php ./vendor/bin/phpcs",
"test" : "@php ./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}