- 134-tool registry with programmatic SEO (unique titles/H1/descriptions, JSON-LD graphs, sitemap index, canonical 301 enforcement via required filter) - DB-backed job queue (SKIP LOCKED) with drivers: Ffmpeg, Images (GD), Pdf (qpdf/gs/poppler), Youtube (thumbnails), Qr (server-side PNG) - Security: SSRF guard, MIME validation, rate limits, API-key auth, bcrypt admin login, security headers - Admin panel: dashboard, tools/categories/guides CRUD, SEO audit, analytics, job inspector with retry, system health, feature flags - Docker deployment (nginx + web/api FPM pools + scalable workers), PHPUnit suite (19 tests / 1139 assertions), PWA manifest + service worker
34 lines
756 B
PHP
34 lines
756 B
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
use CodeIgniter\Images\Handlers\GDHandler;
|
|
use CodeIgniter\Images\Handlers\ImageMagickHandler;
|
|
|
|
class Images extends BaseConfig
|
|
{
|
|
/**
|
|
* Default handler used if no other handler is specified.
|
|
*/
|
|
public string $defaultHandler = 'gd';
|
|
|
|
/**
|
|
* The path to the image library.
|
|
* Required for ImageMagick, GraphicsMagick, or NetPBM.
|
|
*
|
|
* @deprecated 4.7.0 No longer used.
|
|
*/
|
|
public string $libraryPath = '/usr/local/bin/convert';
|
|
|
|
/**
|
|
* The available handler classes.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
public array $handlers = [
|
|
'gd' => GDHandler::class,
|
|
'imagick' => ImageMagickHandler::class,
|
|
];
|
|
}
|