CI was failing on the Install-bundle-dependencies step because shivammathur/setup-php was installing 8.3 while Symfony 8.x dependencies declare php >= 8.4. Local composer install worked because the dev box runs PHP 8.5.5; CI doesn't. Bumps: - framework/php/composer.json - framework/skeleton/symfony/composer.json - examples/todo/symfony/composer.json - .gitea/workflows/ci.yml php-version: '8.3' → '8.4' - .gitea/workflows/release.yml same - PLAN.md §13 Phase 1 *Detailed scope* PHP minimum row PHPStan / cs-fixer / PHPUnit stay green locally. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"type": "project",
|
|
"license": "proprietary",
|
|
"minimum-stability": "stable",
|
|
"require": {
|
|
"php": "^8.4",
|
|
"symfony/framework-bundle": "^8.0",
|
|
"symfony/runtime": "^8.0",
|
|
"symfony/dotenv": "^8.0",
|
|
"symfony/yaml": "^8.0",
|
|
"symfony/security-bundle": "^8.0",
|
|
"symfony/mercure-bundle": "^0.4",
|
|
"symfony/uid": "^8.0",
|
|
"doctrine/orm": "^3.0",
|
|
"doctrine/doctrine-bundle": "^3.0",
|
|
"doctrine/doctrine-migrations-bundle": "^4.0",
|
|
"php-qml/bridge": "@dev"
|
|
},
|
|
"require-dev": {
|
|
"symfony/maker-bundle": "^1.62"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"symfony/runtime": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"runtime": {
|
|
"class": "Symfony\\Component\\Runtime\\SymfonyRuntime"
|
|
}
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "../../php",
|
|
"options": {
|
|
"symlink": true
|
|
}
|
|
}
|
|
]
|
|
}
|