-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.78 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
{
"name": "krak/lava",
"description": "Micro framework with massive potential",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/krakphp/lava",
"keywords": [
"psr-7",
"http",
"micro-framework",
"console"
],
"authors": [
{
"name": "RJ Garcia",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Krak\\Lava\\": "src"
},
"files": [
"src/inc.php"
]
},
"require": {
"krak/auto-args": "^0.3.0",
"krak/cargo": "^0.2.0",
"krak/event-emitter": "^0.1.0",
"krak/http": "^0.3.3",
"krak/http-message": "^0.1.3",
"krak/mw": "^0.5.1",
"nikic/fast-route": "^1.2",
"nikic/iter": "^1.4",
"psr/log": "^1.0",
"symfony/debug": "^3.2",
"zendframework/zend-diactoros": "^1.3"
},
"require-dev": {
"eloquent/phony-peridot": "^1.0",
"krak/job": "^0.3.0",
"krak/php-inc": "^0.1.3",
"krak/validation": "^0.3.6",
"league/plates": "^3.3",
"monolog/monolog": "^1.22",
"peridot-php/peridot": "^1.19",
"symfony/console": "^3.2",
"symfony/var-dumper": "^3.2",
"vlucas/phpdotenv": "^2.4"
},
"suggest": {
"krak/job": "Needed for JobPackage to enable queued jobs",
"krak/validation": "Needed for ValidationPackage to enable validation",
"league/plates": "Needed for PlatesPackage to enable simple templating",
"monolog/monolog": "Needed for MonologPackage to enable logging",
"symfony/console": "Needed for running the console application.",
"vlucas/phpdotenv": "Needed for EnvPackage to load .env files at bootstrap"
}
}