From d9dcf0f3e8de3fa51c536ebaeeea7e3038f132f5 Mon Sep 17 00:00:00 2001 From: Joao Gilberto Magalhaes Date: Sun, 21 May 2023 16:15:35 -0500 Subject: [PATCH 1/3] Upgrade component version --- composer.json | 4 ++-- phpunit.xml.dist | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 097b8e5..dc83ffa 100644 --- a/composer.json +++ b/composer.json @@ -10,8 +10,8 @@ "minimum-stability": "dev", "require": { "php": ">=5.6.0", - "byjg/xmlutil": "1.0.*", - "byjg/serializer": "dev-major_refactory" + "byjg/xmlutil": "4.9.*", + "byjg/serializer": "4.9.*" }, "suggest": { "ext-dom": "*" diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 2b003c0..ebc7bf4 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -7,7 +7,8 @@ and open the template in the editor. ./src - + ./tests - + From d70d75e34d8540886a5be76b9b61ea1da90c8773 Mon Sep 17 00:00:00 2001 From: Joao Gilberto Magalhaes Date: Sat, 30 Dec 2023 13:41:46 -0600 Subject: [PATCH 2/3] Add Dependencies --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index b2f0354..ff37163 100644 --- a/README.md +++ b/README.md @@ -190,5 +190,13 @@ Just type: `composer require "byjg/anydataset=4.1.*"` vendor/bin/phpunit ``` +## Dependencies + +```mermaid +flowchart TD + AnyDataset --> Serializer + AnyDataset --> XMLUtil +``` + ---- [Open source ByJG](http://opensource.byjg.com) From 96230980de385a30fbed764797881e522dd2351d Mon Sep 17 00:00:00 2001 From: Joao Gilberto Magalhaes Date: Sat, 30 Dec 2023 13:55:52 -0600 Subject: [PATCH 3/3] Add Dependencies --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ff37163..4a70000 100644 --- a/README.md +++ b/README.md @@ -194,8 +194,8 @@ vendor/bin/phpunit ```mermaid flowchart TD - AnyDataset --> Serializer - AnyDataset --> XMLUtil + byjg/anydataset --> byjg/serializer + byjg/anydataset --> byjg/xmlutil ``` ----