-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.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": "link-shredder/link-shredder",
"version": "1.0.0",
"description": "Creates short link for original URI",
"keywords": ["short link", "URI", "URL"],
"homepage": "http://github.com/masech/link-shredder",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Maxim Chaplygin",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"slim/slim": "^3.0",
"slim/php-view": "^2.2",
"monolog/monolog": "^1.23",
"akrabat/rka-ip-address-middleware": "^0.5.0"
},
"require-dev": {
"phpunit/phpunit": "^5.1"
},
"autoload": {
"psr-4": {
"Lish\\": "src/classes/"
},
"files": [
"src/functions/ValidateUri.php",
"src/functions/ConvertToPath.php",
"src/functions/ConvertToId.php",
"src/functions/AddPath.php",
"src/functions/CalculateOffset.php"
]
},
"autoload-dev": {
"psr-4": {
"Lish\\": "tests/"
}
}
}