I want to start a project with Symfony3
and SonataAdmin
I was trying a lot of versions of symfony
and sonataAdminBundle
But I always get errors when updating composer
What's the correct composer.json
to start my project
thanks
I want to start a project with Symfony3
and SonataAdmin
I was trying a lot of versions of symfony
and sonataAdminBundle
But I always get errors when updating composer
What's the correct composer.json
to start my project
thanks
According to packagist the current v3.3.1
of SonataAdminBundle should be compatible with Symfony ^3.0
.
You can just run composer require sonata-project/admin-bundle
and it will automatically look for the newest compatible version. If that fails you could try allowing development-versions as well.
composer require sonata-project/admin-bundle:dev-master
That should be your last resort though as it pulls in an unstable dependency. Feel free to add composer's error to your question and maybe I or someone else can give a more precise answer.