composer.json 475 B

1234567891011121314151617181920212223
  1. {
  2. "name": "react/partial",
  3. "description": "Partial function application.",
  4. "keywords": ["partial", "functional-programming"],
  5. "license": "MIT",
  6. "require": {
  7. "php": ">=5.6"
  8. },
  9. "require-dev": {
  10. "phpunit/phpunit": "^5.7"
  11. },
  12. "autoload": {
  13. "psr-4": {
  14. "React\\Partial\\": "src/"
  15. },
  16. "files": [
  17. "src/functions.php"
  18. ]
  19. },
  20. "scripts": {
  21. "test": "phpunit"
  22. }
  23. }