spiral/code-style
PER-2–based PHP CS Fixer ruleset for Spiral components. Install as a dev dependency, add a .php-cs-fixer.dist.php via the Builder to include project paths, run via composer scripts, and integrate checks or auto-fixes in GitHub Actions CI.
|
Package
|
Description
|
Stars
|
Likes
|
Forks
|
Downloads
|
Issues
|
Score
|
Opportunity
|
License
|
Last Release
|
|
|---|---|---|---|---|---|---|---|---|---|---|---|
| buggregator/trap | Buggregator Trap enhances PHP debugging with instant Symfony VarDumper integrations, handy helper functions, and a lightweight local Buggregator server (no Docker). Connect to any Buggregator server and pair with the PhpStorm plugin for a smooth workflow. | 269 | 272 | 16 | 138K | 31 | 37.6 | 55.4 | BSD-3-Clause | 1 month ago | |
| cycle/annotated | Adds annotation/attribute support for Cycle ORM: discovers mapping metadata from PHP docblocks or native attributes, builds entity schema definitions, and integrates with Cycle’s schema compiler. Useful for modeling entities without separate configuration files. | 28 | 28 | 14 | 20K | 9 | 31.8 | 49.0 | MIT | 2 weeks ago | |
| cycle/database | Cycle DBAL provides a secure PDO-based database layer with support for MySQL, PostgreSQL, SQLite, and SQL Server. Includes schema introspection/declaration, migrations, smart identifier quoting, query builders, nested queries, and transactions. | 65 | 65 | 30 | 25K | 24 | 38.4 | 52.7 | MIT | 1 week ago | |
| cycle/entity-behavior | Adds behavior attributes to Cycle ORM entities (UUID, timestamps, soft delete, optimistic lock, hooks, event listeners) plus an API to build custom behaviors. Use EventDrivenCommandGenerator when creating the ORM to enable event-driven commands. | 8 | 8 | 7 | 15K | 5 | 15.3 | 50.1 | MIT | 6 months ago | |
| cycle/migrations | Cycle Database Migrations provides structured, versioned database schema changes for Cycle ORM/DBAL. Configure a migrations directory and table, run pending migrations programmatically, and optionally include vendor migrations or generate migration files during schema compilation. | 20 | 20 | 18 | 19K | 10 | 14.2 | 45.4 | MIT | 10 months ago | |
| cycle/orm | Cycle ORM is a PHP DataMapper and modeling engine for safe use in classic and long-running apps (e.g., RoadRunner). Supports POPOs, flexible schemas, rich relations, eager/lazy loading, powerful queries, and MySQL/Postgres/SQLite/SQLServer. | 1,329 | 1,332 | 84 | 23K | 82 | 56.7 | 50.6 | MIT | 2 weeks ago | |
| cycle/schema-builder | Fluent PHP schema builder for Cycle ORM. Define tables, columns, indexes and relations in code, then generate/compile database schema changes for migrations and tooling. Helps keep your domain models and database structure in sync. | 15 | 15 | 13 | 24K | 7 | 13.6 | 47.4 | MIT | 10 months ago | |
| cycle/schema-renderer | Render Cycle ORM schemas as terminal-friendly output or generate PHP/array representations. Convert Schema/SchemaInterface to arrays (including optional custom properties), then render with colorized Symfony Console output; extend templates via custom console renderers. | 10 | 10 | 6 | 13K | 2 | 11.9 | 45.6 | MIT | 7 months ago | |
| internal/destroy | Explicit, deterministic resource cleanup for PHP via a Destroyable interface. Breaks circular reference chains and prevents memory leaks in long-running apps without relying on __destruct() or expensive gc_collect_cycles(). Ideal for daemons and event loops. | 56 | 55 | 0 | 215K | 0 | 5.9 | 51.7 | BSD-3-Clause | 8 months ago | |
| internal/dload | DLoad simplifies downloading and managing binary artifacts in PHP projects. Auto-install tools like RoadRunner or Temporal with version constraints, cross-platform support, and optional custom builds—keeping binaries out of VCS and onboarding fast. | 102 | 101 | 3 | 29K | 17 | 35.3 | 45.5 | BSD-3-Clause | 3 weeks ago | |
| internal/path | Type-safe, immutable PHP path value object. Normalizes paths, handles separators cross-platform, and supports joining segments, inspecting components (name/stem/ext/parent), absolute/relative conversion, and filesystem checks (exists, file/dir, writable). | 12 | 12 | 0 | 35K | 1 | 11.4 | 51.3 | BSD-3-Clause | 6 months ago | |
| internal/promise | Lightweight Promises/A implementation for PHP (fork of reactphp/promise). PHP 8.1+ compatible with strict types and improved type annotations. Drop-in replacement for react/promise v2/v3 with reusable rejection handling and safer defaults. | 53 | 53 | 1 | 154K | 0 | 9.1 | 51.0 | MIT | 7 months ago | |
| internal/toml | PHP 8.1+ TOML 1.0.0/1.1.0 parser and encoder. Parse TOML strings/files into PHP arrays or an AST, modify documents, and serialize back to TOML with round-trip support. | 5 | 5 | 0 | 23K | 1 | 19.1 | 56.9 | BSD-3-Clause | 2 months ago | |
| llm/skills | — | 19 | 18 | 1 | 2K | 1 | 23.0 | 32.4 | BSD-3-Clause | 1 week ago | |
| spiral/attributes | Spiral Attributes is a lightweight PHP 8 attributes toolkit for reading, filtering, and working with attributes via reflection. Used by the Spiral framework, it provides a small, focused API for attribute discovery and metadata handling. | 24 | 23 | 4 | 294K | 1 | 3.7 | 55.2 | MIT | 1 year ago | |
| spiral/composer-publish-plugin | Composer plugin for Spiral apps that streamlines publishing package assets and configs into your project during install/update. Automates vendor asset deployment via Composer, reducing manual steps and keeping published files in sync. | 4 | 4 | 2 | 140K | 0 | 2.2 | 55.3 | MIT | 5 years ago | |
| spiral/framework | Spiral Framework is a high-performance, long-running full-stack PHP framework built for RoadRunner. PSR-compliant components, resident memory kernel, and native support for queues, GRPC, WebSockets, and background workers. | 2,047 | 2,048 | 91 | 96K | 44 | 53.4 | 45.6 | MIT | 1 month ago | |
| spiral/goridge | High-performance PHP-to-Go IPC bridge for calling Golang net/rpc services from PHP. Works over TCP/Unix sockets or pipes, supports JSON/MsgPack and raw []byte payloads, includes robust error handling, runs on Windows, and has minimal dependencies. | 122 | 125 | 11 | 538K | 0 | 25.2 | 58.7 | MIT | 3 weeks ago | |
| spiral/grpc-client | Powerful, extensible PHP gRPC client with a simple Guzzle-like API. Supports standalone use or Spiral integration, configurable via DTOs, includes common interceptors (timeouts, retries) and dedicated exceptions. Requires the PHP gRPC extension. | 41 | 41 | 1 | 91K | 1 | 18.2 | 52.6 | MIT | 2 months ago | |
| spiral/roadrunner-bridge | Bridge RoadRunner plugins into Spiral Framework apps. Provides bootloaders for HTTP, Queue/Jobs, KV Cache, gRPC, Centrifugo, TCP, Metrics, Logger, Locks, and scaffolding integration. Requires PHP 8.1+ and Spiral 3.14+. | 64 | 64 | 11 | 97K | 13 | 23.6 | 52.2 | MIT | 6 months ago | |
| spiral/roadrunner-grpc | Laravel-friendly integration for RoadRunner gRPC: run high-performance PHP gRPC servers/workers, handle protobuf-based services, and communicate with the RoadRunner runtime for fast, long-lived processes and efficient microservices. | 65 | 67 | 14 | 155K | 0 | 4.9 | 47.1 | MIT | 2 days ago | |
| spiral/roadrunner-http | HTTP plugin for the RoadRunner PHP application server. Provides PSR-7/PSR-17 based request/response handling, middleware support, and integration helpers to run high-performance PHP apps with persistent workers and fast HTTP serving. | 80 | 81 | 9 | 465K | 0 | 21.8 | 58.6 | MIT | 3 months ago | |
| spiral/roadrunner-kv | RoadRunner KV provides a fast, simple key-value storage layer for PHP apps running on RoadRunner. Store and retrieve data via an in-memory or configured KV backend with minimal overhead—useful for caching, flags, and lightweight shared state across workers. | 11 | 11 | 3 | 269K | 0 | 2.8 | 55.3 | MIT | 1 year ago | |
| spiral/roadrunner-worker | PHP worker library for running apps on RoadRunner with the Spiral ecosystem. Provides a Worker API to handle incoming requests/jobs and communicate with the RoadRunner server, enabling high-performance, long-running PHP processes for HTTP and background tasks. | 21 | 21 | 5 | 542K | 0 | 26.6 | 65.0 | MIT | 1 year ago | |
| spiral/testing | Testing SDK for Spiral Framework packages. Provides a custom TestCase with a TestApp so you can test packages without a full application setup. Configure root directory and bootloaders, and keep test app config under tests/app. PHP 8.1+, Spiral 3.15+. | 7 | 7 | 7 | 92K | 9 | 31.2 | 67.9 | MIT | 4 weeks ago | |
| spiral/twig-bridge | Twig adapter for the Spiral Framework. Adds a Twig view engine via TwigBootloader, with support for custom extensions, options, and processors. Configure eagerly through TwigEngine or lazily through TwigBootloader. Requires spiral/views. | 0 | 0 | 2 | 2K | 2 | 4.4 | 43.9 | MIT | 3 years ago | |
| spiral/validator | Spiral Validator is a lightweight PHP validation component for the Spiral Framework. Define rules, validate arrays and DTOs, collect detailed error messages, and integrate cleanly with requests, forms, and domain services for consistent input validation. | 4 | 4 | 3 | 120K | 1 | 15.9 | 60.4 | MIT | 5 months ago | |
| temporal/sdk | Temporal PHP SDK for building durable, scalable workflow orchestration with Temporal. Author Workflows and Activities in PHP, run them with RoadRunner workers, and manage executions via gRPC clients. Composer-installable with optional protobuf for performance. | 407 | 403 | 57 | 223K | 40 | 41.4 | 62.0 | MIT | 2 months ago | |
| testo/testo | Testo is an extensible PHP testing framework with a lightweight core and middleware system. It lets you fully control your test environment while keeping familiar PHP syntax. Includes an init command, suite/plugin config via testo.php, and Composer scripts. | 0 | 181 | — | 2K | — | 42.2 | 26.4 | — | — |
How can I help you explore Laravel packages today?