-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (43 loc) · 1.37 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (43 loc) · 1.37 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
{
"name": "ironedge/kernel",
"description": "This component is the main entry point for the Frenzy Framework. It handles the configuration loading, DIC container, etc.",
"keywords": ["kernel", "frenzy", "framework"],
"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/kernel/issues"
},
"require": {
"php": "^7.0",
"symfony/config": "^3.0",
"symfony/dependency-injection": "^3.0",
"symfony/event-dispatcher": "^3.0",
"ironedge/config": "^1.0",
"ironedge/cache": "^1.0",
"ironedge/logger": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5 || ^5.0.5",
"phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
},
"autoload": {
"psr-4": {
"IronEdge\\Component\\Kernel\\": "src",
"IronEdge\\Component\\Kernel\\Test\\": "tests"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}