40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "whatsapp/bot-manager",
|
|
"description": "Sistema de gestión de chatbot WhatsApp con colas y procesamiento asíncrono",
|
|
"type": "project",
|
|
"license": "proprietary",
|
|
"require": {
|
|
"php": ">=7.4",
|
|
"ext-json": "*",
|
|
"ext-curl": "*",
|
|
"ext-mbstring": "*",
|
|
"predis/predis": "^2.2",
|
|
"monolog/monolog": "^3.5",
|
|
"vlucas/phpdotenv": "^5.6",
|
|
"guzzlehttp/guzzle": "^7.8"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.6"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WhatsApp\\": "classes/",
|
|
"WhatsApp\\Services\\": "services/",
|
|
"WhatsApp\\Queue\\": "queue/"
|
|
},
|
|
"files": [
|
|
"config/config.php"
|
|
]
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
]
|
|
}
|
|
}
|