{
    "name": "fval/springy",
    "description": "Springy",
    "license": "MIT",
    "type": "project",
    "config": {
        "vendor-dir": "vendor"
    },
    "authors": [
        {
            "name": "Fernando Val",
            "homepage": "http://fval.com.br",
            "role": "Developer"
        }
    ],
    "extra": {
        "installer-paths": {
            "vendor/{$name}": ["vendor/package"]
        },
        "post-install": {
            "components/jquery": {
                "target": "www/assets/jquery",
                "files": "jquery.min.js"
            },
            "twbs/bootstrap": {
                "target": "www/assets/bootstrap",
                "files": [
                    "dist/css/*",
                    "dist/js/*",
                    "dist/fonts/*"
                ]
            }
        }
    },
    "require-dev": {
        "squizlabs/php_codesniffer": "^3.5",
        "phpmd/phpmd": "@stable",
        "phpunit/phpunit": "~10.5"
    },
    "require": {
        "php": ">=8.1",
        "smarty/smarty": "^5.4",
        "twig/twig": "^2.15",
        "ircmaxell/password-compat": "^1.0",
        "matthiasmullie/minify": "^1.3",
        "sendgrid/sendgrid": "^7.8",
        "phpmailer/phpmailer": "^6.0",
        "vlucas/phpdotenv": "^5.6",
        "components/jquery": "~3.1"
    },
    "autoload": {
        "files": ["springy/Core/helpers.php"],
        "psr-4": {
            "App\\": "app/",
            "Springy\\": "springy/"
        }
    },
    "scripts": {
        "components": "php -f components.php",
        "phpcs": "phpcs",
        "phpcbf" : "phpcbf app",
        "phpunit" : "phpunit",
        "phpmd" : "phpmd . html codesize.xml > phpmd.html",
        "test": [
            "@phpcs",
            "@phpmd",
            "@phpunit"
        ],
        "read-me": "Adds @components post-install-cmd and post-update-cmd if needed"
    },
    "repositories": []
}
 
  |