Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Amp Laravel Package

amphp/amp

AMPHP (AMP) accelerates PHP concurrency with fibers, eliminating callbacks and generators. Built on PHP 8.1’s cooperative coroutines, it lets you run async tasks like sync code—ideal for I/O-bound apps. Use Amp\async() for parallel execution and Future::await() to handle results seamlessly. No event...

View on GitHub
Deep Wiki
Context7
Package
Description
Stars
Likes
Forks
Downloads
Issues
Score
Opportunity
License
Last Release
amphp/artax Deprecated (unmaintained) async HTTP/1.1 client for PHP built on Amp. Implements HTTP over raw TCP sockets (no ext/curl), with keep-alive pooling, redirects, gzip decoding, streaming bodies, TLS, cookies, and proxy support. Use amphp/http-client instead. 23 26 4 5K 0 0.1 22.5 MIT
View on GitHub
Context7
amphp/byte-stream Event-driven byte stream abstractions for PHP 8.1+ in the AMPHP ecosystem. Provides ReadableStream/WritableStream interfaces plus implementations like Payload, buffers, resource/iterable streams, stream chaining, base64 encode/decode, and decompression for fiber-friendly I/O. 395 392 29 4M 3 12.8 56.2 MIT 1 year ago
View on GitHub
Context7
amphp/cache Non-blocking cache library for Amp-based PHP apps. Provides async cache interfaces and adapters (e.g., in-memory, filesystem, Redis) with TTL support, atomic operations, and PSR-style ergonomics for high-concurrency services. 131 129 15 3M 0 5.7 55.3 MIT 2 years ago
View on GitHub
Context7
amphp/dns Async DNS resolver for PHP built on Amp. Provides non-blocking hostname lookups, record queries, caching and timeouts with an event loop, ideal for high-concurrency applications and CLI tools needing fast, reliable DNS without blocking I/O. 196 194 30 3M 6 12.9 56.8 MIT 4 weeks ago
View on GitHub
Context7
amphp/file Non-blocking file I/O for PHP 8.1+ in the AMPHP ecosystem. Read/write files or stream via async file handles while keeping apps responsive. Uses multi-process by default, with optional eio/uv/parallel drivers when available. 110 110 27 47K 6 26.5 43.1 MIT 4 months ago
View on GitHub
Context7
amphp/http-client Asynchronous HTTP client for PHP built on Revolt and fibers. Supports HTTP/1 & HTTP/2, concurrent requests, connection pooling, redirects, gzip/deflate, streaming bodies, TLS by default, forms, cookies, and proxies—no ext/curl dependency. 729 731 69 958K 7 32.2 50.8 MIT 4 months ago
View on GitHub
Context7
amphp/http-server Non-blocking, concurrent HTTP/1.1 and HTTP/2 application server for PHP 8.1+ built on Revolt and Amp (fibers). Includes TLS, middleware, gzip, and integrations for routing, static files, WebSockets, sessions, and more. 1,326 1,327 103 1M 12 40.0 52.8 MIT 2 months ago
View on GitHub
Deep Wiki
Context7
amphp/http-server-router amphp/http-server-router is a fast, async router for Amp’s HTTP server. It maps paths and methods to request handlers, supports route groups and parameters, and provides middleware-style dispatching for building clean, high-performance PHP microservices. 39 39 6 16K 1 2.9 36.0 MIT 3 years ago
View on GitHub
Context7
amphp/http-server-static-content AMPHP HTTP server component for efficiently serving static files (assets, downloads) with correct MIME types, caching headers, range requests, and directory handling. Designed for non-blocking, event-driven apps built on amphp/http-server. 22 22 12 2K 1 4.2 25.2 MIT 3 years ago
View on GitHub
Context7
amphp/http-tunnel AMPHP HTTP Tunnel provides asynchronous HTTP tunneling for PHP using Amp, enabling CONNECT-based proxy tunneling and transparent TCP-over-HTTP streams. Useful for building clients that need to reach services through HTTP proxies with non-blocking I/O. 13 13 3 33K 1 1.5 46.5 MIT 1 year ago
View on GitHub
Context7
amphp/log Amp’s minimal PSR-3 compatible logging library with a simple Logger interface and built-in handlers. Designed for async apps, it integrates cleanly with the amphp ecosystem while remaining lightweight and easy to extend with custom log targets and formatters. 40 40 5 80K 3 2.9 45.6 MIT 3 years ago
View on GitHub
Deep Wiki
Context7
amphp/parallel True parallel processing for PHP with AMPHP: run blocking tasks in worker processes or threads without blocking the event loop. Provides non-blocking concurrency tools and an easy worker pool API for distributing work; no extensions required (threads optional). 859 859 69 2M 20 36.6 58.6 MIT 4 months ago
View on GitHub
Deep Wiki
Context7
amphp/parallel-functions Wrap callables to run in parallel processes/threads with AMPHP. Provides helpers like parallelMap to execute CPU-heavy or blocking tasks concurrently; callable state must be serializable. Built for PHP 8.1+ with fibers-friendly concurrency. 279 280 18 104K 4 5.0 36.1 MIT 2 years ago
View on GitHub
Deep Wiki
Context7
amphp/phpunit-util Small utility for simplifying async testing in PHPUnit with AMPHP’s fiber-based concurrency. Integrates seamlessly with AsyncTestCase to run tests as coroutines, ensuring smooth execution of I/O-bound operations like sockets, streams, and HTTP requests. Works with PHP 8.1+. Ideal for testing concurr... 22 22 8 18K 1 4.8 39.9 MIT 2 years ago
View on GitHub
Context7
amphp/pipeline Fiber-safe concurrent iterators and collection operators for AMPHP. Build pipelines from iterables, map/filter/merge, and consume results from multiple fibers safely using ConcurrentIterator (foreach or manual continue/getValue/getPosition). Requires PHP 8.1+. 81 77 6 3M 1 24.5 64.2 MIT 1 month ago
View on GitHub
Deep Wiki
Context7
amphp/process Asynchronous process dispatcher for PHP (AMPHP) built for fibers and concurrency. Start and manage child processes cross-platform, stream stdout/stderr without blocking, set working directory and environment variables, powered by the Revolt event loop and Windows wrapper. 260 261 29 4M 10 29.7 66.3 MIT 3 months ago
View on GitHub
Context7
amphp/socket Async, non-blocking socket library for AMPHP. Provides client/server abstractions over TCP, UDP, and Unix domain sockets with DNS resolution, retries, connect timeouts, cancellation, and optional TLS encryption. Implements ReadableStream/WritableStream. 269 269 37 3M 6 33.6 66.2 MIT 4 weeks ago
View on GitHub
Context7
amphp/sql Async SQL library for PHP built on Amp. Provides non-blocking database connections, query execution, and result handling with a consistent API, enabling high-concurrency apps without blocking I/O. Supports common drivers and integrates cleanly with event-loop workflows. 20 20 5 38K 1 15.2 49.3 MIT 6 months ago
View on GitHub
Context7
amphp/sync Async synchronization primitives for Amp PHP: mutexes, semaphores, locks, and a synchronized helper. Coordinate concurrent fibers, ensure mutual exclusion, and cap parallel work (e.g., limit HTTP requests) with simple, safe abstractions. 194 192 12 3M 0 6.7 55.3 MIT 2 years ago
View on GitHub
Context7
amphp/websocket Shared WebSocket components for AMPHP’s event-driven, fiber-based concurrency stack. Provides core abstractions used by amphp/websocket-server and amphp/websocket-client to build fast, non-blocking WebSocket clients and servers (PHP 8.1+). 46 46 6 1M 0 4.9 55.3 MIT 1 year ago
View on GitHub
Deep Wiki
Context7
amphp/websocket-client Async WebSocket client for PHP built on Amp. Connect to ws/wss endpoints with fiber-friendly concurrency, consume realtime APIs, test WebSocket servers, and support custom handshakes, headers, heartbeats, and rate limits. 163 165 16 855K 6 9.2 53.0 MIT 1 year ago
View on GitHub
Deep Wiki
Context7
amphp/websocket-server Async WebSocket server for PHP built on Amp’s event-driven concurrency. Handles upgrades, connections, message streaming, backpressure and graceful shutdown, making it easy to build real-time apps like chat, dashboards and live notifications. 125 125 18 10K 2 5.2 26.3 MIT 2 years ago
View on GitHub
Context7
code-rhapsodie/dataflow-bundle Symfony bundle for building import/export dataflows: one reader, ordered processing steps (sync/async), and one or more writers. Includes CLI tools and scheduling for jobs, status/result reporting, and support for multiple Doctrine DBAL connections. 18 18 3 661 2 25.6 24.6 MIT 2 months ago
View on GitHub
Context7
darkwood/flow Flow is a PHP 8.5+ package for building asynchronous pipelines with a functional style. Define steps with generators, pass typed data through each stage, and await execution. Includes examples and docs, with a focus on assembling code as “flows”. 18 18 1 68 0 27.2 10.6 MIT 3 weeks ago
View on GitHub
Context7
innis/nostr-client 0 0 0 57 0 0.0 24.4 MIT
View on GitHub
Context7
innis/nostr-relay 0 0 0 16 0 0.0 17.0 MIT
View on GitHub
Context7
inspector-apm/neuron-ai Neuron is a PHP framework for building agentic AI apps: define and orchestrate AI agents, connect to LLM providers, load data, use tools, coordinate multiple agents, and monitor/debug runs. Works with Laravel or Symfony and supports end-to-end agent workflows. 2,059 2,039 235 32K 3 53.2 21.8 MIT 1 month ago
View on GitHub
Deep Wiki
Context7
laravel/lsp 280 262 15 5K 8 33.4 30.9 1 month ago
View on GitHub
Context7
m2mtech/flysystem-stream-wrapper Adds a PHP stream wrapper for Flysystem v2/v3 so you can use fly:// paths with native file functions (file_put_contents, mkdir, etc.). Includes Symfony Lock-based locking plus options to ignore visibility errors and emulate dir metadata. 19 19 14 9K 0 5.2 38.8 MIT 1 year ago
View on GitHub
Context7
neuron-core/neuron-ai Neuron is a PHP framework for building agentic apps: create and orchestrate AI agents, integrate LLM providers, load data, run multi-agent workflows, and monitor/debug behavior. Works well with Laravel and Symfony. 2,062 2,059 236 180K 3 53.0 33.6 MIT 1 month ago
View on GitHub
Deep Wiki
Context7
pestphp/pest-plugin-browser Pest Plugin for Browser adds browser testing capabilities to Pest, helping you write expressive end-to-end tests for your PHP applications. Part of the Pest ecosystem—see pestphp.com for docs and setup guidance. 138 137 142 1M 0 11.6 78.4 MIT
View on GitHub
Deep Wiki
Context7
phpro/grumphp GrumPHP is a Composer plugin that installs Git hooks to run quality checks on every commit. It executes configured tasks like tests and linters, blocks failing commits, and helps teams enforce coding standards and best practices automatically. 4,311 4,308 450 392K 4 64.5 33.1 MIT 1 month ago
View on GitHub
Deep Wiki
Context7
pixelandtonic/graphql-php PHP implementation of the GraphQL specification (based on graphql-js). Build schemas, execute queries, and add custom types, fields, and resolvers. Install via Composer and explore full docs and ready-to-run examples. 0 0 0 75K 0 0.0 55.3 MIT
View on GitHub
Context7
prooph/event-store Common interfaces and classes for Prooph Event Store implementations. Provides the core building blocks to work with event stores, with persistent implementations available via separate TCP and HTTP client packages. Supports PHP 7.4+ (v7). 548 549 74 19K 0 14.1 21.5 BSD-3-Clause 1 year ago
View on GitHub
Context7
vimeo/psalm Psalm is a PHP static analysis tool that finds type errors, dead code, and risky patterns before runtime. Add it to your CI to improve code quality, enforce stricter typing, and catch bugs early in applications and libraries. 5,885 5,897 707 2M 1,932 83.8 63.4 MIT 5 months ago
View on GitHub
Deep Wiki
Context7
webonyx/graphql-php Spec-compliant GraphQL server implementation for PHP, based on graphql-js. Build schemas, types, resolvers, validation and execution with full October 2021 spec support (Sept 2025 in progress). Foundation library used by many PHP frameworks. 4,718 4,742 575 2M 39 86.1 66.0 MIT 1 month ago
View on GitHub
Deep Wiki
Context7
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
calmfox/watch-sylius
damienfern/grpc-symfony-bundle
atoolo/index-bundle
atoolo/genai-bundle
coprotoai/laravel-ticket
davidjln/llm-carbon-bundle
cryonighter/valid-request-bundle
coolms/taxonomy-bundle
coolms/field-bundle
articulate-orm/symfony
aaix/laravel-tall-architect
ephoto/akeneo-connector
emmanuelballery/eb-plantumlbundle
emielburgman/symfony-visitor-beacon
emielburgman/symfony-visit-storage
emielburgman/symfony-security-headers
emielburgman/symfony-log-viewer
emarref/xdebug-bundle
emarref/pubnub-bundle
elriseio/finance-money-bundle