Libraries tagged by php5.3
mrkrstphr/php-gedcom
15204 Downloads
A GEDCOM file parser (read + write) for PHP 5.3+
mindplay/benchpress
2580 Downloads
A simple benchmark suite for PHP 5.3 and up
macellan/sentry
22319 Downloads
PHP 5.3+ Fully-featured Authentication & Authorization System
kristianbb/php-emv
13667 Downloads
A collection of EMV tools and utilities for PHP 5.3+ (fork of Massimo Lombardo's project)
jaapz/tumblr
6288 Downloads
Tumblr API wrapper for PHP 5.3
irap/logging
5804 Downloads
Cli Menu code for writing CLI applications in PHP 5.3+
hotarucms/hotarucms
20 Downloads
Bookmarking CMS for PHP 5.3
godruoyi/easy-container
5030 Downloads
A small PHP 5.3 dependency injection container extended from Laravel container.
goatherd/goatherd-library-uuid
3355 Downloads
UUID generator for PHP 5.3 or newer
genai/web
71 Downloads
Web/MVC layer over genai/http: #[Controller]/#[RestController] (with a base path) and #[Route] attributes, a View value object, a default genai/view engine (override with #[ViewRegister]), and a dispatcher. Routes compile to genai/routing's standalone matcher. Runtime is PHP 5.3-safe; the attributes/processors are PHP 8 build-time.
genai/view
71 Downloads
Minimal PHP template renderer producing HTML strings, compatible with PHP 5.3.29
genai/validation
67 Downloads
Attribute-based validation compiled to a reflection-free validator. Put #[NotBlank]/#[Email]/#[Length]/#[Pattern]/#[Matches] on a #[Validate] form class; a build-time processor bakes the rules into Cache\Validation. At runtime, validate a populated form object -> a field=>error map, no reflection. PHP 5.3-safe runtime.
genai/trace
68 Downloads
Request correlation IDs for centralized logging. A TraceInterceptor reads X-Request-Id (or generates one), exposes it via a TraceContext bean + a global trace_id(), echoes it on the response, and a Monolog processor stamps it on every log line. PHP 5.3-safe at runtime.
genai/sql-mapper
67 Downloads
MyBatis-style SQL mapper: mark an interface #[Mapper] and its methods #[Select]/#[Insert]/#[Update]/#[Delete] with the SQL. A build-time processor compiles a reflection-free Cache\ implementation (prepared statements, #{name} bound params, optional row->object hydration) and registers it as a container bean keyed by the interface. Self-contained: a bundled DatabaseConfig provides the 'PDO' bean from a [database] group in the app's app.ini, so you only edit config. Runtime is PHP 5.3-safe.
genai/session
79 Downloads
Session component with pluggable storage: native files (default), a project file dir (cache/session), or a database (PDO). A small Session API over native PHP sessions; a SessionStore save-handler decides where the data lives. Driver chosen from the [session] config group. PHP 5.3-safe runtime.