-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 1.58 KB
/
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
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
64
65
{
"name": "xeriab/konfig",
"description": "Yet another simple configuration loader library.",
"homepage": "http://xeriab.github.io/projects/konfig/",
"version": "0.2.8",
"license": "MIT",
"type": "library",
"keywords": [
"configuration",
"config",
"json",
"yaml",
"yml",
"toml",
"ini",
"xml",
"properties",
"neon"
],
"authors": [{
"name": "Xeriab Nabil",
"email": "kodeburner@gmail.com",
"role": "Developer",
"homepage": "https://xeriab.github.io/"
}],
"contributors": [{
"name": "Nashwan Doaqan",
"email": "nashwan.doaqan@gmail.com",
"role": "Developer",
"homepage": "http://nashwan-d.com"
}],
"support": {
"issues": "https://github.com/xeriab/konfig/issues",
"source": "https://github.com/xeriab/konfig"
},
"suggest": {
"ext-yaml": "*",
"yosymfony/toml": "~0.3.3",
"symfony/yaml": "~3.1.5",
"nette/neon": "~2.4.0"
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"yosymfony/toml": "~0.3.3",
"symfony/yaml": "~3.1.5",
"nette/neon": "~2.4.0",
"phpunit/phpunit": ">=4.8 < 6.0",
"scrutinizer/ocular": "~1.3.1",
"squizlabs/php_codesniffer": "~3.0.0RC1"
},
"autoload": {
"psr-4": {
"Exen\\Konfig\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Exen\\Konfig\\Test\\": "tests/"
}
},
"config": {},
"scripts": {}
}