PackageTrack
Sign in Get early access

platformcommunity/flysystem-bunnycdn

Flysystem adapter for BunnyCDN

v3.4.1 549K downloads/mo #4083 most downloaded on Packagist PlatformCommunity/flysystem-bunnycdn

What this package is like to depend on

Last release 8 days ago

15 Aug 2026

Release timing varies

gaps range from 1 weeks to 1.2 years

Rarely documented

notes for 9 of 50 stable releases

Nothing withdrawn

no release was ever pulled

7 years old

51 releases · first in 2019

7 releases in the last 12 months

see the full history below

Release timeline

49 releases · Dec 2019 to Aug 2026
2020 2021 2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 51
  1. v3.4.1 15 Aug 2026
    Release notes

    What's Changed

    Fixed

    • Empty root listings (e.g. Laravel allFiles()) — storage request URLs for root-level paths contained a double slash (https://{region}.storage.bunnycdn.com/{zone}//), which the Bunny API rejects. Paths are now normalized in a single place, with a regression test asserting the exact request URI (#75)

    Full Changelog: v3.4.0...v3.4.1

    Open source →
    Release notes

    Fixed

    • Storage request URLs could contain a double slash for root-level paths (https://{region}.storage.bunnycdn.com/{zone}//), which the Bunny API rejects — root listings (e.g. Laravel's allFiles()) could come back empty (#75). Paths are now normalized in a single place, and a regression test asserts the exact request URI.
    Open source →
  2. v3.4.0 15 Aug 2026
    Release notes

    What's Changed

    Added

    • Root path support — third BunnyCDNAdapter constructor argument is now a root path prefix, scoping all operations to a storage-zone subdirectory (#96)
    • Laravel-compatible temporary URLsgetTemporaryUrl() makes Storage::disk('bunnycdn')->temporaryUrl() work out of the box (#97)

    Changed

    • PHP floor raised to ^8.3 (8.2 EOL 31 Dec 2026)
    • fzaninotto/faker (abandoned) → fakerphp/faker; laravel/pint ^0.2^1.30; phpunit ^10^11.5
    • PHPStan level 0 → 5 (phpstan.neon.dist); tests migrated to #[Test] attributes
    • CI: modernized actions, PHP 8.3/8.4/8.5 matrix, local PHPStan, guarded steps for legacy branches

    Fixed

    • deleteDirectory('') could delete the storage zone root — now guarded
    • Numeric/boolean file content no longer TypeErrors on download()
    • Malformed timestamps no longer fatal in lastModified()
    • writeBatch() failures report the target path, not a batch index

    Tests

    • 158 → 235 tests, incl. full conformance suite for root-scoped adapters (RootTest)

    Full Changelog: v3.3.10...v3.4.0

    Open source →
    Release notes

    Added

    • Root path support — the third BunnyCDNAdapter constructor argument is now a root path prefix, scoping all operations (write, read, list, delete, move, copy, URLs) to a subdirectory of the storage zone. Listed paths are root-relative; public and temporary URLs are root-scoped and signed against the root-scoped path. Resolves the long-requested "root" config support (#96, discussion #30).
    • Laravel-compatible temporary URLsBunnyCDNAdapter::getTemporaryUrl() implements the method Laravel's FilesystemAdapter looks for, so Storage::disk('bunnycdn')->temporaryUrl() now works out of the box. Accepts a DateTimeInterface or minutes-from-now integer, plus additional query parameters that are signed into the URL (#97).

    Changed

    • PHP floor raised to ^8.3 (PHP 8.2 reaches end-of-life 31 December 2026).
    • Replaced the abandoned fzaninotto/faker with fakerphp/faker (drop-in, same namespace).
    • laravel/pint ^0.2.3^1.30 (fixes PHP 8.5 deprecation warnings).
    • phpunit/phpunit ^10.0^11.5 (10.x is end-of-life; PHPUnit 12+ drops the doc-comment metadata support that flysystem-adapter-test-utilities relies on).
    • PHPStan raised from the default level 0 to level 5 via phpstan.neon.dist; reported issues fixed.
    • Test methods migrated from @test doc-comments to #[Test] attributes (deprecated in PHPUnit 11).
    • CI: actions/checkout@v7, shivammathur/setup-php@v2, actions/cache@v6, codecov/codecov-action@v7 (replacing the deprecated bash uploader); PHP matrix 8.3/8.4/8.5; PHPStan and Pint steps guarded so the shared workflow keeps working on the legacy v1/v2 branches.

    Fixed

    • deleteDirectory('') could send a DELETE for the storage zone root — now guarded with UnableToDeleteDirectory.
    • Files whose content is numeric or boolean (e.g. 123) no longer fail download() with a TypeError — non-array JSON payloads return the raw body.
    • parse_bunny_timestamp() no longer fatals on malformed timestamps (falls back to 0).
    • writeBatch() failures now report the failing target path instead of a numeric batch index.
    • lastModified() / fileSize() on directories now throw UnableToRetrieveMetadata explicitly instead of relying on a return-type TypeError.

    Tests

    • New RootTest — full flysystem conformance suite against a root-scoped adapter, plus targeted root tests (trailing-slash normalization, root scoping, root-relative listings, root-signed temporary URLs, writeBatch with root, root + PathPrefixedAdapter composition).
    • Regression tests for the root-deletion guard, malformed timestamps, request() JSON decode edge cases, and full-URL temporary URLs with a root configured.
    • Suite grew from 158 to 235 tests.
    Open source →
  3. v3.3.10 04 Feb 2026
    Release notes

    What's Changed

    Full Changelog: v3.3.8...v3.3.10

    Open source →
    Release notes

    Added

    • Ability to add query params to a temporary URL (#95).
    • Pull zone URL to temporary URL generation (#93).
    Open source →
  4. v3.3.9 26 Jan 2026
    Release notes

    What's Changed

    • Temporary URLs with Pull Zone Prefixes in #93

    Full Changelog: v3.3.7...v3.3.9

    Open source →
  5. v3.3.8 23 Jan 2026
    Release notes

    What's Changed

    Full Changelog: v3.3.6...v3.3.8

    What's Changed

    Full Changelog: v3.3.6...v3.3.8

    Open source →
    Release notes

    Added

    • Support for temporary URLs (#88).
    Open source →
  6. v3.3.7 23 Jan 2026

    Nothing published for this version

  7. v3.3.6 22 Jan 2026
    Release notes

    What's Changed

    New Contributors

    Full Changelog: v3.3.5...v3.3.6

    Open source →
  8. v3.3.5 29 Oct 2024
    Release notes

    What's Changed

    New Contributors

    Full Changelog: v3.3.4...v3.3.5

    Open source →
    Release notes

    Fixed

    • Checksum and metadata handling fixes.
    Open source →
  9. v3.3.4 25 Apr 2024
    Release notes

    What's Changed

    • feat: prevent deleting file when moving to same destination by @tinect in #71
    • fix: ignore NotFoundExceoption when deleting directory by @tinect in #72
    • fix: determine the correct type of file or directory on the specific methods by @tinect in #74

    Full Changelog: v3.3.3...v3.3.4

    Open source →
  10. v3.3.3 29 Jan 2024
    Release notes

    What's Changed

    • feat: prevent delete operation from deleting all contents by @tinect in #68
    • Ensure base url is correct when the API returns uppercase region by @joshbmarshall in #69

    New Contributors

    Full Changelog: v3.3.2...v3.3.3

    Open source →
  11. v3.3.2 25 Sep 2023

    Nothing published for this version

  12. v3.3.1 23 Nov 2022

    Nothing published for this version

  13. v3.3.0 16 Nov 2022

    Nothing published for this version

  14. v3.2.4 12 Nov 2022

    Nothing published for this version

  15. v3.2.3 12 Nov 2022

    Nothing published for this version

  16. v3.2.2 no date

    Nothing published for this version

  17. v3.2.1 25 Jul 2022

    Nothing published for this version

  18. v3.2.0 23 Jul 2022

    Nothing published for this version

  19. v3.1.4 14 Jul 2022

    Nothing published for this version

  20. v3.1.3 13 Jul 2022

    Nothing published for this version

  21. v3.1.2 13 Jul 2022

    Nothing published for this version

  22. v3.1.1 15 Apr 2022

    Nothing published for this version

  23. v3.1.0 16 Mar 2022

    Nothing published for this version

  24. v3.0.1 21 Feb 2022

    Nothing published for this version

  25. v3.0.0 21 Feb 2022

    Nothing published for this version

  26. v3.0.0-alpha-1 21 Feb 2022 pre-release

    Nothing published for this version

  27. v2.4.0 16 Nov 2022

    Nothing published for this version

  28. v2.3.1 15 Apr 2022

    Nothing published for this version

  29. v2.3.0 16 Mar 2022

    Nothing published for this version

  30. v2.2.0 21 Feb 2022

    Nothing published for this version

  31. v2.1.1 14 Jan 2022

    Nothing published for this version

  32. v2.1.0 14 Jan 2022

    Nothing published for this version

  33. v2.0.0 14 Jan 2022

    Nothing published for this version

  34. v1.3.1 15 Apr 2022

    Nothing published for this version

  35. v1.3.0 16 Mar 2022

    Nothing published for this version

  36. v1.2.1 21 Feb 2022

    Nothing published for this version

  37. v1.2.0 21 Feb 2022

    Nothing published for this version

  38. v1.1.1 14 Jan 2022

    Nothing published for this version

  39. v1.1.0 14 Jan 2022

    Nothing published for this version

  40. v1.0.0 13 Jan 2022

    Nothing published for this version

  41. v0.3.5 13 Jan 2022

    Nothing published for this version

  42. v0.3.4 12 Jan 2022

    Nothing published for this version

  43. v0.3.3 22 May 2021

    Nothing published for this version

  44. v0.3.2 25 Nov 2020

    Nothing published for this version

  45. v0.3.1 30 Sep 2020

    Nothing published for this version

  46. v0.2.2 30 Sep 2020

    Nothing published for this version

  47. v0.2.1 08 Dec 2019

    Nothing published for this version

  48. v0.2.0 08 Dec 2019

    Nothing published for this version

  49. v0.1.1 no date

    Nothing published for this version

  50. v0.3 04 Aug 2020

    Nothing published for this version

  51. v0.1 08 Dec 2019

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive