From 81570c31fe1cf98b68124c827649dedc815dac26 Mon Sep 17 00:00:00 2001 From: narkunan Date: Sat, 12 Sep 2026 19:35:15 +0530 Subject: [PATCH 1/3] Added default modules in Tests.md --- docs/TESTS.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/TESTS.md b/docs/TESTS.md index a0f3b7e39..36b1abd33 100644 --- a/docs/TESTS.md +++ b/docs/TESTS.md @@ -11,3 +11,29 @@ For example, to run the tests for the Hello World exercise, you would run: ```shell phpunit HelloWorldTest.php ``` + +## Default modules: + +- [Core](https://www.php.net/manual/en/langref.php) +- [ctype](https://www.php.net/manual/en/book.ctype.php) +- [date](https://www.php.net/manual/en/book.datetime.php) +- [dom](https://www.php.net/manual/en/book.dom.php) +- [fileinfo](https://www.php.net/manual/en/book.fileinfo.php) +- [filter](https://www.php.net/manual/en/book.filter.php) +- [hash](https://www.php.net/manual/en/book.hash.php) +- [iconv](https://www.php.net/manual/en/book.iconv.php) +- [json](https://www.php.net/manual/en/book.json.php) +- [libxml](https://www.php.net/manual/en/book.libxml.php) +- [mbstring](https://www.php.net/manual/en/book.mbstring.php) +- [pcre](https://www.php.net/manual/en/book.pcre.php) +- [random](https://www.php.net/manual/en/book.random.php) +- [Reflection](https://www.php.net/manual/en/book.reflection.php) +- [SimpleXML](https://www.php.net/manual/en/book.simplexml.php) +- [sodium](https://www.php.net/manual/en/book.sodium.php) +- [SPL](https://www.php.net/manual/en/book.spl.php) +- [standard](https://www.php.net/manual/en/book.spl.php) +- [tokenizer](https://www.php.net/manual/en/book.tokenizer.php) +- [xml](https://www.php.net/manual/en/refs.xml.php) +- [xmlreader](https://www.php.net/manual/en/book.xmlreader.php) +- [xmlwriter](https://www.php.net/manual/en/book.xmlwriter.php) +- [zlib](https://www.php.net/manual/en/book.zlib.php) \ No newline at end of file From f3d58300192a765f8176f07af2b3825aac664bd1 Mon Sep 17 00:00:00 2001 From: narkunan Date: Sat, 12 Sep 2026 19:36:31 +0530 Subject: [PATCH 2/3] Added default modules in installation.md --- docs/INSTALLATION.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 398ff218a..e1b8e1aa7 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -137,3 +137,29 @@ composer global require phpunit/phpunit ^11.5 ``` Please make sure you install version 11.5 or later. + +## Default Modules + +- [Core](https://www.php.net/manual/en/langref.php) +- [ctype](https://www.php.net/manual/en/book.ctype.php) +- [date](https://www.php.net/manual/en/book.datetime.php) +- [dom](https://www.php.net/manual/en/book.dom.php) +- [fileinfo](https://www.php.net/manual/en/book.fileinfo.php) +- [filter](https://www.php.net/manual/en/book.filter.php) +- [hash](https://www.php.net/manual/en/book.hash.php) +- [iconv](https://www.php.net/manual/en/book.iconv.php) +- [json](https://www.php.net/manual/en/book.json.php) +- [libxml](https://www.php.net/manual/en/book.libxml.php) +- [mbstring](https://www.php.net/manual/en/book.mbstring.php) +- [pcre](https://www.php.net/manual/en/book.pcre.php) +- [random](https://www.php.net/manual/en/book.random.php) +- [Reflection](https://www.php.net/manual/en/book.reflection.php) +- [SimpleXML](https://www.php.net/manual/en/book.simplexml.php) +- [sodium](https://www.php.net/manual/en/book.sodium.php) +- [SPL](https://www.php.net/manual/en/book.spl.php) +- [standard](https://www.php.net/manual/en/book.spl.php) +- [tokenizer](https://www.php.net/manual/en/book.tokenizer.php) +- [xml](https://www.php.net/manual/en/refs.xml.php) +- [xmlreader](https://www.php.net/manual/en/book.xmlreader.php) +- [xmlwriter](https://www.php.net/manual/en/book.xmlwriter.php) +- [zlib](https://www.php.net/manual/en/book.zlib.php) \ No newline at end of file From 90f6383d3d7bf145153eac79c5fa2d821cb37844 Mon Sep 17 00:00:00 2001 From: narkunan Date: Tue, 15 Sep 2026 18:38:30 +0530 Subject: [PATCH 3/3] Removed standard module link And Updated Core module link and changes list title to useable modules --- docs/INSTALLATION.md | 5 ++--- docs/TESTS.md | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index e1b8e1aa7..404d170f1 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -138,9 +138,9 @@ composer global require phpunit/phpunit ^11.5 Please make sure you install version 11.5 or later. -## Default Modules +## Useable Modules -- [Core](https://www.php.net/manual/en/langref.php) +- Core, standard (providing very common functions like [array](https://www.php.net/manual/en/ref.array.php) or [string](https://www.php.net/manual/en/ref.strings.php) functions) - [ctype](https://www.php.net/manual/en/book.ctype.php) - [date](https://www.php.net/manual/en/book.datetime.php) - [dom](https://www.php.net/manual/en/book.dom.php) @@ -157,7 +157,6 @@ Please make sure you install version 11.5 or later. - [SimpleXML](https://www.php.net/manual/en/book.simplexml.php) - [sodium](https://www.php.net/manual/en/book.sodium.php) - [SPL](https://www.php.net/manual/en/book.spl.php) -- [standard](https://www.php.net/manual/en/book.spl.php) - [tokenizer](https://www.php.net/manual/en/book.tokenizer.php) - [xml](https://www.php.net/manual/en/refs.xml.php) - [xmlreader](https://www.php.net/manual/en/book.xmlreader.php) diff --git a/docs/TESTS.md b/docs/TESTS.md index 36b1abd33..86a67e412 100644 --- a/docs/TESTS.md +++ b/docs/TESTS.md @@ -12,9 +12,9 @@ For example, to run the tests for the Hello World exercise, you would run: phpunit HelloWorldTest.php ``` -## Default modules: +## Useable Modules: -- [Core](https://www.php.net/manual/en/langref.php) +- Core, standard (providing very common functions like [array](https://www.php.net/manual/en/ref.array.php) or [string](https://www.php.net/manual/en/ref.strings.php) functions) - [ctype](https://www.php.net/manual/en/book.ctype.php) - [date](https://www.php.net/manual/en/book.datetime.php) - [dom](https://www.php.net/manual/en/book.dom.php) @@ -31,7 +31,6 @@ phpunit HelloWorldTest.php - [SimpleXML](https://www.php.net/manual/en/book.simplexml.php) - [sodium](https://www.php.net/manual/en/book.sodium.php) - [SPL](https://www.php.net/manual/en/book.spl.php) -- [standard](https://www.php.net/manual/en/book.spl.php) - [tokenizer](https://www.php.net/manual/en/book.tokenizer.php) - [xml](https://www.php.net/manual/en/refs.xml.php) - [xmlreader](https://www.php.net/manual/en/book.xmlreader.php)