{"id":36994674,"url":"https://github.com/protonemedia/laravel-webdav","last_synced_at":"2026-01-13T23:46:55.872Z","repository":{"id":39855199,"uuid":"53738847","full_name":"protonemedia/laravel-webdav","owner":"protonemedia","description":"WebDAV Serivce Provider for Laravel","archived":true,"fork":false,"pushed_at":"2024-01-02T10:26:01.000Z","size":32,"stargazers_count":64,"open_issues_count":4,"forks_count":20,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-09-27T20:18:25.093Z","etag":null,"topics":["laravel","laravel-webdav","php","webdav"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/protonemedia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["pascalbaljet"]}},"created_at":"2016-03-12T15:35:00.000Z","updated_at":"2025-09-22T18:53:51.000Z","dependencies_parsed_at":"2024-01-02T11:34:12.433Z","dependency_job_id":"811a61f7-03f5-4623-8a36-956f7ccc9f6b","html_url":"https://github.com/protonemedia/laravel-webdav","commit_stats":{"total_commits":30,"total_committers":6,"mean_commits":5.0,"dds":"0.19999999999999996","last_synced_commit":"d341764f3f5a2d3ac62d39fa9a87fb1c01126cf3"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/protonemedia/laravel-webdav","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protonemedia%2Flaravel-webdav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protonemedia%2Flaravel-webdav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protonemedia%2Flaravel-webdav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protonemedia%2Flaravel-webdav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/protonemedia","download_url":"https://codeload.github.com/protonemedia/laravel-webdav/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/protonemedia%2Flaravel-webdav/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","laravel-webdav","php","webdav"],"created_at":"2026-01-13T23:46:55.751Z","updated_at":"2026-01-13T23:46:55.861Z","avatar_url":"https://github.com/protonemedia.png","language":"PHP","funding_links":["https://github.com/sponsors/pascalbaljet"],"categories":[],"sub_categories":[],"readme":"\u003e :warning: This package is unmaintained and doesn't work with modern Laravel apps. Consider using a [Custom Filesystem](https://laravel.com/docs/10.x/filesystem#custom-filesystems) with the new [WebDAV adapter](https://flysystem.thephpleague.com/docs/adapter/webdav/).\n\n# laravel-webdav\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n![run-tests](https://github.com/protonemedia/laravel-webdav/workflows/run-tests/badge.svg)\n[![Software License][ico-license]](LICENSE.md)\n[![Total Downloads][ico-downloads]][link-downloads]\n\nThis package provides a WebDAV driver for Laravel's Filesystem. Laravel 8.0 supported.\n\n## Support\n\nWe proudly support the community by developing Laravel packages and giving them away for free. Keeping track of issues and pull requests takes time, but we're happy to help! If this package saves you time or if you're relying on it professionally, please consider [supporting the maintenance and development](https://github.com/sponsors/pascalbaljet).\n\n## Install\n\nVia Composer\n\n``` bash\n$ composer require pbmedia/laravel-webdav\n```\n\n## Usage\n\nRegister the service provider in your app.php config file (Laravel 5.4 and lower only):\n\n``` php\n// config/app.php\n\n'providers' =\u003e [\n    ...\n    Pbmedia\\FilesystemProviders\\WebDAVServiceProvider::class\n    ...\n];\n```\n\nCreate a webdav filesystem disk:\n\n``` php\n// config/filesystems.php\n\n'disks' =\u003e [\n\t...\n\t'webdav' =\u003e [\n\t    'driver'     =\u003e 'webdav',\n\t    'baseUri'    =\u003e 'https://mywebdavstorage.com',\n\t    'userName'   =\u003e 'protonemedia',\n\t    'password'   =\u003e 'supersecretpassword',\n\t    'pathPrefix' =\u003e 'backups', // optional\n\t],\n\t...\n];\n```\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email info@protone.media instead of using the issue tracker.\n\n## Other Laravel packages\n\n* [`Laravel Analytics Event Tracking`](https://github.com/protonemedia/laravel-analytics-event-tracking): Laravel package to easily send events to Google Analytics.\n* [`Laravel Blade On Demand`](https://github.com/protonemedia/laravel-blade-on-demand): Laravel package to compile Blade templates in memory.\n* [`Laravel Cross Eloquent Search`](https://github.com/protonemedia/laravel-cross-eloquent-search): Laravel package to search through multiple Eloquent models.\n* [`Laravel Eloquent Scope as Select`](https://github.com/protonemedia/laravel-eloquent-scope-as-select): Stop duplicating your Eloquent query scopes and constraints in PHP. This package lets you re-use your query scopes and constraints by adding them as a subquery.\n* [`Laravel Eloquent Where Not`](https://github.com/protonemedia/laravel-eloquent-where-not): This Laravel package allows you to flip/invert an Eloquent scope, or really any query constraint.\n* [`Laravel FFMpeg`](https://github.com/protonemedia/laravel-ffmpeg): This package provides an integration with FFmpeg for Laravel. The storage of the files is handled by Laravel's Filesystem.\n* [`Laravel Form Components`](https://github.com/protonemedia/laravel-form-components): Blade components to rapidly build forms with Tailwind CSS Custom Forms and Bootstrap 4. Supports validation, model binding, default values, translations, includes default vendor styling and fully customizable!\n* [`Laravel Mixins`](https://github.com/protonemedia/laravel-mixins): A collection of Laravel goodies.\n* [`Laravel Paddle`](https://github.com/protonemedia/laravel-paddle): Paddle.com API integration for Laravel with support for webhooks/events.\n* [`Laravel Verify New Email`](https://github.com/protonemedia/laravel-verify-new-email): This package adds support for verifying new email addresses: when a user updates its email address, it won't replace the old one until the new one is verified.\n\n## Credits\n\n- [Pascal Baljet][link-author]\n- [All Contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/pbmedia/laravel-webdav.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/pbmedia/laravel-webdav.svg?style=flat-square\n\n[link-packagist]: https://packagist.org/packages/pbmedia/laravel-webdav\n[link-downloads]: https://packagist.org/packages/pbmedia/laravel-webdav\n[link-author]: https://github.com/pascalbaljet\n[link-contributors]: ../../contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprotonemedia%2Flaravel-webdav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprotonemedia%2Flaravel-webdav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprotonemedia%2Flaravel-webdav/lists"}