workbench.php 883 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Workbench Author Name
  6. |--------------------------------------------------------------------------
  7. |
  8. | When you create new packages via the Artisan "workbench" command your
  9. | name is needed to generate the composer.json file for your package.
  10. | You may specify it now so it is used for all of your workbenches.
  11. |
  12. */
  13. 'name' => '',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Workbench Author E-Mail Address
  17. |--------------------------------------------------------------------------
  18. |
  19. | Like the option above, your e-mail address is used when generating new
  20. | workbench packages. The e-mail is placed in your composer.json file
  21. | automatically after the package is created by the workbench tool.
  22. |
  23. */
  24. 'email' => '',
  25. );