-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 959 Bytes
/
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
{
"name": "xinningsu/laravel-route-trailing-slash",
"description": "Let laravel route work as exactly as how we define it including the trailing slash.",
"keywords": [
"laravel",
"route",
"router",
"trailing slash",
"route trailing slash",
"url trailing slash"
],
"homepage": "https://github.com/xinningsu/laravel-route-trailing-slash",
"license": "MIT",
"authors": [
{
"name": "Thomas Su",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"laravel/framework": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": ">=5.0",
"squizlabs/php_codesniffer": "^3.0",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"Sulao\\LRTS\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
}
}