-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.24 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.24 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
46
47
48
49
50
51
52
53
54
{
"name" : "luthier/framework",
"type" : "library",
"description" : "Versatile PHP micro-framework for build APIs and websites quickly",
"license" : "MIT",
"homepage" : "https://luthier.ingenia.me/framework/en/",
"authors" : [{
"name" : "Anderson Salas",
"email" : "[email protected]",
"homepage" : "https://ingenia.me",
"role" : "Lead developer"
}
],
"keywords" : [
"framework",
"micro-framework",
"routing",
"middleware",
"dependency-injection",
"luthier"
],
"minimum-stability" : "stable",
"require" : {
"php" : ">=7.1.8",
"symfony/http-foundation" : "^4.0",
"symfony/http-kernel" : "^4.0",
"symfony/routing" : "^4.0",
"symfony/dotenv" : "^4.0",
"symfony/event-dispatcher" : "^4.0",
"symfony/console" : "^4.0",
"symfony/validator" : "^4.0",
"symfony/translation" : "^4.0",
"pimple/pimple" : "~3.0",
"filp/whoops" : "^2.2",
"monolog/monolog" : "~1.0",
"envms/fluentpdo" : "^1.1",
"symfony/config" : "~3.4|~4.0",
"spatie/array-to-xml" : "~2.0"
},
"require-dev" : {
"phpunit/phpunit" : "^7",
"twig/twig" : "^2.0",
"illuminate/view" : "~5.0",
"league/plates" : "~3.0"
},
"support" : {
"email" : "[email protected]"
},
"autoload" : {
"psr-4" : {
"Luthier\\" : "src/"
}
}
}