PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Hicri   Laravel URL Shortener   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel URL Shortener
Create and manipulate short URLs using cutt.ly API
Author: By
Last change:
Date: 9 months ago
Size: 1,329 bytes
 

Contents

Class file image Download
{ "name": "slvler/cuttly", "description": "Cutt.ly API wrapper for Laravel", "keywords": [ "cuttly", "laravel", "php" ], "homepage": "https://github.com/slvler/laravel-url-shortener", "license": "MIT", "type": "library", "authors": [ { "name": "slvler", "email": "slvler@proton.me" } ], "require": { "php": "^8.0.2", "guzzlehttp/guzzle": "^7.2", "illuminate/support": "^9.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.6", "orchestra/testbench": "^7.0", "phpunit/phpunit": "^9.5.8" }, "autoload": { "psr-4": { "Slvler\\Cuttly\\": "src/" } }, "autoload-dev": { "psr-4": { "Slvler\\Cuttly\\Tests\\": "tests/" } }, "scripts": { "test": "vendor/bin/phpunit tests", "post-create-project-cmd": [ "@php artisan key:generate --ansi" ] }, "extra": { "laravel": { "providers": [ "Slvler\\Cuttly\\CuttlyServiceProvider" ], "aliases": { "Cuttly": "Slvler\\Cuttly\\Facades\\Cuttly" } } }, "minimum-stability": "dev", "prefer-stable": true }