Compare commits

..

2 Commits

Author SHA1 Message Date
c657ba4f60 - Added lean 1.4.2 version to composer 2026-07-16 11:53:53 -04:00
b8daa60e66 - Added PDO as requirement
- example now defined as mixed type in ContextField
2026-07-14 16:53:26 -04:00
2 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,8 @@
"php": "^8.4", "php": "^8.4",
"php-di/php-di": "dev-master", "php-di/php-di": "dev-master",
"ext-json": "*", "ext-json": "*",
"mcnd/lean": "dev-master" "ext-pdo": "*",
"mcnd/lean": "1.4.2"
}, },
"repositories": [ "repositories": [
{ {

View File

@ -18,7 +18,7 @@ class ContextField
public ?int $minValue = null, public ?int $minValue = null,
public ?int $maxValue = null, public ?int $maxValue = null,
public ?string $regexFormat = null, public ?string $regexFormat = null,
public ?string $example = null, public mixed $example = null,
public mixed $default = null, public mixed $default = null,
public bool $hidden = false, public bool $hidden = false,
) {} ) {}