illuminate/filesystem
Illuminate Filesystem is Laravel’s filesystem abstraction, providing a clean API for local and cloud storage. It supports multiple “disks” (local, S3, FTP, etc.), file operations, streaming, visibility, and configuration via the Flysystem adapter layer.
|
Package
|
Score
|
Description
|
Stars
|
Likes
|
Forks
|
Downloads
|
Issues
|
Score
|
Opportunity
|
License
|
Last Release
|
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| illuminate/log | 0.87 | Illuminate Log provides Laravel’s logging layer, built on Monolog. It lets you write messages to configurable channels and stacks, including single files, daily rotation, syslog, errorlog, and external services, with context data, processors, and runtime channel selection. | 62 | 64 | 9 | 331K | 0 | 0.6 | 51.4 | MIT | — | |
| league/flysystem-local | 0.87 | Flysystem Local adapter sub-split for storing files on the local filesystem. Install via composer require league/flysystem-local. For issues and pull requests, use the main Flysystem repo; see the docs for configuration and usage. | 226 | 229 | 4 | 10M | 0 | 1.3 | 55.3 | MIT | — | |
| illuminate/database | 0.86 | Illuminate Database is Laravel’s standalone database toolkit for PHP: expressive query builder, Eloquent ORM (ActiveRecord), and schema builder. Supports MySQL, Postgres, SQL Server, and SQLite, and can be used via Capsule outside Laravel. | 2,761 | 2,980 | 609 | 796K | 0 | 29.5 | 35.9 | MIT | — | |
| illuminate/http | 0.86 | Illuminate Http provides Laravel’s HTTP layer: a rich Request and Response API, input and file handling, headers/cookies, sessions, redirects, and helpers for working with Symfony HTTP components. Useful for building middleware and controllers cleanly. | 119 | 131 | 38 | 516K | 0 | 1.8 | 50.2 | MIT | — | |
| illuminate/container | 0.85 | Illuminate Container is Laravel’s lightweight dependency injection container for resolving classes, managing bindings, singletons, contextual dependencies, and automatic constructor injection. It powers service resolution and inversion of control in Laravel apps and packages. | 312 | 325 | 60 | 1M | 0 | 3.4 | 49.5 | MIT | — | |
| illuminate/console | 0.85 | Illuminate Console provides the Artisan command-line framework used by Laravel. Define commands, schedule tasks, manage input/output, prompts, and terminal styling, and integrate with the service container to build robust CLI tools and automation. | 129 | 136 | 28 | 628K | 0 | 1.5 | 50.9 | MIT | — | |
| symfony/filesystem | 0.85 | Symfony Filesystem component offers practical utilities for working with files and directories: create, copy, move, remove, mirror, and chmod/chown paths, with robust error handling and portability across platforms. Ideal for safe filesystem operations in PHP apps. | 4,646 | 4,703 | 48 | 12M | 0 | 55.3 | 55.3 | MIT | 1 week ago | |
| league/flysystem-aws-s3-v3 | 0.85 | Flysystem AWS S3 v3 adapter for PHP. Use it to store and retrieve files on Amazon S3 via the Flysystem filesystem abstraction. Install with composer require league/flysystem-aws-s3-v3; docs available on flysystem.thephpleague.com. | 1,641 | 1,673 | 222 | 6M | 0 | 15.1 | 49.6 | MIT | — | |
| illuminate/config | 0.84 | Illuminate Config is Laravel’s configuration repository. It loads and merges config files, lets you read and set values at runtime, supports environment-based defaults, and provides a consistent API for accessing app settings across services and packages. | 108 | 116 | 11 | 589K | 0 | 0.9 | 51.6 | MIT | — | |
| php-standard-library/filesystem | 0.84 | Type-safe filesystem utilities for PHP Standard Library. Perform common file and directory operations with consistent APIs and proper exception handling, improving safety and clarity over raw PHP functions. Documentation and contribution links included. | 1 | 0 | 0 | 5K | 0 | 20.6 | 55.8 | MIT | 2 weeks ago | |
| php-standard-library/file | 0.84 | Typed PHP file handles for safe reading and writing, with explicit write modes and advisory locking. Part of PHP Standard Library, aiming for clear, reliable filesystem I/O primitives suitable for applications and reusable packages. | 1 | 0 | 0 | 9K | 0 | 20.6 | 59.7 | MIT | 2 weeks ago | |
| symplify/smart-file-system | 0.84 | Lightweight PHP file system utilities for safer, smarter file operations. Provides convenient wrappers around common read/write actions, path handling and file info helpers, aimed at simplifying scripts and package tooling with a clean, pragmatic API. | 77 | — | 4 | — | 0 | 0.3 | — | MIT | — | |
| illuminate/cache | 0.84 | — | 128 | 135 | 25 | 485K | 0 | 1.4 | 49.4 | MIT | — | |
| illuminate/session | 0.83 | Illuminate Session provides Laravel’s session management layer, including session stores, handlers, middleware support, flash data, and CSRF-friendly session integration. Use it to persist user state across requests with a consistent API, in Laravel or standalone. | 99 | 101 | 19 | 563K | 0 | 1.1 | 51.8 | MIT | — | |
| league/flysystem | 0.83 | League/Flysystem is a filesystem abstraction for PHP that provides a consistent API for local disks and cloud storage like S3. Swap adapters without changing your app, with support for reading/writing files, directories, visibility, and streams. | 13,563 | 13,944 | 848 | 12M | 84 | 84.6 | 82.7 | MIT | 2 years ago | |
| phpdocumentor/filesystem | 0.83 | Lightweight filesystem utilities from phpDocumentor: path handling, directory/file discovery, and convenience helpers for interacting with the local filesystem. Useful as a small dependency for tools that need consistent file operations and traversal. | 1 | 1 | 0 | 10K | 0 | 0.0 | 51.4 | MIT | — | |
| joomla/filesystem | 0.82 | Joomla Framework filesystem utilities for common file operations. Includes helpers for safe filenames, uploads, and path handling, with a patcher component for applying file patches. Install via Composer and use in PHP apps needing lightweight filesystem tooling. | 11 | 12 | 19 | 11K | 6 | 27.1 | 50.4 | GPL-2.0 | 7 months ago | |
| illuminate/testing | 0.81 | Laravel’s Illuminate Testing package provides the core testing helpers used by the framework—HTTP and console test utilities, assertions, test case scaffolding, and support traits—making it easier to write fast, expressive PHPUnit tests for Laravel applications and packages. | 33 | 33 | 10 | 292K | 0 | 0.5 | 54.3 | MIT | — | |
| illuminate/collections | 0.81 | Illuminate Collections provides a fluent, chainable API for working with arrays and iterables in PHP. Includes Collection and LazyCollection with powerful mapping, filtering, grouping, sorting, and higher-order operations, used widely across Laravel and standalone projects. | 271 | 290 | 48 | 2M | 0 | 2.8 | 53.4 | MIT | — |
How can I help you explore Laravel packages today?