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.

composer.json 800B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "godruoyi/php-snowflake",
  3. "description": "An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).",
  4. "license": "MIT",
  5. "keywords": [
  6. "unique id",
  7. "snowflake algorithm",
  8. "php snowflake",
  9. "laravel snowflake",
  10. "order id",
  11. "unique order id",
  12. "php unique id"
  13. ],
  14. "homepage": "https://github.com/godruoyi/php-snowflake",
  15. "authors": [
  16. {
  17. "name": "Godruoyi",
  18. "email": "g@godruoyi.com"
  19. }
  20. ],
  21. "require": {},
  22. "require-dev": {
  23. "phpunit/phpunit": "~7"
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "Tests\\": "tests"
  28. }
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Godruoyi\\Snowflake\\": "src"
  33. }
  34. }
  35. }