-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
49 lines (49 loc) · 1.3 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
{
"name": "yorcreative/laravel-urlshortener",
"description": "A laravel url shortener package that provides internal url redirects with passwords, url expirations, open limits before expiration and click tracking out of the box.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"framework",
"url",
"shortener",
"url shortener",
"laravel url shortener",
"laravel url"
],
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"ext-pdo_sqlite": "*",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"stevebauman/location": "*"
},
"require-dev": {
"laravel/pint": "^1.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"YorCreative\\UrlShortener\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"YorCreative\\UrlShortener\\": "src/",
"YorCreative\\UrlShortener\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/pint"
},
"extra": {
"laravel": {
"providers": [
"YorCreative\\UrlShortener\\UrlShortenerServiceProvider"
]
}
}
}