SimpleRouter/composer.json

24 lines
562 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"
2020-01-14 08:17:35 -06:00
},
{
"name": "Maximilian Götz",
"email": "contact@maxbits.net"
2020-01-14 04:06:42 -06:00
}
],
"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
}