actor: ApiTester
suite_namespace: App\Tests\Api
modules:
    # enable helpers as array
    enabled:
        - Asserts
        - Symfony:
              app_path: 'src'
              environment: 'test'
        - Doctrine:
              depends: Symfony
              cleanup: true # All doctrine queries will be wrapped in a transaction, which will be rolled back at the end of each test
        - \App\Tests\Support\Helper\ApiPlatform:
              url: ''
              base_path: '/api'
              depends: Symfony