installed xefi\laravel-osdd

This commit is contained in:
2026-03-31 18:43:24 +02:00
parent 50e01ff5e0
commit 3d98788b01
30 changed files with 299 additions and 1531 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "technical/osdd",
"description": "OSDD technical configuration layer",
"type": "layer",
"version": "1.0.0",
"require": {
"xefi/laravel-osdd": "*"
},
"autoload": {
"psr-4": {
"Technical\\Osdd\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Technical\\Osdd\\Providers\\OsddServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}

View File

@@ -0,0 +1,10 @@
<?php
return [
'layers' => [
'paths' => [
'functional' => base_path('functional'),
'technical' => base_path('technical'),
],
],
];

View File

@@ -0,0 +1,18 @@
<?php
namespace Technical\Osdd\Providers;
use Xefi\LaravelOSDD\LayerServiceProvider;
class OsddServiceProvider extends LayerServiceProvider
{
public function boot(): void
{
$this->overrideConfigFrom(__DIR__ . '/../../config/osdd.php', 'osdd');
}
public function register(): void
{
//
}
}