|
1 | 1 | # CHANGELOG |
2 | 2 |
|
3 | | -## 1.1.7 - 2018-01-04 |
| 3 | +## [1.1.8](https://github.com/josantonius/php-json/releases/tag/1.1.8) (2022-06-11) |
| 4 | + |
| 5 | +* Added support for `PHP 7.3` and `7.4`. |
| 6 | + |
| 7 | +* Improved documentation; `README.md`, `CODE_OF_CONDUCT.md`, `CONTRIBUTING.md` and `CHANGELOG.md`. |
| 8 | + |
| 9 | +* Removed `Codacy`. |
| 10 | + |
| 11 | +* Removed `PHP Coding Standards Fixer`. |
| 12 | + |
| 13 | +* The `master` branch was renamed to `main`. |
| 14 | + |
| 15 | +* The `develop` branch was added to use a workflow based on `Git Flow`. |
| 16 | + |
| 17 | +* `Travis` is discontinued for continuous integration. `GitHub Actions` will be used from now on. |
| 18 | + |
| 19 | +* Added `.github/CODE_OF_CONDUCT.md` file. |
| 20 | +* Added `.github/CONTRIBUTING.md` file. |
| 21 | +* Added `.github/FUNDING.yml` file. |
| 22 | +* Added `.github/workflows/ci.yml` file. |
| 23 | +* Added `.github/lang/es-ES/CODE_OF_CONDUCT.md` file. |
| 24 | +* Added `.github/lang/es-ES/CONTRIBUTING.md` file. |
| 25 | +* Added `.github/lang/es-ES/LICENSE` file. |
| 26 | +* Added `.github/lang/es-ES/README` file. |
| 27 | + |
| 28 | +* Deleted `.travis.yml` file. |
| 29 | +* Deleted `.editorconfig` file. |
| 30 | +* Deleted `CONDUCT.MD` file. |
| 31 | +* Deleted `README-ES.MD` file. |
| 32 | +* Deleted `.php_cs.dist` file. |
| 33 | + |
| 34 | +## [1.1.7](https://github.com/josantonius/php-json/releases/tag/1.1.7) (2018-01-04) |
4 | 35 |
|
5 | 36 | * The tests were fixed. |
6 | 37 |
|
|
10 | 41 |
|
11 | 42 | * Tests were implemented for `JsonLastError` class. |
12 | 43 |
|
13 | | -## 1.1.6 - 2017-11-08 |
| 44 | +## [1.1.6](https://github.com/josantonius/php-json/releases/tag/1.1.6) (2017-11-08) |
14 | 45 |
|
15 | 46 | * Implemented `PHP Mess Detector` to detect inconsistencies in code styles. |
16 | 47 |
|
17 | 48 | * Implemented `PHP Code Beautifier and Fixer` to fixing errors automatically. |
18 | 49 |
|
19 | 50 | * Implemented `PHP Coding Standards Fixer` to organize PHP code automatically according to PSR standards. |
20 | 51 |
|
21 | | -## 1.1.5 - 2017-11-01 |
| 52 | +## [1.1.5](https://github.com/josantonius/php-json/releases/tag/1.1.5) (2017-11-01) |
22 | 53 |
|
23 | 54 | * Implemented `PSR-4 autoloader standard` from all library files. |
24 | 55 |
|
|
30 | 61 |
|
31 | 62 | * Implemented `Codecov` to coverage reports. |
32 | 63 |
|
33 | | -* Added `Json/phpcs.ruleset.xml` file. |
| 64 | +* Added `phpcs.ruleset.xml` file. |
34 | 65 |
|
35 | | -* Deleted `Json/src/bootstrap.php` file. |
| 66 | +* Deleted `src/bootstrap.php` file. |
36 | 67 |
|
37 | | -* Deleted `Json/tests/bootstrap.php` file. |
| 68 | +* Deleted `tests/bootstrap.php` file. |
38 | 69 |
|
39 | | -* Deleted `Json/vendor` folder. |
| 70 | +* Deleted `vendor` folder. |
40 | 71 |
|
41 | 72 | * Changed `Josantonius\Json\Test\JsonTest` class to `Josantonius\Json\JsonTest` class. |
42 | 73 |
|
43 | | - |
44 | | -## 1.1.4 - 2017-09-10 |
| 74 | +## [1.1.4](https://github.com/josantonius/php-json/releases/tag/1.1.4) (2017-09-10) |
45 | 75 |
|
46 | 76 | * Unit tests supported by `PHPUnit` were added. |
47 | 77 |
|
48 | 78 | * The repository was synchronized with Travis CI to implement continuous integration. |
49 | | - |
50 | | -* Added `Json/src/bootstrap.php` file |
51 | 79 |
|
52 | | -* Added `Json/tests/bootstrap.php` file. |
| 80 | +* Added `src/bootstrap.php` file |
| 81 | + |
| 82 | +* Added `tests/bootstrap.php` file. |
53 | 83 |
|
54 | | -* Added `Json/phpunit.xml.dist` file. |
55 | | -* Added `Json/_config.yml` file. |
56 | | -* Added `Json/.travis.yml` file. |
| 84 | +* Added `phpunit.xml.dist` file. |
| 85 | +* Added `_config.yml` file. |
| 86 | +* Added `.travis.yml` file. |
57 | 87 |
|
58 | 88 | * Deleted `Josantonius\Json\Tests\JsonTest` class. |
59 | 89 | * Deleted `Josantonius\Json\Tests\JsonTest::testArrayToFile()` method. |
|
69 | 99 | * Added `Josantonius\Json\Test\JsonTest::testExternalFileToArray()` method. |
70 | 100 | * Added `Josantonius\Json\Test\JsonTest::testExternalFileNonExistentToArray()` method. |
71 | 101 |
|
72 | | -## 1.1.3 - 2017-08-20 |
| 102 | +## [1.1.3](https://github.com/josantonius/php-json/releases/tag/1.1.3) (2017-08-20) |
73 | 103 |
|
74 | 104 | * Added `Josantonius\Json\Json::_jsonLastError()` method. |
75 | 105 | * Added `Josantonius\Json\Json::_createDirectory()` method. |
|
83 | 113 |
|
84 | 114 | * New errors available from PHP 7.0 to check for errors from `json_last_error()` were added. |
85 | 115 |
|
86 | | -## 1.1.2 - 2017-05-31 |
| 116 | +## [1.1.2](https://github.com/josantonius/php-json/releases/tag/1.1.2) (2017-05-31) |
87 | 117 |
|
88 | 118 | * The file exception not found in the `fileToArray()` method was deleted. Now if it does not exist the file will create it with an empty array. |
89 | 119 |
|
90 | 120 | * `JSON_PRETTY_PRINT` was added at time to create the json file. |
91 | 121 |
|
92 | | -## 1.1.1 - 2017-03-18 |
| 122 | +## [1.1.1](https://github.com/josantonius/php-json/releases/tag/1.1.1) (2017-03-18) |
93 | 123 |
|
94 | 124 | * Some files were excluded from download and comments and readme files were updated. |
95 | 125 |
|
96 | | -## 1.1.0 - 2017-01-30 |
| 126 | +## [1.1.0](https://github.com/josantonius/php-json/releases/tag/1.1.0) (2017-01-30) |
97 | 127 |
|
98 | 128 | * Compatible with PHP 5.6 or higher. |
99 | 129 |
|
100 | | -## 1.0.0 - 2017-01-30 |
| 130 | +## [1.0.0](https://github.com/josantonius/php-json/releases/tag/1.0.0) (2016-12-14) |
101 | 131 |
|
102 | 132 | * Compatible only with PHP 7.0 or higher. In the next versions, the library will be modified to make it compatible with PHP 5.6 or higher. |
103 | 133 |
|
104 | | -## 1.0.0 - 2016-12-14 |
105 | | - |
106 | 134 | * Added `Josantonius\Json\Json` class. |
107 | 135 | * Added `Josantonius\Json\Json::arrayToFile()` method. |
108 | 136 | * Added `Josantonius\Json\Json::fileToArray()` method. |
109 | 137 | * Added `Josantonius\Json\Json::jsonLastError()` method. |
110 | 138 |
|
111 | | -## 1.0.0 - 2016-12-14 |
112 | | - |
113 | 139 | * Added `Josantonius\Json\Exception\JsonException` class. |
114 | 140 | * Added `Josantonius\Json\Exception\Exceptions` abstract class. |
115 | 141 | * Added `Josantonius\Json\Exception\JsonException->__construct()` method. |
116 | 142 |
|
117 | | -## 1.0.0 - 2016-12-14 |
118 | | - |
119 | 143 | * Added `Josantonius\Json\Tests\JsonTest` class. |
120 | 144 | * Added `Josantonius\Json\Tests\JsonTest::testArrayToFile()` method. |
121 | 145 | * Added `Josantonius\Json\Tests\JsonTest::testArrayToFileError()` method. |
|
0 commit comments