composer.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "composer/pcre",
  3. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "pcre",
  8. "regex",
  9. "preg",
  10. "regular expression"
  11. ],
  12. "authors": [
  13. {
  14. "name": "Jordi Boggiano",
  15. "email": "j.boggiano@seld.be",
  16. "homepage": "http://seld.be"
  17. }
  18. ],
  19. "require": {
  20. "php": "^7.4 || ^8.0"
  21. },
  22. "require-dev": {
  23. "symfony/phpunit-bridge": "^5",
  24. "phpstan/phpstan": "^1.3",
  25. "phpstan/phpstan-strict-rules": "^1.1"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Composer\\Pcre\\": "src"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Composer\\Pcre\\": "tests"
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-main": "3.x-dev"
  40. }
  41. },
  42. "scripts": {
  43. "test": "vendor/bin/simple-phpunit",
  44. "phpstan": "phpstan analyse"
  45. }
  46. }