-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 986 Bytes
/
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
{
"name": "symlex/symlex-core",
"description": "Minimalistic Kernel and Routers based on Symfony Components",
"type": "library",
"keywords": [
"symfony",
"dependency injection",
"performance",
"micro-framework",
"rest",
"router",
"kernel"
],
"license": "MIT",
"homepage": "https://github.com/symlex/symlex-core",
"authors": [
{
"name": "Michael Mayer",
"email": "[email protected]",
"homepage": "https://liquidbytes.net/",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"symlex/di-microkernel": "^2.0",
"symfony/symfony": "^4.4",
"twig/twig": "^2.5.0"
},
"require-dev": {
"lastzero/test-tools": "^5.0",
"codacy/coverage": "dev-master"
},
"autoload": {
"psr-4": { "Symlex\\": "src/" }
},
"config": {
"bin-dir": "bin/"
}
}