# phpman > info > Exporter::Shiny

Exporter::[Shiny(3pm)](https://www.chedong.com/phpMan.php/man/Shiny/3pm/markdown)  User Contributed Perl Documentation Exporter::[Shiny(3pm)](https://www.chedong.com/phpMan.php/man/Shiny/3pm/markdown)

NAME
       [Exporter::Shiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3AShiny/markdown) - shortcut for [Exporter::Tiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny/markdown)

SYNOPSIS
          use [Exporter::Shiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3AShiny/markdown) qw( foo bar );

       Is a shortcut for:

          use base "[Exporter::Tiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny/markdown)";
          push our(@EXPORT_OK), qw( foo bar );

       For compatibility with [Sub::Exporter](https://www.chedong.com/phpMan.php/perldoc/Sub%3A%3AExporter/markdown), the following longer syntax is
       also supported:

          use [Exporter::Shiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3AShiny/markdown) -setup => {
             exports => [qw( foo bar )],
          };

DESCRIPTION
       This is a very small wrapper to simplify using [Exporter::Tiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny/markdown).

       It does the following:

       o   Marks your package as loaded in %INC;

       o   Pushes any function names in the import list onto your @EXPORT_OK;
           and

       o   Pushes "[Exporter::Tiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny/markdown)" onto your @ISA.

       It doesn't set up %EXPORT_TAGS or @EXPORT, but there's nothing stopping
       you doing that yourself.

BUGS
       Please report any bugs to
       <<http://rt.cpan.org/Dist/Display.html?Queue=Exporter-Tiny>>.

SEE ALSO
       This module is just a wrapper around [Exporter::Tiny](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny/markdown), so take a look at
       [Exporter::Tiny::Manual::QuickStart](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny%3A%3AManual%3A%3AQuickStart/markdown) and
       [Exporter::Tiny::Manual::Exporting](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ATiny%3A%3AManual%3A%3AExporting/markdown) for further information on what
       features are available.

       Other interesting exporters: [Sub::Exporter](https://www.chedong.com/phpMan.php/perldoc/Sub%3A%3AExporter/markdown), Exporter.

AUTHOR
       Toby Inkster <<tobyink@cpan.org>>.

COPYRIGHT AND LICENCE
       This software is copyright (c) 2014, 2017 by Toby Inkster.

       This is free software; you can redistribute it and/or modify it under
       the same terms as the Perl 5 programming language system itself.

DISCLAIMER OF WARRANTIES
       THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
       WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
       MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.

perl v5.30.0                      2020-05-16              Exporter::[Shiny(3pm)](https://www.chedong.com/phpMan.php/man/Shiny/3pm/markdown)
