forked from Waavi/url-shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.11 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
{
"name": "thibz/url-shortener",
"description": "Url Shortener for Laravel 5 with support for Google and Bitly drivers.",
"keywords": [
"waavi",
"laravel",
"url",
"shortener",
"url short",
"url shortener"
],
"license": "MIT",
"authors": [{
"name": "Waavi",
"email": "[email protected]",
"homepage": "http://waavi.com"
}],
"require": {
"illuminate/support": "5.1.x|5.2.x|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"illuminate/config": "5.1.x|5.2.x|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"mremi/url-shortener": "master"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"orchestra/testbench": "3.1.x|3.2.x|3.3.x|3.4.x|3.5.x",
"mockery/mockery": "~1.0"
},
"autoload": {
"psr-4": {
"Waavi\\UrlShortener\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Waavi\\UrlShortener\\Test\\": "tests"
}
},
"minimum-stability": "dev",
"scripts": {
"test": "vendor/bin/phpunit"
}
}