-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 3.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nanoblocktech/luminova",
"description": "Luminova PHP framework design for speed",
"keywords": ["framework","php","api","router", "luminova", "php luminova framework", "php framework", "php luminova"],
"license": "MIT",
"type": "project",
"homepage": "https://github.com/nanoblocktech/luminova",
"support": {
"source": "https://github.com/nanoblocktech/luminova/"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"psr/log": "^1.1"
},
"require-dev": {
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10.2",
"nikic/php-parser": "^4.17.1",
"rector/rector": "0.18.3",
"phpunit/phpunit": "^9.1",
"smarty/smarty": "^4.3"
},
"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",
"ext-intl": "Needed if you use Local",
"psr/log": "Needed to use PSR logging",
"phpmailer/phpmailer": "Needed if you use Mailer",
"smarty/smarty": "Needed if you use Template engine"
},
"autoload": {
"files": [
"libraries/sys/functions.php",
"libraries/sys/helpers.php"
],
"psr-4": {
"Luminova\\": "system/",
"App\\Controllers\\": "app/Controllers/"
}
},
"autoload-dev": {
"psr-4": {
"Luminova\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": "system/plugins"
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"scripts": {
"post-update-cmd": [
"Luminova\\Composer\\Updater::updateFiles"
],
"post-create-project-cmd": [
"Luminova\\Composer\\Updater::updateFiles",
"Luminova\\Composer\\Updater::moveProjectToRoot"
],
"analyze-app": [
"Composer\\Config::disableProcessTimeout",
"bash -c \"XDEBUG_MODE=off phpstan analyse --memory-limit 3000M\""
],
"analyze-code": [
"Composer\\Config::disableProcessTimeout",
"rector process --dry-run"
],
"build-app": [
"Composer\\Config::disableProcessTimeout",
"php builder.phar --type=build"
],
"archive-app": [
"Composer\\Config::disableProcessTimeout",
"php builder.phar --type=zip"
],
"test": "phpunit"
},
"scripts-descriptions": {
"analyze-app": "Run static analysis",
"analyze-code": "Analyze coding style",
"build-app": "Build project for production",
"archive-app": "Export project files as zip",
"test": "Run unit tests"
},
"minimum-stability": "stable",
"prefer-stable": true
}