-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
2386d05
commit f606fe8
Showing
6 changed files
with
134 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] - 2024-07-19 | ||
|
||
Here we write upgrading notes for brands. It's a team effort to make them as | ||
straightforward as possible. | ||
|
||
### Added | ||
- Initial release of the package to streamline testing Laravel apps with Behat. | ||
- Ready to use code snippets and contexts for testing Laravel applications. | ||
- Tools to write tests faster and more efficiently, reducing boilerplate code. | ||
- Support for various Laravel functionalities: | ||
- Application | ||
- Authentication | ||
- Code blocks | ||
- Console | ||
- Cookies | ||
- Database | ||
- Dispatcher | ||
- Eloquent | ||
- Environment | ||
- Http | ||
- Middleware | ||
- Notification | ||
- Session | ||
- Testing | ||
- Translations | ||
- View | ||
- Integration with additional package: Spatie laravel-permission. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Contributing to BLT | ||
|
||
First off, thank you for considering contributing to our project. Your help is greatly appreciated! | ||
|
||
## Table of Contents | ||
|
||
1. [How Can I Contribute?](#how-can-i-contribute) | ||
- [Reporting Bugs](#reporting-bugs) | ||
- [Suggesting Enhancements](#suggesting-enhancements) | ||
- [Submitting Pull Requests](#submitting-pull-requests) | ||
2. [Style Guides](#style-guides) | ||
- [Git Commit Messages](#git-commit-messages) | ||
- [Code Style](#code-style) | ||
3. [Getting Help](#getting-help) | ||
|
||
## How Can I Contribute? | ||
|
||
### Reporting Bugs | ||
|
||
If you find a bug, please open an issue [here](https://github.com/blumilksoftware/blt/issues) and include as much detail as possible. Before creating a new issue, please check to see if the bug has already been reported. | ||
|
||
**A good bug report should include:** | ||
- A clear and descriptive title. | ||
- A detailed description of the problem, including steps to reproduce. | ||
- Any relevant logs, screenshots, or code snippets. | ||
|
||
### Suggesting Enhancements | ||
|
||
We welcome enhancements and improvements! To suggest an enhancement, please open an issue [here](https://github.com/blumilksoftware/blt/issues) with the following details: | ||
|
||
**A good enhancement suggestion should include:** | ||
- A clear and descriptive title. | ||
- A detailed explanation of the enhancement and why it would be useful. | ||
- Any relevant code snippets or examples. | ||
|
||
### Submitting Pull Requests | ||
|
||
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests: | ||
|
||
1. Fork the repository. | ||
2. Create a branch for your feature or bug fix (`git checkout -b "#1-add-functionality"`). | ||
3. Commit your changes (`git commit -m "Add new feature"`). | ||
4. Push to the branch (`git push origin "#1-add-functionality"`). | ||
5. Open a pull request [here](https://github.com/blumilksoftware/blt/pulls). | ||
|
||
**Your pull request should:** | ||
- Contain the issue number in the title (e.g., `#1 - Add new functionality`). | ||
- Include a clear description of what your changes do. | ||
- Reference any related issues. | ||
- Follow the project's coding standards. | ||
|
||
## Style Guides | ||
|
||
### Git Commit Messages | ||
|
||
- Use the present tense ("Add feature" not "Added feature"). | ||
- Use the imperative mood ("Move cursor to..." not "Moves cursor to..."). | ||
- Limit the first line to 72 characters or less. | ||
- Reference issues and pull requests liberally. | ||
|
||
### Code Style | ||
|
||
- Keep code styled as in the repository. | ||
- You can use `composer csf` for fixing code style. | ||
|
||
## Getting Help | ||
|
||
Please don't create issues with questions about using package, refer to documentation or FAQ first. | ||
You can also contact us at | ||
|
||
[email protected] | ||
|
||
[email protected] | ||
|
||
or message [Blumilk](https://www.blumilk.pl/contact) directly. | ||
|
||
|
||
Thank you for contributing to BLT! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,4 @@ | |
} | ||
</code-block> | ||
|
||
</article-paragraphs> | ||
</article-paragraphs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright 2024 Blumilk | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters