Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravel-aria2 maintained by dasundev

Description
A fluent Laravel client for aria2 JSON-RPC transfers.
Last update
2026/09/02 10:38 (dev-main)
License
Downloads
1

Comments
comments powered by Disqus

This package is a fluent JSON-RPC client for a running aria2c daemon.

use Dasundev\LaravelAria2\Facades\Aria2;
use Dasundev\LaravelAria2\Transfer\TransferStatus;

Aria2::url('https://example.com/file.iso')
    ->dir(storage_path('app/downloads/1'))
    ->onProgress(function (TransferStatus $status) {
        //
    })
    ->download();

Documentation

You can find the documentation here, which provides detailed information on installing and using the package.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

Laravel Aria2 is open-sourced software licensed under the MIT license.