Commit bd83ecf
committed
chore(deps): update 3rdparty dependencies
chore(deps): update laravel/serializable-closure to 2.0.15
| Production Changes | From | To | Compare |
|------------------------------|--------|---------|---------------------------------------------------------------------------------|
| laravel/serializable-closure | v2.0.4 | v2.0.15 | [...](laravel/serializable-closure@v2.0.4...v2.0.15) |
chore(deps): update `justinrainbow/json-schema` to 6.10.0
| Production Changes | From | To | Compare |
|---------------------------|--------|--------|--------------------------------------------------------------------------|
| justinrainbow/json-schema | 6.6.4 | 6.10.0 | [...](jsonrainbow/json-schema@6.6.4...6.10.0) |
| marc-mabe/php-enum | v4.7.1 | v4.7.2 | [...](marc-mabe/php-enum@v4.7.1...v4.7.2) |
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>1 parent fd92433 commit bd83ecf
1 file changed
Lines changed: 1 addition & 1 deletion
- composer.json+2-2
- composer.lock+16-16
- composer/autoload_classmap.php+71-1
- composer/autoload_static.php+71-1
- composer/installed.json+17-17
- composer/installed.php+6-6
- justinrainbow/json-schema/dist/schema/json-schema-draft-07.json+245
- justinrainbow/json-schema/dist/schema/json-schema-draft-2019-09.json+152
- justinrainbow/json-schema/src/JsonSchema/ConstraintError.php+9-1
- justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php+1
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/AdditionalPropertiesConstraint.php+1-1
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/FormatConstraint.php+2-2
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft06/PropertiesNamesConstraint.php+15
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/AdditionalItemsConstraint.php+61
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/AdditionalPropertiesConstraint.php+93
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/AllOfConstraint.php+42
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/AnyOfConstraint.php+51
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/ConstConstraint.php+35
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/ContainsConstraint.php+47
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/ContentConstraint.php+55
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/DependenciesConstraint.php+64
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/Draft07Constraint.php+83
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/EnumConstraint.php+41
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/ExclusiveMaximumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/ExclusiveMinimumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/Factory.php+48
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/FormatConstraint.php+354
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/IfThenElseConstraint.php+67
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/ItemsConstraint.php+52
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MaxItemsConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MaxLengthConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MaxPropertiesConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MaximumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MinItemsConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MinLengthConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MinPropertiesConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MinimumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/MultipleOfConstraint.php+54
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/NotConstraint.php+40
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/OneOfConstraint.php+50
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/PatternConstraint.php+63
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/PatternPropertiesConstraint.php+72
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/PropertiesConstraint.php+48
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/PropertiesNamesConstraint.php+80
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/RefConstraint.php+45
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/RequiredConstraint.php+58
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/TypeConstraint.php+50
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft07/UniqueItemsConstraint.php+48
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/AdditionalItemsConstraint.php+64
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/AdditionalPropertiesConstraint.php+93
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/AllOfConstraint.php+42
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/AnyOfConstraint.php+51
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/ConstConstraint.php+35
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/ContainsConstraint.php+54
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/ContentConstraint.php+25
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/DependentRequiredConstraint.php+50
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/DependentSchemasConstraint.php+58
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/Draft2019Constraint.php+84
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/EnumConstraint.php+41
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/ExclusiveMaximumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/ExclusiveMinimumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/Factory.php+49
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/FormatConstraint.php+337
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/IfThenElseConstraint.php+67
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/ItemsConstraint.php+54
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MaxItemsConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MaxLengthConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MaxPropertiesConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MaximumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MinItemsConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MinLengthConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MinPropertiesConstraint.php+39
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MinimumConstraint.php+38
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/MultipleOfConstraint.php+54
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/NotConstraint.php+40
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/OneOfConstraint.php+50
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/PatternConstraint.php+63
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/PatternPropertiesConstraint.php+75
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/PropertiesConstraint.php+51
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/PropertiesNamesConstraint.php+80
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/RefConstraint.php+45
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/RequiredConstraint.php+58
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/TypeConstraint.php+50
- justinrainbow/json-schema/src/JsonSchema/Constraints/Drafts/Draft2019/UniqueItemsConstraint.php+48
- justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php+2
- justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php+2-1
- justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php+1-1
- justinrainbow/json-schema/src/JsonSchema/DraftIdentifiers.php+30-15
- justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php+1-1
- justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php+5
- justinrainbow/json-schema/src/JsonSchema/Tool/Validator/RelativeReferenceValidator.php-8
- justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php+11-3
- laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php-19
- laravel/serializable-closure/src/SerializableClosure.php+2-2
- laravel/serializable-closure/src/Serializers/Native.php+96-18
- laravel/serializable-closure/src/Support/ReflectionClosure.php+283-25
0 commit comments