littleredbutton / bigbluebutton-api-php

Unofficial (but better) PHP API for @BigBlueButton
GNU Lesser General Public License v3.0
25 stars 12 forks source link

exclude some files from archive #95

Closed sualko closed 3 years ago

sualko commented 3 years ago

This means those files will not appear in the Github archive included with every release. I was unsure about the test and dev files, so please feel free to extend that list.

See #94

SamuelWei commented 3 years ago

@sualko I would also exclude the test files. I just checked some famous php projects like guzzle: https://github.com/guzzle/guzzle/blob/master/.gitattributes

.gitattributes         export-ignore
/.github/              export-ignore
.gitignore             export-ignore
.php_cs                export-ignore
/phpunit.xml.dist      export-ignore
/psalm.xml             export-ignore
/tests/                export-ignore
sualko commented 3 years ago

updated

SamuelWei commented 3 years ago

updated

I also updated them, to have the same style. Looks like the / at the beginning and end doesn't really matter. Guzzle and Laravel are doing it differently