2026-04-29 13:40:57 +00:00
|
|
|
{
|
|
|
|
|
"type": "project",
|
|
|
|
|
"license": "proprietary",
|
|
|
|
|
"minimum-stability": "stable",
|
|
|
|
|
"prefer-stable": true,
|
|
|
|
|
"require": {
|
|
|
|
|
"php": ">=8.4",
|
|
|
|
|
"ext-ctype": "*",
|
|
|
|
|
"doctrine/doctrine-bundle": "^3.2",
|
|
|
|
|
"doctrine/doctrine-migrations-bundle": "^4.0",
|
|
|
|
|
"doctrine/orm": "^3.6",
|
|
|
|
|
"symfony/console": "8.0.*",
|
|
|
|
|
"symfony/doctrine-messenger": "8.0.*",
|
|
|
|
|
"symfony/dotenv": "8.0.*",
|
|
|
|
|
"symfony/flex": "^2",
|
|
|
|
|
"symfony/framework-bundle": "8.0.*",
|
|
|
|
|
"symfony/mailer": "8.0.*",
|
|
|
|
|
"symfony/password-hasher": "8.0.*",
|
|
|
|
|
"symfony/runtime": "8.0.*",
|
|
|
|
|
"symfony/security-bundle": "8.0.*",
|
|
|
|
|
"symfony/twig-bundle": "8.0.*",
|
|
|
|
|
"symfony/validator": "8.0.*",
|
|
|
|
|
"symfony/yaml": "8.0.*"
|
|
|
|
|
},
|
|
|
|
|
"config": {
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"php-http/discovery": true,
|
|
|
|
|
"symfony/flex": true,
|
|
|
|
|
"symfony/runtime": true
|
|
|
|
|
},
|
|
|
|
|
"optimize-autoloader": true,
|
|
|
|
|
"sort-packages": true
|
|
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"App\\": "src/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"App\\Tests\\": "tests/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"replace": {
|
|
|
|
|
"symfony/polyfill-ctype": "*",
|
|
|
|
|
"symfony/polyfill-iconv": "*",
|
|
|
|
|
"symfony/polyfill-php72": "*",
|
|
|
|
|
"symfony/polyfill-php73": "*",
|
|
|
|
|
"symfony/polyfill-php74": "*",
|
|
|
|
|
"symfony/polyfill-php80": "*",
|
|
|
|
|
"symfony/polyfill-php81": "*",
|
|
|
|
|
"symfony/polyfill-php82": "*",
|
|
|
|
|
"symfony/polyfill-php83": "*",
|
|
|
|
|
"symfony/polyfill-php84": "*"
|
|
|
|
|
},
|
2026-04-29 13:55:38 +00:00
|
|
|
"scripts": {},
|
2026-04-29 13:40:57 +00:00
|
|
|
"conflict": {
|
|
|
|
|
"symfony/symfony": "*"
|
|
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"symfony": {
|
|
|
|
|
"allow-contrib": false,
|
|
|
|
|
"require": "8.0.*"
|
|
|
|
|
}
|
Add PHPUnit integration tests, remove legacy pre-Symfony files, fix password reset
- Delete legacy root files (api.php, index.php, app.js, style.css, logo.png, include/)
- Install symfony/test-pack, add 34 integration tests covering auth, goals, invites, register, password reset
- Fix bug: users_resets.selector was varchar(20) but controller generates 24-char selectors; widen to varchar(64)
- Remove doctrine dbname_suffix from test env (tests run against live DB, cleanup via tearDown)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-30 08:18:21 +00:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
|
|
|
|
"phpunit/phpunit": "^13.1",
|
|
|
|
|
"symfony/browser-kit": "8.0.*",
|
|
|
|
|
"symfony/css-selector": "8.0.*"
|
2026-04-29 13:40:57 +00:00
|
|
|
}
|
|
|
|
|
}
|