composer.json 886 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "thenorthmemory/xml",
  3. "description": "A wrapper of the XML parser and builder",
  4. "type": "library",
  5. "keywords": [
  6. "xml-parser",
  7. "xml-builder"
  8. ],
  9. "authors": [
  10. {
  11. "name": "James ZHANG",
  12. "homepage": "https://github.com/TheNorthMemory"
  13. }
  14. ],
  15. "homepage": "https://github.com/TheNorthMemory/xml",
  16. "license": "Apache-2.0",
  17. "require": {
  18. "php": ">=7.1.2",
  19. "ext-libxml": "*",
  20. "ext-simplexml": "*"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5",
  24. "phpstan/phpstan": "^0.12.89 || ^1.0"
  25. },
  26. "autoload": {
  27. "psr-4": { "TheNorthMemory\\Xml\\" : "src/" }
  28. },
  29. "autoload-dev": {
  30. "psr-4": { "TheNorthMemory\\Xml\\Tests\\" : "tests/" }
  31. },
  32. "scripts": {
  33. "test": ["phpstan", "phpunit"]
  34. }
  35. }