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.

39 lines
978 B

3 years ago
  1. {
  2. "name": "graham-campbell/result-type",
  3. "description": "An Implementation Of The Result Type",
  4. "keywords": ["result", "result-type", "Result", "Result Type", "Result-Type", "Graham Campbell", "GrahamCampbell"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Graham Campbell",
  9. "email": "graham@alt-three.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^7.0|^8.0",
  14. "phpoption/phpoption": "^1.7.3"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "GrahamCampbell\\ResultType\\": "src/"
  22. }
  23. },
  24. "autoload-dev": {
  25. "psr-4": {
  26. "GrahamCampbell\\Tests\\ResultType\\": "tests/"
  27. }
  28. },
  29. "config": {
  30. "preferred-install": "dist"
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.0-dev"
  35. }
  36. },
  37. "minimum-stability": "dev",
  38. "prefer-stable": true
  39. }