Skip to content

Commit 63367ed

Browse files
xabbuhfabpot
authored andcommitted
JsonPath, JsonStreamer and ObjectMapper are no longer experimental
1 parent 2f8ceba commit 63367ed

23 files changed

+1
-47
lines changed

Attribute/JsonStreamable.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
#[\Attribute(\Attribute::TARGET_CLASS)]
2018
final class JsonStreamable

Attribute/StreamedName.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* Defines the streamed property name.
1616
*
1717
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
18-
*
19-
* @experimental
2018
*/
2119
#[\Attribute(\Attribute::TARGET_PROPERTY)]
2220
final class StreamedName

Attribute/ValueTransformer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* that will be used to transform the property data during stream reading/writing.
2020
*
2121
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
22-
*
23-
* @experimental
2422
*/
2523
#[\Attribute(\Attribute::TARGET_PROPERTY)]
2624
class ValueTransformer

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
7.4
55
---
66

7+
* The component is not marked as `@experimental` anymore
78
* Remove `nikic/php-parser` dependency
89
* Add `_current_object` to the context passed to value transformers during write operations
910
* Add `include_null_properties` option to encode the properties with `null` value

Exception/ExceptionInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
interface ExceptionInterface extends \Throwable
2018
{

Exception/InvalidArgumentException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
2018
{

Exception/InvalidStreamException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
final class InvalidStreamException extends UnexpectedValueException
2018
{

Exception/LogicException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class LogicException extends \LogicException implements ExceptionInterface
2018
{

Exception/NotEncodableValueException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class NotEncodableValueException extends UnexpectedValueException
2018
{

Exception/RuntimeException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Mathias Arlaud <mathias.arlaud@gmail.com>
16-
*
17-
* @experimental
1816
*/
1917
class RuntimeException extends \RuntimeException implements ExceptionInterface
2018
{

0 commit comments

Comments
 (0)