<?php
/**
 * Composer.json - PHP Dependency Manager
 */

// This file is for documentation. PHP built-ins don't require external dependencies
// for this basic version. To add dependencies, create a real composer.json and run:
// composer install

$composerJson = [
    "name" => "chatbud/chatbud-php",
    "description" => "ChatBud Social Platform - PHP Version",
    "version" => "1.0.0",
    "license" => "MIT",
    "authors" => [
        [
            "name" => "ChatBud Team",
            "email" => "dev@chatbud.com"
        ]
    ],
    "require" => [
        "php" => ">=7.4.0"
    ],
    "require-dev" => [
        "phpunit/phpunit" => "^9.0"
    ],
    "autoload" => [
        "psr-4" => [
            "ChatBud\\" => "src/"
        ]
    ]
];

// To use this file, create composer.json in project root with the content above
// Then run: composer install
?>
