composer.json 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "michel/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": "Michel.F"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\PaperORM\\": "src",
  14. "Test\\Michel\\PaperORM\\": "tests"
  15. },
  16. "files": [
  17. "functions/helpers.php"
  18. ]
  19. },
  20. "require": {
  21. "php": ">=7.4",
  22. "ext-pdo": "*",
  23. "ext-json": "*",
  24. "ext-ctype": "*",
  25. "ext-iconv": "*",
  26. "michel/php-sql-mapper": "^1.0",
  27. "michel/console": "^1.0",
  28. "michel/michel-package-starter": "^1.0",
  29. "michel/filesystem": "^1.0",
  30. "michel/psr14-event-dispatcher": "^1.0",
  31. "psr/log": "^1.1|^2.0|^3.0"
  32. },
  33. "require-dev": {
  34. "michel/unitester": "^1.0.0"
  35. },
  36. "config": {
  37. "allow-plugins": {
  38. "dealerdirect/phpcodesniffer-composer-installer": false
  39. }
  40. }
  41. }