Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
* text=auto eol=lf

/.git* export-ignore
/.php-cs-fixer.dist.php export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore
/tests/ export-ignore
/docs/ export-ignore
/.gitattributes export-ignore
/.github export-ignore
/.gitignore export-ignore
/.php-cs-fixer.dist.php export-ignore
/composer.lock export-ignore
/docs export-ignore
/phpstan.neon.dist export-ignore
/phpunit.xml.dist export-ignore
/tests export-ignore

/tests/** linguist-vendored
/docs/** linguist-documentation
/docs/** linguist-documentation
/tests/Fixtures/** -linguist-detectable
/tests/fixtures/** -linguist-detectable
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/.phpunit.cache/
/vendor/
/.php-cs-fixer.cache
/composer.lock
/.phpunit.cache/
/.phpunit.result.cache
/.php-cs-fixer.cache
/coverage/
/coverage.xml

src/**/composer.lock
/phpstan.neon
/phpunit.xml
/clover.xml
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,34 @@ console.log('Hello');

[Documentation](https://altophp.com/commonmark/docs/extensions/tabs) · [GitHub](https://github.com/alto/commonmark/tree/main/src/Extension/Tabs) · [Packagist](https://packagist.org/packages/alto/commonmark-tabs)

## Contributing

Contributions of all kinds are welcome. Visit the
[project on GitHub](https://github.com/altophp/commonmark) to
[report a bug](https://github.com/altophp/commonmark/issues/new),
[suggest a feature](https://github.com/altophp/commonmark/issues/new), or
[open a pull request](https://github.com/altophp/commonmark/pulls).

Before submitting code, run:

```bash
# Runs PHP CS Fixer, PHPStan, and PHPUnit
composer qa
```

Changes to public behavior should include tests and documentation.

## Support

If Alto CommonMark is useful to your project, [sponsoring on GitHub](https://github.com/sponsors/smnandre) is a great way to support continued development — and it's always appreciated.
ALTO CommonMark is open source and independently maintained by
[Simon André](https://smnandre.dev). If it is useful to your work, you can
support its continued development through
[GitHub Sponsors](https://github.com/sponsors/smnandre).

Sharing the package or
[starring it on GitHub](https://github.com/altophp/commonmark) also helps.

## License

MIT. See [LICENSE](LICENSE).
ALTO CommonMark is released by [ALTO PHP](https://altophp.com) under the
[MIT License](LICENSE).
Loading