composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "phpdevcommunity/paper-orm",
  3. "description": "PaperORM is a lightweight Object-Relational Mapping (ORM) library ",
  4. "type": "library",
  5. "license": "MPL-2.0",
  6. "authors": [
  7. {
  8. "name": "F. Michel",
  9. "homepage": "https://www.phpdevcommunity.com"
  10. }
  11. ],
  12. "autoload": {
  13. "psr-4": {
  14. "PhpDevCommunity\\PaperORM\\": "src",
  15. "Test\\PhpDevCommunity\\PaperORM\\": "tests"
  16. },
  17. "files": [
  18. "functions/helpers.php"
  19. ]
  20. },
  21. "require": {
  22. "php": ">=7.4",
  23. "ext-pdo": "*",
  24. "ext-json": "*",
  25. "ext-ctype": "*",
  26. "ext-iconv": "*",
  27. "phpdevcommunity/relational-query": "^1.0",
  28. "phpdevcommunity/php-console": "^1.0",
  29. "phpdevcommunity/michel-package-starter": "^1.0",
  30. "phpdevcommunity/php-filesystem": "^1.0",
  31. "phpdevcommunity/psr14-event-dispatcher": "^1.0",
  32. "psr/log": "^1.1|^2.0|^3.0"
  33. },
  34. "require-dev": {
  35. "phpdevcommunity/unitester": "^0.1.0@alpha"
  36. },
  37. "config": {
  38. "allow-plugins": {
  39. "dealerdirect/phpcodesniffer-composer-installer": false
  40. }
  41. }
  42. }