You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
387 B

8 years ago
  1. {
  2. "name": "nikic/fast-route",
  3. "description": "Fast request router for PHP",
  4. "keywords": ["routing", "router"],
  5. "license": "BSD-3-Clause",
  6. "authors": [
  7. {
  8. "name": "Nikita Popov",
  9. "email": "nikic@php.net"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=5.4.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "FastRoute\\": "src/"
  18. },
  19. "files": ["src/functions.php"]
  20. }
  21. }