npx skills add smithery/neversight --skill laravel-config-env-storage
noartem/skills
laravel-config-env-storage
Portable storage configuration across S3/R2/MinIO with optional CDN—env toggles, path-style endpoints, and URL generation
Installation
npx skills add noartem/skills --skill laravel-config-env-storage
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Build and configure Laravel 10+ applications, including creating Eloquent models and relationsh…
21.4K installsLaravel security best practices — authentication, authorization, Eloquent safety, CSRF, XSS pre…
9.6K installsLaravel architecture patterns, routing/controllers, Eloquent ORM, service layers, queues, event…
9.5K installsLaravel testing strategies with PHPUnit, Pest, model factories, HTTP tests, Sanctum authenticat…
8.7K installsVerification loop for Laravel projects: env checks, linting, static analysis, tests with covera…
7.5K installsDiscover and evaluate Laravel packages via LaraPlugins.io MCP. Use when the user wants to find …
7.3K installsAlso in this package
Other skills from noartem/skills · top by installs.
npx skills add noartem/skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md899 B -
docs
SUMMARY.md157 B
History
- First seen on skills.sh
- First recorded snapshot · 68 installs
SKILL.md
Storage Config (S3/R2/MinIO/CDN)
Configure storage once; switch providers via env.
Env
FILESYSTEM_DISK=s3
AWS_ACCESS_KEY_ID=...
AWS_SECRET_ACCESS_KEY=...
AWS_DEFAULT_REGION=auto
AWS_BUCKET=...
AWS_ENDPOINT=https://r2.example.com # for R2/MinIO
AWS_USE_PATH_STYLE_ENDPOINT=true # if required
MEDIA_CDN_URL=https://cdn.example.com # optional CDN/base URL
Tips
- Prefer pre‑signed URLs for uploads/downloads when possible
- For CDN, prefix public URLs with
MEDIACDNURL(app URL generation helper) - Use path‑style only when necessary; some providers require it
Testing
- Fake storage in unit tests (
Storage::fake('s3')) - Integration tests verify URL formats and ACLs