Skip to content

Commit 7e094ea

Browse files
authored
Update README.md
1 parent 610ae56 commit 7e094ea

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebFiori Json
22

3-
A helper library for creating JSON strings in PHP. It can be used to create well-formatted json strings from any variable type (strings, numbers, boolean arrays and even objects). More information about JSON notation can be found at https://www.json.org/.
3+
A helper class library for creating JSON or JSONx strings in PHP. It can be used to create well-formatted json strings from any variable type (strings, numbers, boolean arrays and even objects).
44

55
<p align="center">
66
<img src="https://github.com/WebFiori/json/workflows/Build%20PHP%207,8/badge.svg?branch=master">
@@ -12,11 +12,19 @@ A helper library for creating JSON strings in PHP. It can be used to create well
1212
</a>
1313
</p>
1414

15-
## API Docs
16-
This library is a part of <a href="https://github.com/WebFiori/framework">WebFiori Framework</a>. API docs of the library can be found at https://webfiori.com/docs/webfiori/json.
15+
## What is JSON?
16+
17+
Accoording to [json.org](https://www.json.org/json-en.html), JSON is a data exchange format which is based partially on JavaScript. It is easy for humans to read and for machines to understand. JSON data is represented as pairs of keys and values.
18+
19+
## Library Features
20+
* Support fo creating well formatted JSON.
21+
* Support for creating [JSONx](https://www.ibm.com/docs/en/datapower-gateways/10.0.1?topic=20-jsonx).
22+
* Ability to decode JSON strings and convert them to `Json` objects.
23+
* Ability to read JSON files and map JSON values to PHP datatypes.
24+
* Ability to manupulate JSON properties as needed.
1725

1826
## Supported PHP Versions
19-
The library supports all versions from PHP 5.6 up to PHP 8.0.
27+
The library supports all versions from PHP 5.6 up to PHP 8.1.
2028

2129
## Usage
2230
The process of using the classes is very simple. What you have to do is the following steps:

0 commit comments

Comments
 (0)