Route/composer.json

21 lines
405 B
JSON
Raw Normal View History

2023-03-21 20:41:02 +00:00
{
"name": "willysoft/route",
"description": "Minimal PHP Router",
"type": "library",
"require": {
"php": ">=8.1.0"
},
2023-03-23 08:13:57 +00:00
"license": "WTFPL",
2023-03-21 20:41:02 +00:00
"authors": [
{
"name": "noreply",
"email": "noreply@willy.club"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"WillySoft\\": "./"
}
}
}