Skip to content

Commit b96bd17

Browse files
committed
2 parents ff8a02e + cd741a7 commit b96bd17

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build PHP 8.2
22

33
on:
44
push:
5-
branches: [ main, dev ]
5+
branches: [ main ]
66
pull_request:
77
branches: [ main ]
88
jobs:
@@ -11,6 +11,7 @@ jobs:
1111
uses: WebFiori/workflows/.github/workflows/test-php.yaml@main
1212
with:
1313
php-version: '8.2'
14+
phpunit-config: "tests/phpunit10.xml"
1415

1516
code-coverage:
1617
name: Coverage
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build PHP 8.4
22

33
on:
44
push:
5-
branches: [ main, dev ]
5+
branches: [ main ]
66
pull_request:
77
branches: [ main ]
88
jobs:
@@ -11,6 +11,7 @@ jobs:
1111
uses: WebFiori/workflows/.github/workflows/test-php.yaml@main
1212
with:
1313
php-version: '8.4'
14+
phpunit-config: "tests/phpunit10.xml"
1415

1516
code-coverage:
1617
name: Coverage

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
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, booleans, arrays, and even objects).
44

55
<p align="center">
6-
<a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php84.yml">
7-
<img src="https://github.com/WebFiori/json/actions/workflows/php84.yml/badge.svg?branch=main">
6+
<a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php84.yaml">
7+
<img src="https://github.com/WebFiori/json/actions/workflows/php84.yaml/badge.svg?branch=main">
88
</a>
99
<a href="https://codecov.io/gh/WebFiori/json">
1010
<img src="https://codecov.io/gh/WebFiori/json/branch/main/graph/badge.svg" />
@@ -57,10 +57,10 @@ According to [json.org](https://www.json.org/json-en.html), JSON is a data excha
5757
## Supported PHP Versions
5858
| Build Status |
5959
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
60-
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php81.yml"><img src="https://github.com/WebFiori/json/actions/workflows/php81.yml/badge.svg?branch=main"></a> |
61-
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php82.yml"><img src="https://github.com/WebFiori/json/actions/workflows/php82.yml/badge.svg?branch=main"></a> |
62-
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php83.yml"><img src="https://github.com/WebFiori/json/actions/workflows/php83.yml/badge.svg?branch=main"></a> |
63-
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php84.yml"><img src="https://github.com/WebFiori/json/actions/workflows/php84.yml/badge.svg?branch=main"></a> |
60+
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php81.yaml"><img src="https://github.com/WebFiori/json/actions/workflows/php81.yaml/badge.svg?branch=main"></a> |
61+
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php82.yaml"><img src="https://github.com/WebFiori/json/actions/workflows/php82.yaml/badge.svg?branch=main"></a> |
62+
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php83.yaml"><img src="https://github.com/WebFiori/json/actions/workflows/php83.yaml/badge.svg?branch=main"></a> |
63+
| <a target="_blank" href="https://github.com/WebFiori/json/actions/workflows/php84.yaml"><img src="https://github.com/WebFiori/json/actions/workflows/php84.yaml/badge.svg?branch=main"></a> |
6464

6565
## Installation
6666
If you are using composer to manage your dependencies, then it is possible to install the library by including the entry `"webfiori/jsonx":"*"` in the `require` section of your `composer.json` file to install the latest release:
@@ -530,5 +530,3 @@ try {
530530
#### Static Methods
531531
- `Json::decode($jsonStr): Json`
532532
- `Json::fromJsonFile($pathToJsonFile): Json`
533-
534-
For more information and advanced use cases, check [the official documentation](https://webfiori.com/learn/webfiori-json).

0 commit comments

Comments
 (0)