-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (32 loc) · 845 Bytes
/
composer.json
File metadata and controls
35 lines (32 loc) · 845 Bytes
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
{
"name": "koddn/php-router",
"type": "library",
"description": "Koddn PHP Router - simple router created for custom PHP Applications, CMS, REST API's with multiple callbacks, middleware",
"license": "MIT",
"authors":[
{ "name":"harpal Singh",
"email": "singh.harpalkhl@gmail.com",
"role": "Developer"
}
],
"require" : {
"php" : ">=7.4"
},
"minimum-stability": "stable",
"homepage": "https://koddn.com",
"keywords": [
"router",
"route in php",
"routing in php",
"node like router in php",
"koddn php router",
"auth validator router",
"router with next",
"API router for php",
"php", "php7", "auth router",
"express like router"
],
"autoload":{
"psr-4": {"KODDN\\": "src/"}
}
}