From 7e6e71196dca9f0949524f6279e67668f97153a6 Mon Sep 17 00:00:00 2001 From: Alexandre Almeida Date: Thu, 25 Jul 2024 16:59:28 -0300 Subject: [PATCH] Care update v6.1 (#7) * feat: Update WPdash Child version 6.1 The commit removes outdated and no longer necessary files from the phpseclib vendor directory. This includes a number of composer.json, README.md, and LICENSE.txt files, amongst others, for different libraries. This clean-up may enhance maintainability and reduce potential confusion about which files and dependencies are currently relevant. * feat: Update 'Tested up to' version in readme The 'Tested up to' version in the readme file has been updated from 6.4.2 to 6.5.3. This reflects the ongoing compatibility testing with newer versions of the software. * feat: Add composer.json for MainWP Child plugin This commit introduces the composer.json file for the MainWP Child plugin, specifying its name, type, version, and authors. This setup facilitates easier dependency management and development workflows. --- composer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..70426b4 --- /dev/null +++ b/composer.json @@ -0,0 +1,17 @@ +{ + "name": "wpdash/mainwp-child", + "type": "wordpress-plugin", + "version": "6.1.0", + "authors": [ + { + "name": "Apiki", + "email": "wpcare@apiki.com" + }, + { + "name": "Alexandre Almeida", + "email": "alexandre.almeida@apiki.com" + } + ], + "require": {}, + "require-dev": {} +}