composer.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {
  2. "name": "ramsey/collection",
  3. "description": "A PHP library for representing and manipulating collections.",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "array",
  8. "collection",
  9. "hash",
  10. "map",
  11. "queue",
  12. "set"
  13. ],
  14. "authors": [
  15. {
  16. "name": "Ben Ramsey",
  17. "email": "ben@benramsey.com",
  18. "homepage": "https://benramsey.com"
  19. }
  20. ],
  21. "require": {
  22. "php": "^7.4 || ^8.0",
  23. "symfony/polyfill-php81": "^1.23"
  24. },
  25. "require-dev": {
  26. "captainhook/plugin-composer": "^5.3",
  27. "ergebnis/composer-normalize": "^2.28.3",
  28. "fakerphp/faker": "^1.21",
  29. "hamcrest/hamcrest-php": "^2.0",
  30. "jangregor/phpstan-prophecy": "^1.0",
  31. "mockery/mockery": "^1.5",
  32. "php-parallel-lint/php-console-highlighter": "^1.0",
  33. "php-parallel-lint/php-parallel-lint": "^1.3",
  34. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  35. "phpspec/prophecy-phpunit": "^2.0",
  36. "phpstan/extension-installer": "^1.2",
  37. "phpstan/phpstan": "^1.9",
  38. "phpstan/phpstan-mockery": "^1.1",
  39. "phpstan/phpstan-phpunit": "^1.3",
  40. "phpunit/phpunit": "^9.5",
  41. "psalm/plugin-mockery": "^1.1",
  42. "psalm/plugin-phpunit": "^0.18.4",
  43. "ramsey/coding-standard": "^2.0.3",
  44. "ramsey/conventional-commits": "^1.3",
  45. "vimeo/psalm": "^5.4"
  46. },
  47. "minimum-stability": "RC",
  48. "prefer-stable": true,
  49. "autoload": {
  50. "psr-4": {
  51. "Ramsey\\Collection\\": "src/"
  52. }
  53. },
  54. "autoload-dev": {
  55. "psr-4": {
  56. "Ramsey\\Collection\\Test\\": "tests/",
  57. "Ramsey\\Test\\Generics\\": "tests/generics/"
  58. },
  59. "files": [
  60. "vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php"
  61. ]
  62. },
  63. "config": {
  64. "allow-plugins": {
  65. "dealerdirect/phpcodesniffer-composer-installer": true,
  66. "ergebnis/composer-normalize": true,
  67. "phpstan/extension-installer": true,
  68. "captainhook/plugin-composer": true
  69. },
  70. "sort-packages": true
  71. },
  72. "extra": {
  73. "captainhook": {
  74. "force-install": true
  75. },
  76. "ramsey/conventional-commits": {
  77. "configFile": "conventional-commits.json"
  78. }
  79. },
  80. "scripts": {
  81. "dev:analyze": [
  82. "@dev:analyze:phpstan",
  83. "@dev:analyze:psalm"
  84. ],
  85. "dev:analyze:phpstan": "phpstan analyse --ansi --memory-limit=1G",
  86. "dev:analyze:psalm": "psalm",
  87. "dev:build:clean": "git clean -fX build/",
  88. "dev:lint": [
  89. "@dev:lint:syntax",
  90. "@dev:lint:style"
  91. ],
  92. "dev:lint:fix": "phpcbf",
  93. "dev:lint:style": "phpcs --colors",
  94. "dev:lint:syntax": "parallel-lint --colors src/ tests/",
  95. "dev:test": [
  96. "@dev:lint",
  97. "@dev:analyze",
  98. "@dev:test:unit"
  99. ],
  100. "dev:test:coverage:ci": "phpunit --colors=always --coverage-text --coverage-clover build/coverage/clover.xml --coverage-cobertura build/coverage/cobertura.xml --coverage-crap4j build/coverage/crap4j.xml --coverage-xml build/coverage/coverage-xml --log-junit build/junit.xml",
  101. "dev:test:coverage:html": "phpunit --colors=always --coverage-html build/coverage/coverage-html/",
  102. "dev:test:unit": "phpunit --colors=always",
  103. "test": "@dev:test"
  104. },
  105. "scripts-descriptions": {
  106. "dev:analyze": "Runs all static analysis checks.",
  107. "dev:analyze:phpstan": "Runs the PHPStan static analyzer.",
  108. "dev:analyze:psalm": "Runs the Psalm static analyzer.",
  109. "dev:build:clean": "Cleans the build/ directory.",
  110. "dev:lint": "Runs all linting checks.",
  111. "dev:lint:fix": "Auto-fixes coding standards issues, if possible.",
  112. "dev:lint:style": "Checks for coding standards issues.",
  113. "dev:lint:syntax": "Checks for syntax errors.",
  114. "dev:test": "Runs linting, static analysis, and unit tests.",
  115. "dev:test:coverage:ci": "Runs unit tests and generates CI coverage reports.",
  116. "dev:test:coverage:html": "Runs unit tests and generates HTML coverage report.",
  117. "dev:test:unit": "Runs unit tests.",
  118. "test": "Runs linting, static analysis, and unit tests."
  119. }
  120. }