-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 996 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
{
"name": "lhs168/fasim",
"description": "a fast and simple framework",
"type": "library",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Kevin Lai",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"twig/twig": "^1.33.2",
"monolog/monolog": "^1.23.0"
},
"autoload": {
"psr-4": {
"Fasim\\Cache\\": "src/Fasim/Cache",
"Fasim\\Core\\": "src/Fasim/Core",
"Fasim\\Db\\": "src/Fasim/Db",
"Fasim\\Event\\": "src/Fasim/Event",
"Fasim\\Facades\\": "src/Fasim/Facades",
"Fasim\\Library\\": "src/Fasim/Library",
"Fasim\\Log\\": "src/Fasim/Log",
"Fasim\\Session\\": "src/Fasim/Session",
"Fasim\\Support\\": "src/Fasim/Support",
"Fasim\\View\\": "src/Fasim/View"
},
"files": [
"src/Fasim/Support/helpers.php"
]
}
}