1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "hugh/curl",
- "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra - redeveloped from Hugh",
- "version": "6.22.4",
- "keywords": ["Hugh", "Laravel", "Curl"],
- "homepage": "https://git.hugh2113.com/hugh",
- "license": "MIT",
- "authors": [
- {
- "name": "Jan Oris",
- "email": "[email protected]"
- },
- {
- "name": "Hugh Harlequin",
- "email": "[email protected]"
- }
- ],
- "require": {
- "php": ">=5.4.0",
- "ext-curl": "*",
- "illuminate/support": ">=4.0"
- },
- "autoload": {
- "psr-4": {
- "Hugh\\Curl\\": "src/"
- }
- },
- "extra": {
- "laravel": {
- "providers": [
- "Hugh\\Curl\\CurlServiceProvider"
- ],
- "aliases": {
- "Curl": "Hugh\\Curl\\Facades\\Curl"
- }
- }
- }
- }
|