{
    "name": "hotel/booking-system",
    "description": "Complete Hotel Room Booking System with Payment Gateway and Email Integration",
    "type": "project",
    "keywords": ["hotel", "booking", "payment", "razorpay", "phpmailer"],
    "homepage": "https://yourdomain.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Your Name",
            "email": "your@email.com",
            "role": "Developer"
        }
    ],
    "minimum-stability": "stable",
    "prefer-stable": true,
    "require": {
        "php": ">=7.4",
        "phpmailer/phpmailer": "^6.8",
        "razorpay/razorpay": "^2.8",
        "vlucas/phpdotenv": "^5.5"
    },
    "require-dev": {
        "monolog/monolog": "^2.0"
    },
    "autoload": {
        "psr-4": {
            "Hotel\\": "src/"
        }
    },
    "config": {
        "optimize-autoloader": true,
        "sort-packages": true
    },
    "scripts": {
        "post-install-cmd": [
            "echo 'Dependencies installed successfully!'"
        ],
        "post-update-cmd": [
            "echo 'Dependencies updated successfully!'"
        ]
    }
}