ventusforge/flow-cors

CORS HTTP package for Neos

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:neos-application

pkg:composer/ventusforge/flow-cors

0.0.1 2025-12-27 16:45 UTC

This package is auto-updated.

Last update: 2026-01-23 10:11:22 UTC


README

This package provides a simple CORS controller for Flow applications.

The headers are only applied if the controller extends the AbstractCorsController class.

Configuration

Enable CORS support

VentusForge:
  Cors:
    enabled: true

Add different headers for a path

VentusForge:
  Cors:
    headers:
      /api/v1/some-api/create:
        'Access-Control-Allow-Methods':
          - 'PUT'
          - 'OPTIONS'

If a header is not defined, the default value from VentusForge.Cors.headers.defaults is used.

To remove a header, set it to null.

Override the origins

VentusForge:
  Cors:
    enabled: false
    headers:
      defaults:
        'Access-Control-Allow-Origin':
          - .foo-bar.com
          - .bar-baz.com'

Use the Abstract CORS Controller

<?php

declare(strict_types=1);

namespace Foo\Bar\Controller;

use Neos\Flow\Annotations as Flow;

class SomeController extends \VentusForge\Cors\Controller\AbstractCorsController
{
    /**
     * @inheritDoc
     */
    protected function initializeAction(): void
    {
        // if you override the initializeAction() method, make sure to call the parent method
        parent::initializeAction();
    }
}

Planned features

  • Replace the controller with a middleware