-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 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
50
51
52
53
54
{
"name": "ako/shorturl",
"description": "Url shortener",
"version": "0.0.6",
"type": "library",
"keywords": [
"shorturl",
"php-shorturl",
"laravel-shorturl",
"laravel-urlshortener",
"urlshortener",
"url-shortener",
"php",
"laravel"
],
"homepage": "https://github.com/akoSalman/shorturl",
"require": {
"php" : "^7.1",
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0"
},
"license": "MIT",
"authors": [
{
"name": "ako",
"email": "akosalman@yahoo.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Ako\\Shorturl\\": "src/",
"Ako\\Shorturl\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Ako\\Shorturl\\ShorturlServiceProvider"
],
"aliases": {
"Shorturl": "Ako\\Shorturl\\Facades\\Shorturl"
}
}
}
}