composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "chillerlan/php-settings-container",
  3. "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+",
  4. "homepage": "https://github.com/chillerlan/php-settings-container",
  5. "license": "MIT",
  6. "type": "library",
  7. "minimum-stability": "stable",
  8. "keywords": [
  9. "php7", "helper", "container", "settings", "configuration"
  10. ],
  11. "authors": [
  12. {
  13. "name": "Smiley",
  14. "email": "smiley@chillerlan.net",
  15. "homepage": "https://github.com/codemasher"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/chillerlan/php-settings-container/issues",
  20. "source": "https://github.com/chillerlan/php-settings-container"
  21. },
  22. "require": {
  23. "php": "^7.4 || ^8.0",
  24. "ext-json": "*"
  25. },
  26. "require-dev": {
  27. "phan/phan": "^5.3",
  28. "phpunit/phpunit": "^9.5"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "chillerlan\\Settings\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "chillerlan\\SettingsTest\\": "tests/",
  38. "chillerlan\\SettingsExamples\\": "examples/"
  39. }
  40. },
  41. "scripts": {
  42. "phpunit": "@php vendor/bin/phpunit",
  43. "phan": "@php vendor/bin/phan"
  44. },
  45. "config": {
  46. "lock": false,
  47. "sort-packages": true,
  48. "platform-check": true
  49. }
  50. }