triniti/apollo

This package is abandoned and no longer maintained. The author suggests using the triniti/core package instead.

Php library that provides implementations for triniti:apollo schemas.

v2.0.0 2021-02-06 02:32 UTC

This package is auto-updated.

Last update: 2021-06-16 23:00:19 UTC


README

Build Status

Php library that provides implementations for triniti:apollo schemas. Using this library assumes that you've already created and compiled your own pbj classes using the Pbjc and are making use of the "triniti:apollo:mixin:*" mixins from triniti/schemas.

Symfony Integration

Enabling these services in a Symfony app by importing classes and letting Symfony autoconfigure and autowire them.

config/packages/apollo.yml:

services:
  _defaults:
    autowire: true
    autoconfigure: true
    public: false

  Triniti\Apollo\:
    resource: '%kernel.project_dir%/vendor/triniti/apollo/src/**/*'