-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 1.59 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "codeofdigital/laravel-url-shortener",
"description": "Powerful URL shoterning tools using different drivers for your Laravel projects",
"homepage": "https://github.com/codeofdigital/laravel-url-shortener",
"keywords": [
"codeofdigital",
"laravel",
"url",
"url-shortening",
"shortener",
"short-url",
"shortening",
"bit.ly",
"shorte.st",
"tinyurl",
"is.gd",
"cutt.ly"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Bryan Adam Loh",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"guzzlehttp/promises": "^1.0",
"guzzlehttp/psr7": "^1.4",
"psr/http-message": "^1.0"
},
"require-dev": {
"illuminate/routing": "^5.1 || ^6.0 || ^7.0 || ^8.0",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"CodeOfDigital\\LaravelUrlShortener\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeOfDigital\\LaravelUrlShortener\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "./vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"CodeOfDigital\\LaravelUrlShortener\\UrlShortenerServiceProvider"
],
"aliases": {
"UrlShortener": "CodeOfDigital\\LaravelUrlShortener\\Facades\\UrlShortener"
}
}
}
}