composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "phpoption/phpoption",
  3. "description": "Option Type for PHP",
  4. "keywords": ["php", "option", "language", "type"],
  5. "license": "Apache-2.0",
  6. "authors": [
  7. {
  8. "name": "Johannes M. Schmitt",
  9. "email": "schmittjoh@gmail.com"
  10. },
  11. {
  12. "name": "Graham Campbell",
  13. "email": "graham@alt-three.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^5.5.9 || ^7.0 || ^8.0"
  18. },
  19. "require-dev": {
  20. "bamarni/composer-bin-plugin": "^1.4.1",
  21. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "PhpOption\\": "src/PhpOption/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "PhpOption\\Tests\\": "tests/PhpOption/Tests/"
  31. }
  32. },
  33. "config": {
  34. "preferred-install": "dist"
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "1.7-dev"
  39. }
  40. },
  41. "minimum-stability": "dev",
  42. "prefer-stable": true
  43. }