1
0

composer.json 842 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "sprint-planer/web",
  3. "description": "Sprint planning tool replacing the Excel workbook.",
  4. "type": "project",
  5. "license": "proprietary",
  6. "require": {
  7. "php": "^8.3",
  8. "ext-json": "*",
  9. "ext-pdo": "*",
  10. "ext-pdo_sqlite": "*",
  11. "jumbojett/openid-connect-php": "^1.0",
  12. "phpoffice/phpspreadsheet": "^3.4",
  13. "twig/twig": "^3.10",
  14. "vlucas/phpdotenv": "^5.6"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^11.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "App\\": "src/"
  22. }
  23. },
  24. "autoload-dev": {
  25. "psr-4": {
  26. "App\\Tests\\": "tests/"
  27. }
  28. },
  29. "config": {
  30. "sort-packages": true,
  31. "optimize-autoloader": true
  32. },
  33. "scripts": {
  34. "test": "phpunit --colors=always"
  35. }
  36. }