composer.json 658 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "adbario/php-dot-notation",
  3. "description": "PHP dot notation access to arrays",
  4. "keywords": ["dotnotation", "arrayaccess"],
  5. "homepage": "https://github.com/adbario/php-dot-notation",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Riku Särkinen",
  10. "email": "riku@adbar.io"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.5"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  18. "squizlabs/php_codesniffer": "^3.0"
  19. },
  20. "autoload": {
  21. "files": [
  22. "src/helpers.php"
  23. ],
  24. "psr-4": {
  25. "Adbar\\": "src"
  26. }
  27. }
  28. }