composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "composer/metadata-minifier",
  3. "description": "Small utility library that handles metadata minification and expansion.",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "compression",
  8. "composer"
  9. ],
  10. "authors": [
  11. {
  12. "name": "Jordi Boggiano",
  13. "email": "j.boggiano@seld.be",
  14. "homepage": "http://seld.be"
  15. }
  16. ],
  17. "support": {
  18. "issues": "https://github.com/composer/metadata-minifier/issues"
  19. },
  20. "require": {
  21. "php": "^5.3.2 || ^7.0 || ^8.0"
  22. },
  23. "require-dev": {
  24. "symfony/phpunit-bridge": "^4.2 || ^5",
  25. "phpstan/phpstan": "^0.12.55",
  26. "composer/composer": "^2"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Composer\\MetadataMinifier\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Composer\\Test\\MetadataMinifier\\": "tests"
  36. }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-main": "1.x-dev"
  41. }
  42. },
  43. "scripts": {
  44. "test": "SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 vendor/bin/simple-phpunit",
  45. "phpstan": "vendor/bin/phpstan analyse"
  46. }
  47. }