-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "nanoblocktech/luminova-framework",
"description": "PHP Luminova framework design for speed",
"keywords": ["framework","php","api","router", "luminova", "php luminova framework", "php framework", "php luminova"],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/nanoblocktech/luminova-framework",
"support": {
"source": "https://github.com/nanoblocktech/luminova-framework/"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/log": "^1.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.1"
},
"suggest": {
"ext-curl": "Needed if you use CURLRequest class",
"ext-exif": "Needed if you run Image class tests",
"ext-fileinfo": "Needed to improves mime type detection for files",
"ext-gd": "Needed if you use Image class GDHandler",
"ext-imagick": "Needed if you use Image class ImageMagickHandler",
"ext-memcache": "Needed if you use Cache class MemcachedHandler with Memcache",
"ext-memcached": "Needed if you use Cache class MemcachedHandler with Memcached",
"ext-mysqli": "Needed if you use MySQL"
},
"autoload": {
"psr-4": {
"Luminova\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Luminova\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": "system"
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}