Files
crm.clientright.ru/modules/PDFMaker2/resources/mpdf/composer.json
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- Added comprehensive AI Assistant system (aiassist/ directory):
  * Vector search and embedding capabilities
  * Typebot proxy integration
  * Elastic search functionality
  * Message classification and chat history
  * MCP proxy for external integrations

- Implemented Court Status API (GetCourtStatus.php):
  * Real-time court document status checking
  * Integration with external court systems
  * Comprehensive error handling and logging

- Enhanced S3 integration:
  * Improved file backup system with metadata
  * Batch processing capabilities
  * Enhanced error logging and recovery
  * Copy operations with URL fixing

- Added Telegram contact creation API
- Improved error logging across all modules
- Enhanced callback system for AI responses
- Extensive backup file storage with timestamps
- Updated documentation and README files

- File storage improvements:
  * Thousands of backup files with proper metadata
  * Fix operations for broken file references
  * Project-specific backup and recovery systems
  * Comprehensive file integrity checking

Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
2025-10-16 11:17:21 +03:00

53 lines
941 B
JSON

{
"name": "mpdf/mpdf",
"type": "library",
"description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
"keywords": ["php", "pdf", "utf-8"],
"homepage": "http://mpdf.github.io",
"license": ["GPL-2.0"],
"authors": [
{
"name": "Ian Back",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/mpdf/mpdf/issues",
"source": "https://github.com/mpdf/mpdf",
"docs": "http://mpdf.github.io"
},
"require": {
"php": ">=5.4.0",
"ext-mbstring": "*",
"setasign/fpdi": "1.6.*"
},
"require-dev": {
"phpunit/phpunit": "^4.7"
},
"suggest": {
"ext-zlib": "Needed for compression of embedded resources, such as fonts"
},
"autoload": {
"classmap": ["mpdf.php", "classes"]
},
"scripts": {
"post-install-cmd": [
"php -r \"chmod('./ttfontdata', 0777);\"",
"php -r \"chmod('./tmp', 0777);\"",
"php -r \"chmod('./graph_cache', 0777);\""
]
}
}