SimpleRouter/composer.json

20 lines
458 B
JSON
Raw Normal View History

2020-01-14 04:06:42 -06:00
{
2020-01-14 04:14:24 -06:00
"name": "steampixel/simple-php-router",
2020-01-14 04:06:42 -06:00
"description": "This is a simple and small PHP router that can handel the whole url routing for your project.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "SteamPixel",
"email": "info@steampixel.de"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-0": {
2020-01-14 04:44:26 -06:00
"Steampixel": "src/"
}
}
2020-01-14 04:06:42 -06:00
}