forked from ash-jc-allen/short-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.35 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
{
"name": "ashallendesign/short-url",
"description": "A Laravel package for creating shortened URLs for your web apps.",
"type": "library",
"homepage": "https://github.com/ash-jc-allen/short-url",
"license": "MIT",
"authors": [
{
"name": "Ash Allen",
"email": "mail@ashallendesign.co.uk"
}
],
"keywords": [
"ashallendesign",
"short-urls",
"url-shortener",
"laravel",
"laravel-package"
],
"require": {
"php": "^8.0",
"nesbot/carbon": "~2.0",
"illuminate/container": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"jenssegers/agent": "^2.6",
"hashids/hashids": "^4.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.2 || ^9.0",
"nunomaduro/larastan": "^0.7.12 || ^1.0.0 || ^2.0"
},
"autoload": {
"psr-4": {
"AshAllenDesign\\ShortURL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AshAllenDesign\\ShortURL\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AshAllenDesign\\ShortURL\\Providers\\ShortURLProvider"
],
"aliases": {
"ShortURL": "AshAllenDesign\\ShortURL\\Facades\\ShortURL"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}