composer.json 768 B

12345678910111213141516171819202122232425262728293031323334
  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-pdo": "*",
  9. "ext-pdo_sqlite": "*",
  10. "ext-json": "*",
  11. "jumbojett/openid-connect-php": "^1.0",
  12. "vlucas/phpdotenv": "^5.6"
  13. },
  14. "require-dev": {
  15. "phpunit/phpunit": "^11.0"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "App\\": "src/"
  20. }
  21. },
  22. "autoload-dev": {
  23. "psr-4": {
  24. "App\\Tests\\": "tests/"
  25. }
  26. },
  27. "config": {
  28. "sort-packages": true,
  29. "optimize-autoloader": true
  30. },
  31. "scripts": {
  32. "test": "phpunit --colors=always"
  33. }
  34. }