-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (39 loc) · 1.12 KB
/
composer.json
File metadata and controls
40 lines (39 loc) · 1.12 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
{
"name": "ironedge/config",
"description": "A simple object with useful methods to easily access your configuration values.",
"keywords": ["config"],
"homepage": "http://www.ironedgesoftware.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gustavo Falco",
"email": "comfortablynumb84@gmail.com",
"homepage": "http://www.ironedgesoftware.com/"
}
],
"support": {
"issues": "https://github.com/ironedgesoftware/config/issues"
},
"require": {
"php": "^7.0",
"ironedge/common-utils": "^1.0",
"ironedge/file-utils": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5 || ^5.0.5",
"phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"IronEdge\\Component\\Config\\": "src",
"IronEdge\\Component\\Config\\Test\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}