mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-16 10:40:18 +03:00
- Added dependency injection support. - Added php-di composer dependency. - Added `ClassLoader` class. - Added `IClassLoader` interface. - Added unit-tests for dependency injection. - Updated documentation to reflect new features.
43 lines
864 B
JSON
43 lines
864 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",
|
|
"php-di/php-di": "^6.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.0",
|
|
"mockery/mockery": "^1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Pecee\\": "src/Pecee/"
|
|
}
|
|
}
|
|
}
|