When I'm trying to deploy my app with easyadmin-no-final-plugin, by running composer install with empty vendors, EA classes are still final.
Tested on php 8.2.8 and php 8.3.2
Here is composer.json
{
"name": "symfony/skeleton",
"type": "project",
"license": "MIT",
"description": "A minimal Symfony project recommended to create bare bones applications",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"ext-ctype": "*",
"ext-iconv": "*",
"datana-gmbh/sendgrid-dynamic-template-mailer": "^1.5",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^2.17",
"easycorp/easyadmin-bundle": "^4.8",
"easycorp/easyadmin-no-final-plugin": "*",
"giggsey/libphonenumber-for-php-lite": "^8.13",
"runtime/frankenphp-symfony": "^0.2.0",
"symfony/console": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.0.*",
"symfony/http-client": "7.0.*",
"symfony/mailer": "7.0.*",
"symfony/messenger": "7.0.*",
"symfony/runtime": "7.0.*",
"symfony/uid": "7.0.*",
"symfony/yaml": "7.0.*"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"easycorp/easyadmin-no-final-plugin": 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": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.0.*",
"docker": true
}
},
"require-dev": {
"symfony/maker-bundle": "^1.52",
"symfony/stopwatch": "7.0.*",
"symfony/web-profiler-bundle": "7.0.*"
}
}
When I'm trying to deploy my app with easyadmin-no-final-plugin, by running
composer installwith empty vendors, EA classes are still final.Tested on php 8.2.8 and php 8.3.2
Here is composer.json
{ "name": "symfony/skeleton", "type": "project", "license": "MIT", "description": "A minimal Symfony project recommended to create bare bones applications", "minimum-stability": "stable", "prefer-stable": true, "require": { "ext-ctype": "*", "ext-iconv": "*", "datana-gmbh/sendgrid-dynamic-template-mailer": "^1.5", "doctrine/doctrine-bundle": "^2.11", "doctrine/doctrine-migrations-bundle": "^3.3", "doctrine/orm": "^2.17", "easycorp/easyadmin-bundle": "^4.8", "easycorp/easyadmin-no-final-plugin": "*", "giggsey/libphonenumber-for-php-lite": "^8.13", "runtime/frankenphp-symfony": "^0.2.0", "symfony/console": "7.0.*", "symfony/dotenv": "7.0.*", "symfony/flex": "^2", "symfony/framework-bundle": "7.0.*", "symfony/http-client": "7.0.*", "symfony/mailer": "7.0.*", "symfony/messenger": "7.0.*", "symfony/runtime": "7.0.*", "symfony/uid": "7.0.*", "symfony/yaml": "7.0.*" }, "config": { "allow-plugins": { "php-http/discovery": true, "symfony/flex": true, "symfony/runtime": true, "easycorp/easyadmin-no-final-plugin": 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": "*" }, "scripts": { "auto-scripts": { "cache:clear": "symfony-cmd", "assets:install %PUBLIC_DIR%": "symfony-cmd" }, "post-install-cmd": [ "@auto-scripts" ], "post-update-cmd": [ "@auto-scripts" ] }, "conflict": { "symfony/symfony": "*" }, "extra": { "symfony": { "allow-contrib": false, "require": "7.0.*", "docker": true } }, "require-dev": { "symfony/maker-bundle": "^1.52", "symfony/stopwatch": "7.0.*", "symfony/web-profiler-bundle": "7.0.*" } }