mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-13 09:13:17 +03:00
48 lines
916 B
JSON
48 lines
916 B
JSON
{
|
|
"name": "pecee/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/skipperbent/simple-php-router/issues"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Simon Sessingø",
|
|
"email": "simon.sessingoe@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7",
|
|
"mockery/mockery": "^1"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"phpunit tests"
|
|
]
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Pecee\\": "src/Pecee/"
|
|
}
|
|
}
|
|
}
|