Fixed: basePath self→static binding, namespace detection, event wiring,
SQLite cache, file cache driver. All Mod Boot classes converted to
$listens pattern for lifecycle event discovery.
Working endpoints:
- /v1/explorer/info — live chain height, difficulty, aliases
- /v1/explorer/stats — formatted chain statistics
- /v1/names/directory — alias directory grouped by type
- /v1/names/available/{name} — name availability check
- /v1/names/lookup/{name} — name details
Co-Authored-By: Charon <charon@lethean.io>
64 lines
1.4 KiB
PHP
64 lines
1.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Core PHP Framework
|
|
*
|
|
* Licensed under the European Union Public Licence (EUPL) v1.2.
|
|
* See LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Core\Mail;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
/**
|
|
* Mail Module Service Provider.
|
|
*
|
|
* Provides email validation functionality:
|
|
* - Disposable email detection
|
|
* - Email format validation
|
|
*/
|
|
class Boot extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->app->singleton(EmailShield::class);
|
|
|
|
$this->registerBackwardCompatAliases();
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register backward compatibility class aliases.
|
|
*/
|
|
protected function registerBackwardCompatAliases(): void
|
|
{
|
|
// EmailShield alias for App\Services\Email namespace
|
|
if (! class_exists(\App\Services\Email\EmailShield::class)) {
|
|
class_alias(
|
|
EmailShield::class,
|
|
\App\Services\Email\EmailShield::class
|
|
);
|
|
}
|
|
|
|
// EmailValidationResult alias for App\Services\Email namespace
|
|
if (! class_exists(\App\Services\Email\EmailValidationResult::class)) {
|
|
class_alias(
|
|
EmailValidationResult::class,
|
|
\App\Services\Email\EmailValidationResult::class
|
|
);
|
|
}
|
|
}
|
|
}
|