-
Notifications
You must be signed in to change notification settings - Fork 19
/
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": "vinelab/url-shortener",
"description": "URL shortening the easy way.",
"license": "MIT",
"keywords": [
"Shorten",
"URL",
"URL-Shortener",
"URL Shortener",
"bitly",
"Bit.ly",
"Laravel"
],
"authors": [
{
"name": "Abed Halawi",
"email": "abed.halawi@vinelab.com",
"homepage": "http://about.me/abedhalawi",
"role": "Tech Lead"
},
{
"name": "Mahmoud Zalt",
"email": "inbox@mahmoudzalt.com",
"homepage": "http://www.mahmoudzalt.com",
"role": "Web Developer"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.*",
"illuminate/config": "5.*",
"symfony/finder": "~2.7",
"Vinelab/http": "1.2.*"
},
"require-dev": {
"phpunit/phpunit": "4.3.*",
"mockery/mockery": "0.9.*",
"symfony/var-dumper": "~2.6"
},
"autoload": {
"psr-4": {
"Vinelab\\UrlShortener\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vinelab\\UrlShortener\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "stable"
}