Skip to content

Commit ce82af3

Browse files
committed
Merge branch 'v0.0.2' into 'main'
v1-0-0 See merge request fluxlabs/flux-eco/json-schema-assertion!2
2 parents de547d1 + 3af1ccf commit ce82af3

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## [1.0.0]
4+
* change api namespace
5+
36
## [0.0.2]
47
* added flux-publish-utils
58

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flux-eco/json-schema-assertion",
33
"description": "Asserts values against a schema definition",
4-
"version": "0.0.2",
4+
"version": "1.0.0",
55
"type": "flux-app",
66
"keywords": [
77
"flux-eco",

src/Adapters/Configs/Config.php renamed to src/Adapters/Outbounds.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
22

3-
namespace Flux\Eco\JsonSchemaAsserters\Adapters\Configs;
3+
namespace Flux\Eco\JsonSchemaAsserters\Adapters;
44

55
use Exception;
66
use Flux\Eco\JsonSchemaAsserters\{Core\Ports, Adapters\Models};
77

88

9-
class Config implements Ports\Configs\Config
9+
class Outbounds implements Ports\Configs\Config
1010
{
1111

1212
private Ports\Models\JsonSchemaBuilder $jsonSchemaBuilder;

src/Adapters/Api/JsonSchemaAssertionApi.php renamed to src/Api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace FluxEco\JsonSchemaAssertion\Adapters\Api;
3+
namespace FluxEco\JsonSchemaAssertion;
44

55
use Flux\Eco\Assert\Core\Ports;
66

7-
class JsonSchemaAssertionApi
7+
class Api
88
{
99
private Ports\AssertService $jsonSchemaService;
1010

src/Adapters/Api/AssertJsonSchemaInstance.php renamed to src/JsonSchemaInstance.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace FluxEco\JsonSchemaAssertion\Adapters\Api;
3+
namespace FluxEco\JsonSchemaAssertion\;
44

55

66

7-
interface AssertJsonSchemaInstance {
7+
interface JsonSchemaInstance {
88
/**
99
* Validation succeeds if,
1010
* for each name that appears in both the instance and as a name within this keyword's value,

0 commit comments

Comments
 (0)