-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
34 lines (34 loc) · 901 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
{
"name": "devamirul/p-router",
"description": "Simple, lightweight, and powerful PHP Router with rich features like Middlewares and Controllers is a simple and useful router class. Heavily inspired by the way Laravel handles routing.",
"type": "package",
"keywords": [
"router",
"php-router",
"url-handling",
"input-handler",
"routing-engine",
"request-handler"
],
"license": "MIT",
"autoload": {
"files": [
"src/Helper/Helpers.php"
],
"psr-4": {
"Devamirul\\PRouter\\": "src/"
}
},
"authors": [
{
"name": "Amirul islam",
"email": "inbox.amirul@gmail.com",
"homepage": "https://amirul.web.app"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.00",
"ext-json": "*"
}
}