composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "homepage": "https://github.com/schmittjoh"
  11. },
  12. {
  13. "name": "Graham Campbell",
  14. "email": "hello@gjcampbell.co.uk",
  15. "homepage": "https://github.com/GrahamCampbell"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.2.5 || ^8.0"
  20. },
  21. "require-dev": {
  22. "bamarni/composer-bin-plugin": "^1.8.2",
  23. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "PhpOption\\": "src/PhpOption/"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "PhpOption\\Tests\\": "tests/PhpOption/Tests/"
  33. }
  34. },
  35. "config": {
  36. "allow-plugins": {
  37. "bamarni/composer-bin-plugin": true
  38. },
  39. "preferred-install": "dist"
  40. },
  41. "extra": {
  42. "bamarni-bin": {
  43. "bin-links": true,
  44. "forward-command": true
  45. },
  46. "branch-alias": {
  47. "dev-master": "1.9-dev"
  48. }
  49. },
  50. "minimum-stability": "dev",
  51. "prefer-stable": true
  52. }