Files
MokoJoomBackup/composer.json
T
Jonathan Miller dd572c6f9e chore: declare PHP extension dependencies in composer.json
Add required PHP extensions: ext-zip (archiving), ext-pdo + ext-pdo_mysql
(database), ext-curl (Google Drive), ext-ftp (FTP upload), ext-mbstring
(binary-safe string handling).

Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-06-02 15:30:54 -05:00

32 lines
687 B
JSON

{
"name": "mokoconsulting/mokobackup",
"description": "Full-site backup and restore for Joomla — database, files, and configuration",
"type": "joomla-package",
"version": "01.00.00",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Moko Consulting",
"email": "hello@mokoconsulting.tech",
"homepage": "https://mokoconsulting.tech"
}
],
"require": {
"php": ">=8.1",
"ext-zip": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-curl": "*",
"ext-ftp": "*",
"ext-mbstring": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10",
"joomla/coding-standards": "^3.0"
},
"config": {
"sort-packages": true
}
}