-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.41 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "northwoods/config",
"type": "library",
"description": "Simple configuration loader",
"homepage": "https://github.com/northwoods/config",
"license": "MIT",
"keywords": [
"config",
"configuration",
"loading",
"management",
"directory",
"yaml",
"php"
],
"authors": [
{
"name": "Gabriel Bull",
"email": "me@gabrielbull.com"
},
{
"name": "Jenner",
"email": "hypxm@qq.com"
},
{
"name": "Woody Gilk",
"email": "woody.gilk@gmail.com"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"require": {
"php": ">=7.0"
},
"require-dev": {
"eloquent/phony-phpunit": "^3.0",
"squizlabs/php_codesniffer": "^3.0",
"symfony/yaml": "^2.8 || ^3.0"
},
"suggest": {
"josegonzalez/dotenv": "Adds support for loading .env files",
"symfony/yaml": "Adds support for loading .yaml files"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Northwoods\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Northwoods\\Config\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check": "phpcs -n"
}
}