| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "sprint-planer/web",
- "description": "Sprint planning tool replacing the Excel workbook.",
- "type": "project",
- "license": "proprietary",
- "require": {
- "php": "^8.3",
- "ext-json": "*",
- "ext-pdo": "*",
- "ext-pdo_sqlite": "*",
- "jumbojett/openid-connect-php": "^1.0",
- "phpoffice/phpspreadsheet": "^3.4",
- "twig/twig": "^3.10",
- "vlucas/phpdotenv": "^5.6"
- },
- "require-dev": {
- "phpunit/phpunit": "^11.0"
- },
- "autoload": {
- "psr-4": {
- "App\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "App\\Tests\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true,
- "optimize-autoloader": true
- },
- "scripts": {
- "test": "phpunit --colors=always"
- }
- }
|