{
"name": "luminovang/framework",
"description": "Luminova PHP framework design for speed",
"keywords": ["Framework","PHP","MVC","PHP Framework", "Luminova", "PHP Luminova Framework", "Luminova Ng", "PHP Luminova"],
"license": "MIT",
"type": "library",
"homepage": "https://luminova.ng",
"support": {
"source": "https://github.com/luminovang/framework/"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"nikic/php-parser": "^4.17.1",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10.2",
"phpunit/phpunit": "^9.1",
"rector/rector": "0.18.3"
},
"suggest": {
"luminovang/luminova": "To use this module you need to install it through luminovang/framework.",
"ext-curl": "Needed if you use CURLRequest class",
"ext-exif": "Needed if you run Image class tests",
"ext-fileinfo": "Needed to improve mime type detection for files",
"ext-mysqli": "Needed if you use MySQL",
"ext-intl": "Needed if you use Local"
},
"autoload": {
"psr-4": {
"Luminova\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"analyze-app": [
"Composer\\Config::disableProcessTimeout",
"bash -c \"XDEBUG_MODE=off phpstan analyse --memory-limit 3000M\""
],
"analyze-code": [
"Composer\\Config::disableProcessTimeout",
"rector process --dry-run"
]
},
"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"
},
"minimum-stability": "stable",
"prefer-stable": true
}
|