forked from Nenglish7/framework-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.17 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
{
"name": "limeberry/framework",
"description": "Source files of limeberry php framework. Used for developer builds or source code improvement.",
"type": "project",
"keywords": [
"limeberry",
"php",
"framework",
"mvc-framework",
"secure",
"elgant-coding",
"extremely-fast",
"easy-to-use",
"php7-optimized"
],
"license": "MIT",
"authors": [
{
"name": "Sinan SALIH",
"email": "snnslh@outlook.com",
"homepage": "https://limeberry.github.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"limeberry\\": "./limeberry"
},
"files": [ "./base.php" ]
},
"autoload-dev": {
"psr-4": {
"limeberry\\": "./limeberry"
}
},
"require": {
"php": ">=5.6"
},
"support": {
"email": "limeberry.framework@gmail.com",
"docs": "https://limeberry.github.io/docs/index.html"
},
"require-dev": {
"phpunit/phpunit": "^5|^6|^7"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}