| {
    "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": {
        "email": "[email protected] ",
        "source": "https://github.com/luminovang/framework/",
        "docs": "https://luminova.ng/docs"
    },
    "authors": [
        {
            "name": "Ujah Chigozie Peter",
            "email": "[email protected] ",
            "homepage": "https://github.com/peterujah/",
            "role": "developer"
        }
    ],
    "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",
        "friendsofphp/php-cs-fixer": "^3.64"
    },
    "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"
        ],
        "cs-fix": [
            "php-cs-fixer fix --ansi"
        ]
    },
    "scripts-descriptions": {
        "analyze-app": "Performs static analysis on the framework modules using phpstan.",
        "analyze-code": "Analyzes the framework's code for style and standards compliance using rector.",
        "cs-fix": "Fixes coding style issues to comply with PHP standards using php-cs-fixer."
    },
    "minimum-stability": "stable",
    "prefer-stable": true
}
 |