Skip to content

Commit

Permalink
v1-0-0
Browse files Browse the repository at this point in the history
  • Loading branch information
mstuder committed Apr 26, 2022
1 parent 478e28b commit 3af1ccf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## [1.0.0]
* change api namespace

## [0.0.2]
* added flux-publish-utils

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flux-eco/json-schema-assertion",
"description": "Asserts values against a schema definition",
"version": "0.0.2",
"version": "1.0.0",
"type": "flux-app",
"keywords": [
"flux-eco",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php

namespace Flux\Eco\JsonSchemaAsserters\Adapters\Configs;
namespace Flux\Eco\JsonSchemaAsserters\Adapters;

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


class Config implements Ports\Configs\Config
class Outbounds implements Ports\Configs\Config
{

private Ports\Models\JsonSchemaBuilder $jsonSchemaBuilder;
Expand Down
4 changes: 2 additions & 2 deletions src/Adapters/Api/JsonSchemaAssertionApi.php → src/Api.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace FluxEco\JsonSchemaAssertion\Adapters\Api;
namespace FluxEco\JsonSchemaAssertion;

use Flux\Eco\Assert\Core\Ports;

class JsonSchemaAssertionApi
class Api
{
private Ports\AssertService $jsonSchemaService;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace FluxEco\JsonSchemaAssertion\Adapters\Api;
namespace FluxEco\JsonSchemaAssertion\;



interface AssertJsonSchemaInstance {
interface JsonSchemaInstance {
/**
* Validation succeeds if,
* for each name that appears in both the instance and as a name within this keyword's value,
Expand Down

0 comments on commit 3af1ccf

Please sign in to comment.