-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
42 lines (42 loc) · 1.08 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": "waavi/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": "info@waavi.com",
"homepage": "http://waavi.com"
}],
"require": {
"illuminate/support": "5.1.x|5.2.x|5.3.*|5.4.*|5.5.*",
"illuminate/config": "5.1.x|5.2.x|5.3.*|5.4.*|5.5.*",
"mremi/url-shortener": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6",
"orchestra/testbench": "3.1.x|3.2.x|3.3.x|3.4.x|3.5.x",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Waavi\\UrlShortener\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Waavi\\UrlShortener\\Test\\": "tests"
}
},
"minimum-stability": "dev",
"scripts": {
"test": "vendor/bin/phpunit"
}
}