haoyuqi / download-bing-wallpaper
Download bing wallpaper
Installs: 2 111
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^7.3|^8.0
- guzzlehttp/guzzle: ^7.4
- illuminate/filesystem: ^8|^9
- illuminate/support: ^8|^9
README
Installation
composer require haoyuqi/download-bing-wallpaper
Usage
<?php namespace App\Http\Controllers; use Haoyuqi\DownloadBingWallpaper\Contracts\BingWallpaperInterface; use Illuminate\Http\Request; class IndexController extends Controller { protected $bingWallpaper; public function __construct(BingWallpaperInterface $bingWallpaper) { $this->bingWallpaper = $bingWallpaper; } public function index() { $content = $this->bingWallpaper->download(); $this->bingWallpaper->save($content, storage_path('bing-wallpaper'), 'bing-wallpaper.png'); } }