In this repo i store all my websites, each in a different branch
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
387 B

  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. }