Skip to content

fawno/wget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

082545b · Mar 5, 2023

History

12 Commits
Mar 5, 2023
Mar 31, 2022
Jan 20, 2018
May 12, 2021
Apr 27, 2022

Repository files navigation

GitHub license GitHub release Packagist Packagist Downloads GitHub issues GitHub forks GitHub stars

wget

PHP Class wget

Requirements

wget requires PHP version 5.6 or higher with openssl and curl extensions enabled.

How to Install

Install with composer.phar.

Add fawno/wget as a requirement to your project:

php composer.phar require "fawno/wget"

Load the class in your script:

<?php
  require 'vendor/autoload.php';

  use Fawno\wget\wget;

Manual installation

Download wget.php and save it in an accessible route.

Load wget.php in your script:

<?php
  require 'wget.php';

  use Fawno\wget\wget;