You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.8 KiB

3 years ago
  1. {
  2. "name": "dflydev/dot-access-data",
  3. "type": "library",
  4. "description": "Given a deep data structure, access data by dot notation.",
  5. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  6. "keywords": ["dot", "access", "data", "notation"],
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Dragonfly Development Inc.",
  11. "email": "info@dflydev.com",
  12. "homepage": "http://dflydev.com"
  13. },
  14. {
  15. "name": "Beau Simensen",
  16. "email": "beau@dflydev.com",
  17. "homepage": "http://beausimensen.com"
  18. },
  19. {
  20. "name": "Carlos Frutos",
  21. "email": "carlos@kiwing.it",
  22. "homepage": "https://github.com/cfrutos"
  23. },
  24. {
  25. "name": "Colin O'Dell",
  26. "email": "colinodell@gmail.com",
  27. "homepage": "https://www.colinodell.com"
  28. }
  29. ],
  30. "require": {
  31. "php": "^7.1 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpstan/phpstan": "^0.12.42",
  35. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  36. "scrutinizer/ocular": "1.6.0",
  37. "squizlabs/php_codesniffer": "^3.5",
  38. "vimeo/psalm": "^3.14"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Dflydev\\DotAccessData\\": "src/"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "Dflydev\\DotAccessData\\": "tests/"
  48. }
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-main": "3.x-dev"
  53. }
  54. },
  55. "scripts": {
  56. "phpcs": "phpcs",
  57. "phpstan": "phpstan analyse",
  58. "phpunit": "phpunit --no-coverage",
  59. "psalm": "psalm",
  60. "test": [
  61. "@phpcs",
  62. "@phpstan",
  63. "@psalm",
  64. "@phpunit"
  65. ]
  66. }
  67. }