Skip to content

v1.7.0

Choose a tag to compare

@reinfi reinfi released this 20 May 07:55
· 56 commits to main since this release
98b81de

What's Changed

Support for x-php-namespace

You can now define your schemas into their own namespace. The namespace will take your configured namespace into account and extend it.

components:
  schemas:
    Foo:
      x-php-namespace: Bar
      type: object
      required:
        - id
      properties:
        id:
          type: number

Full Changelog: v1.6.0...v1.7.0