composer.json 425 B

123456789101112131415161718192021222324
  1. {
  2. "name": "wantp/snowflake",
  3. "description": "A package for create unique id by snowflake",
  4. "keywords": [
  5. "uniqueId",
  6. "snowflake"
  7. ],
  8. "type": "library",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "zhangrongwang",
  13. "email": "zhangrongwang798@gmail.com"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=7.0.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "wantp\\Snowflake\\": "src/Snowflake/"
  22. }
  23. }
  24. }