Closed edmundcwm closed 12 months ago
Good idea @edmundcwm,
Maybe we can use archive exclude https://getcomposer.org/doc/04-schema.md#archive ?
Composer https://getcomposer.org/doc/04-schema.md#archive did not work, Yet to deep dive into why but likely because zip is actually created by GitHub and not composer.
Fixed in #18 using .gitattributes
which is working as expected. Thanks @edmundcwm.
.
├── better-file-name.php
├── composer.json
├── composer.lock
├── readme.md
├── readme.txt
└── src
├── Admin.php
├── Generate_Alt_Text_Cli.php
├── Image.php
├── Openai_Wrapper.php
└── Settings.php
2 directories, 10 files
Description
When installing the plugin via Composer the development files are also included:
Should we add a
.gitattributes
andexport-ignore
those files?