1
0

composer.json 1009 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "michel/paper-orm-bundle",
  3. "description": "PaperORMBundle is a Symfony bundle that integrates PaperORM, a lightweight and performant PHP ORM.",
  4. "type": "symfony-bundle",
  5. "license": "MPL-2.0",
  6. "authors": [
  7. {
  8. "name": "Michel.F"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\PaperORMBundle\\": "src",
  14. "Test\\Michel\\PaperORMBundle\\": "tests"
  15. }
  16. },
  17. "require": {
  18. "php": ">=7.4",
  19. "ext-pdo": "*",
  20. "michel/paper-orm": "^0.0.1@alpha",
  21. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  22. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  23. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  24. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  25. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  26. "monolog/monolog": "^2.10|^3.0"
  27. },
  28. "config": {
  29. "allow-plugins": {
  30. "dealerdirect/phpcodesniffer-composer-installer": false
  31. }
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^9.6|^10.5",
  35. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  36. }
  37. }