plugins.php 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Plugin configuration.
  4. *
  5. * In this file, you configure which plugins are loaded in the different states your app can be.
  6. * It's loaded via the `parent::bootstrap();` call inside your `Application::bootstrap()` method.
  7. * For more information see https://book.cakephp.org/5/en/plugins.html#loading-plugins-via-configuration-array
  8. *
  9. * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  10. * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  11. *
  12. * Licensed under The MIT License
  13. * For full copyright and license information, please see the LICENSE.txt
  14. * Redistributions of files must retain the above copyright notice.
  15. *
  16. * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  17. * @link https://cakephp.org CakePHP(tm) Project
  18. * @since 5.0.0
  19. * @license https://opensource.org/licenses/mit-license.php MIT License
  20. */
  21. return [
  22. // Plugins only needed when in debug mode
  23. //'DebugKit' => ['onlyDebug' => true],
  24. // Optional plugins which are only needed in CLI commands
  25. //'Bake' => ['onlyCli' => true, 'optional' => true],
  26. // Required plugins only in CLI commands
  27. //'Migrations' => ['onlyCli' => true],
  28. // Add your custom plugins here
  29. ];