forked from phplucidframe/phplucidframe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 1 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
{
"name": "phplucidframe/phplucidframe",
"description": "The simple, lightweight & yet powerful PHP framework",
"type": "library",
"keywords": ["framework"],
"homepage": "http://www.phplucidframe.com",
"license": "MIT",
"authors": [
{
"name": "Sithu K.",
"email": "[email protected]",
"homepage": "https://github.com/dev-sithu",
"role": "Creator & Core Developer"
}
],
"support": {
"issues": "https://github.com/phplucidframe/phplucidframe/issues",
"source": "https://github.com/phplucidframe/phplucidframe"
},
"require": {
"php": ">=5.6.0",
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-json": "*",
"ext-gd": "*"
},
"require-dev": {
"simpletest/simpletest": "^1.2"
},
"autoload": {
"psr-4": {
"LucidFrame\\Core\\": "lib/classes/",
"LucidFrame\\Console\\": "lib/classes/console/"
}
}
}