Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,28 @@ composer global require phpunit/phpunit ^11.5
```

Please make sure you install version 11.5 or later.

## Useable Modules

- 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)
- [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)
- [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)
25 changes: 25 additions & 0 deletions docs/TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,28 @@ For example, to run the tests for the Hello World exercise, you would run:
```shell
phpunit HelloWorldTest.php
```

## Useable Modules:

- 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)
- [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)
- [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)
Loading