composer.json 982 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "phpdevcommunity/relational-query": "^1.0",
  27. "phpdevcommunity/php-console": "^1.0",
  28. "phpdevcommunity/michel-package-starter": "^1.0",
  29. "phpdevcommunity/php-filesystem": "^1.0",
  30. "psr/log": "^1.1|^2.0|^3.0"
  31. },
  32. "require-dev": {
  33. "phpdevcommunity/unitester": "^0.1.0@alpha"
  34. },
  35. "config": {
  36. "allow-plugins": {
  37. "dealerdirect/phpcodesniffer-composer-installer": false
  38. }
  39. }
  40. }