Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop to Master - Workflows Only #1541

Merged
merged 10 commits into from
Nov 5, 2023
36 changes: 18 additions & 18 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

# Ignore all test and documentation with "export-ignore".
/.github export-ignore
/.phpunit.cache export-ignore
/build export-ignore
/database/database.sqlite export-ignore
/database/sqlite.database. export-ignore
/docs export-ignore
/resources/views/tests export-ignore
/tests export-ignore
/vendor export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.php-cs-fixer.cache export-ignore
/.php-cs-fixer.php export-ignore
/phpunit.result.cache export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/.github export-ignore
/.phpunit.cache export-ignore
/build export-ignore
/database/database.sqlite export-ignore
/database/sqlite.database. export-ignore
/docs export-ignore
/resources/views/tests export-ignore
/tests export-ignore
/vendor export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.php-cs-fixer.cache export-ignore
/.php-cs-fixer.php export-ignore
/phpunit.result.cache export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/psalm.xml.dist export-ignore
/testbench.yaml export-ignore
/codecov.yml export-ignore
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ phpunit.xml.dist.dev
.history/*
.env
phpunit.xml.bak
phpstan.txt
phpstan.txt
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Contributing
Contributions are very welcome, please find below a summary of what is expected from contributions:

- Follow the conventions for methods, adding to the relevant configuration/helper trait
- Add properties to the "With" trait
- Typehint both properties and return values
- Add a comment to the method
- Add tests for new methods
- Add documentation for new methods