-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
executable file
·58 lines (58 loc) · 1.24 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
55
56
57
58
{
"name": "developermarius/simple-router",
"description": "Simple, fast PHP router that is easy to get integrated and in almost any project. Heavily inspired by the Laravel router.",
"keywords": [
"router",
"router",
"routing",
"route",
"simple-php-router",
"laravel",
"pecee",
"php",
"framework",
"url-handling",
"input-handler",
"routing-engine",
"request-handler"
],
"license": "MIT",
"support": {
"source": "https://github.com/DeveloperMarius/simple-php-router/issues"
},
"authors": [
{
"name": "Simon Sessingø",
"email": "[email protected]"
},
{
"name": "Marius Karstedt",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.3",
"ext-json": "*",
"ext-mbstring": "*",
"somnambulist/validation": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1",
"phpstan/phpstan": "^0",
"phpstan/phpstan-phpunit": "^0",
"phpstan/phpstan-deprecation-rules": "^0",
"phpstan/phpstan-strict-rules": "^0",
"erusev/parsedown": "^1.7"
},
"scripts": {
"test": [
"phpunit tests"
]
},
"autoload": {
"psr-4": {
"Pecee\\": "src/Pecee/"
}
}
}