├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Plugin.php ├── README.md ├── classes ├── Cors.php ├── CorsService.php ├── HandleCors.php ├── HandlePreflight.php ├── OriginMatcher.php └── ServiceProvider.php ├── composer.json ├── lang ├── de │ └── lang.php └── en │ └── lang.php ├── models ├── Settings.php └── settings │ └── fields.yaml ├── plugin.yaml └── updates └── version.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/README.md -------------------------------------------------------------------------------- /classes/Cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/classes/Cors.php -------------------------------------------------------------------------------- /classes/CorsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/classes/CorsService.php -------------------------------------------------------------------------------- /classes/HandleCors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/classes/HandleCors.php -------------------------------------------------------------------------------- /classes/HandlePreflight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/classes/HandlePreflight.php -------------------------------------------------------------------------------- /classes/OriginMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/classes/OriginMatcher.php -------------------------------------------------------------------------------- /classes/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/classes/ServiceProvider.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /lang/de/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/lang/de/lang.php -------------------------------------------------------------------------------- /lang/en/lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/lang/en/lang.php -------------------------------------------------------------------------------- /models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/models/Settings.php -------------------------------------------------------------------------------- /models/settings/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/models/settings/fields.yaml -------------------------------------------------------------------------------- /plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/plugin.yaml -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OFFLINE-GmbH/oc-cors-plugin/HEAD/updates/version.yaml --------------------------------------------------------------------------------