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

Php Cs Fixer Config Laravel Package

amphp/php-cs-fixer-config

Shared PHP-CS-Fixer configuration used across amphp projects. Install as a dev dependency, create a .php_cs.dist that returns Amp\CodeStyle\Config, configure the Finder paths and cache file, and run php-cs-fixer locally or in CI (e.g., Travis) for consistent styling.

View on GitHub
Deep Wiki
Context7
Package
Description
Stars
Likes
Forks
Downloads
Issues
Score
Opportunity
License
Last Release
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... 4,419 4,433 258 3M 15 47.8 47.0 MIT 9 months ago
View on GitHub
Deep Wiki
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. 393 393 28 3M 2 12.3 54.3 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. 129 128 16 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. 192 193 30 3M 6 12.5 56.4 MIT 1 year 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 111 27 42K 6 30.3 43.5 MIT 1 month ago
View on GitHub
Context7
amphp/hpack Fast HPACK (HTTP/2 header compression) implementation for PHP by amphp. Provides efficient encoding/decoding of header blocks with dynamic tables, Huffman coding, and compliance-focused behavior, suitable for high-performance HTTP/2 clients and servers. 109 109 7 975K 1 22.9 62.9 MIT 1 month ago
View on GitHub
Context7
amphp/http Event-driven HTTP primitives for PHP 8.1+ in the AMPHP ecosystem. Provides shared building blocks for HTTP clients and servers, including IANA status codes with default reasons, RFC 6265 cookie parsing/creation (Set-Cookie/Cookie), and header utilities. 103 103 10 950K 1 8.0 55.0 MIT 1 year 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 67 930K 7 35.9 52.2 MIT 1 month 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,323 1,324 102 812K 11 39.9 48.3 MIT 1 month 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 18K 1 2.9 36.8 MIT 2 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. 21 21 12 2K 1 4.2 27.4 MIT 2 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.6 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 76K 3 2.9 45.3 MIT 2 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). 851 858 68 2M 20 40.1 60.8 MIT 1 month 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 114K 4 5.0 36.6 MIT 2 years ago
View on GitHub
Deep Wiki
Context7
amphp/parser Streaming parser helper for AMPHP: build incremental, generator-based parsers for line-, delimiter-, or length-based protocols. Feed data via Parser::push(); yield a delimiter string, byte length, or null to flush/await more input. PHP 7.4+ compatible. 150 150 4 3M 1 1.9 55.2 MIT 2 years ago
View on GitHub
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 27K 1 4.8 42.4 MIT 1 year 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+. 77 76 6 3M 2 23.0 63.8 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. 256 257 29 2M 10 14.0 57.3 MIT 2 weeks ago
View on GitHub
Context7
amphp/serialization AMPHP serialization tools for IPC and storage in PHP. Provides a Serializer interface with JSON, native PHP serialize/unserialize, and passthrough implementations, plus optional payload compression via a wrapping serializer. 136 134 3 3M 1 18.6 63.5 MIT 2 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. 266 266 37 3M 6 30.9 64.8 MIT 1 month 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 36K 1 18.0 50.1 MIT 3 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. 191 190 12 3M 0 6.7 55.3 MIT 1 year 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 731K 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. 162 164 16 750K 6 11.7 53.5 MIT 9 months 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 124 17 6K 2 5.1 23.7 MIT 2 years ago
View on GitHub
Context7
kelunik/certificate Generate and manage X.509 certificates in PHP with a simple API. Create CSRs, self-signed and CA-signed certs, handle keys and certificate chains, and export common formats—ideal for TLS tooling, service provisioning, and automation. 110 113 3 3M 2 2.6 55.5 MIT 3 years ago
View on GitHub
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.
directorytree/privacy-filter-classifier
directorytree/privacy-filter
datacore/hub-sdk
develia/commons
cuci/prototurk-sdk
cuci/prototurk-sdk-symfony
develia/geo-bundle
dreamzy/livewire-charts
touchestate-sdk/php-sdk
22h/doctrine-garbage-collection-bundle
agtp/agtp-php
agtp/mod-php
splash/sonata-admin
splash/metadata
splash/openapi
splash/scopes
splash/toolkit
testo/output-teamcity
testo/bridge-symfony
spatie/flare-daemon-runtime