obunda

composer require sonata-project/doctrine-orm-admin-bundle

Jun 25th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/projects/oblog ‹master*›
  2. ╰─➤ composer require sonata-project/doctrine-orm-admin-bundle
  3. Restricting packages listed in "symfony/symfony" to "4.3.*"
  4. Using version ^3.9 for sonata-project/doctrine-orm-admin-bundle
  5. ./composer.json has been updated
  6. Restricting packages listed in "symfony/symfony" to "4.3.*"
  7. Loading composer repositories with package information
  8. Updating dependencies (including require-dev)
  9. Package operations: 1 install, 0 updates, 0 removals
  10. - Installing sonata-project/doctrine-orm-admin-bundle (3.9.0): Downloading (100%)
  11. Writing lock file
  12. Generating autoload files
  13. ocramius/package-versions: Generating version class...
  14. ocramius/package-versions: ...done generating version class
  15. Symfony operations: 1 recipe (19c8067c98a9dc50498d36e8b20dd5c3)
  16. - Configuring sonata-project/doctrine-orm-admin-bundle (>=3.9.0): From auto-generated recipe
  17. Executing script cache:clear [OK]
  18. Executing script assets:install public [OK]
  19.  
  20. Some files may have been created or updated to configure your new packages.
  21. Please review, edit and commit them: these files are yours.
  22.  
  23. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/projects/oblog ‹master*›
  24. ╰─➤ cat config/bundles.php
  25. <?php
  26.  
  27. return [
  28. Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
  29. Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],
  30. Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
  31. Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
  32. Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
  33. Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
  34. Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
  35. Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
  36. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
  37. Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
  38. Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
  39. Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
  40. Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
  41. Sonata\DatagridBundle\SonataDatagridBundle::class => ['all' => true],
  42. Sonata\CoreBundle\SonataCoreBundle::class => ['all' => true],
  43. Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
  44. Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
  45. Sonata\AdminBundle\SonataAdminBundle::class => ['all' => true],
  46. Sonata\DoctrineORMAdminBundle\SonataDoctrineORMAdminBundle::class => ['all' => true],
  47. ];
  48. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/projects/oblog ‹master*›
  49. ╰─➤ cat config/bundles.php | grep SonataDoctrineORMAdminBundle
  50. Sonata\DoctrineORMAdminBundle\SonataDoctrineORMAdminBundle::class => ['all' => true],
  51. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/projects/oblog ‹master*›
  52. ╰─➤
Advertisement
Add Comment
Please, Sign In to add comment