composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.0 || ^8.0"
  20. },
  21. "require-dev": {
  22. "bamarni/composer-bin-plugin": "^1.4.1",
  23. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  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. "preferred-install": "dist"
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.8-dev"
  41. }
  42. },
  43. "minimum-stability": "dev",
  44. "prefer-stable": true
  45. }