1
0

composer.json 798 B

1234567891011121314151617181920212223242526272829303132333435
  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. "twig/twig": "^3.10",
  13. "vlucas/phpdotenv": "^5.6"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^11.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "App\\": "src/"
  21. }
  22. },
  23. "autoload-dev": {
  24. "psr-4": {
  25. "App\\Tests\\": "tests/"
  26. }
  27. },
  28. "config": {
  29. "sort-packages": true,
  30. "optimize-autoloader": true
  31. },
  32. "scripts": {
  33. "test": "phpunit --colors=always"
  34. }
  35. }