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.

44 lines
1.1 KiB

3 years ago
  1. {
  2. "name": "opis/closure",
  3. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4. "keywords": ["closure", "serialization", "function", "serializable", "serialize", "anonymous functions"],
  5. "homepage": "https://opis.io/closure",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Marius Sarca",
  10. "email": "marius.sarca@gmail.com"
  11. },
  12. {
  13. "name": "Sorin Sarca",
  14. "email": "sarca_sorin@hotmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^5.4 || ^7.0 || ^8.0"
  19. },
  20. "require-dev": {
  21. "jeremeamia/superclosure": "^2.0",
  22. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Opis\\Closure\\": "src/"
  27. },
  28. "files": ["functions.php"]
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Opis\\Closure\\Test\\": "tests/"
  33. }
  34. },
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "3.6.x-dev"
  38. }
  39. },
  40. "config": {
  41. "preferred-install": "dist",
  42. "sort-packages": true
  43. }
  44. }