Skip to content

Commit be7a730

Browse files
chore: upkeep
1 parent 8046caa commit be7a730

3 files changed

Lines changed: 114 additions & 1 deletion

File tree

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,42 @@ $request->setJson(['$0' => 'abcd', '$1' => '12485671007']);
270270
// url di callback, oggetto con dati aggiuntivi, metodo
271271
$request->setCallbackData('https://example.com', new stdClass(), 'POST');
272272
$visura = $this->openapi->visengine->sendRequest($request);
273-
```
273+
```
274+
275+
## Contributing
276+
277+
Contributions are always welcome! Whether you want to report bugs, suggest new features, improve documentation, or contribute code, your help is appreciated.
278+
279+
See [docs/contributing.md](docs/contributing.md) for detailed instructions on how to get started. Please make sure to follow this project's [docs/code-of-conduct.md](docs/code-of-conduct.md) to help maintain a welcoming and collaborative environment.
280+
281+
## Authors
282+
283+
Meet the project authors:
284+
285+
- Michael Cuffaro ([@maiku1008](https://www.github.com/maiku1008))
286+
- Openapi Team ([@openapi-it](https://github.com/openapi-it))
287+
288+
## Partners
289+
290+
Meet our partners using Openapi or contributing to this SDK:
291+
292+
- [Blank](https://www.blank.app/)
293+
- [Credit Safe](https://www.creditsafe.com/)
294+
- [Deliveroo](https://deliveroo.it/)
295+
- [Gruppo MOL](https://molgroupitaly.it/it/)
296+
- [Jakala](https://www.jakala.com/)
297+
- [Octotelematics](https://www.octotelematics.com/)
298+
- [OTOQI](https://otoqi.com/)
299+
- [PWC](https://www.pwc.com/)
300+
- [QOMODO S.R.L.](https://www.qomodo.me/)
301+
- [SOUNDREEF S.P.A.](https://www.soundreef.com/)
302+
303+
## License
304+
305+
This project is licensed under the [MIT License](LICENSE).
306+
307+
The MIT License is a permissive open-source license that allows you to freely use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software, provided that the original copyright notice and this permission notice are included in all copies or substantial portions of the software.
308+
309+
In short, you are free to use this SDK in your personal, academic, or commercial projects, with minimal restrictions. The project is provided "as-is", without any warranty of any kind, either expressed or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement.
310+
311+
For more details, see the full license text at the [MIT License page](https://choosealicense.com/licenses/mit/).

docs/code-of-conduct.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project a harassment-free experience for everyone.
6+
7+
## Our Standards
8+
9+
Examples of positive behavior:
10+
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy toward other community members
16+
17+
Examples of unacceptable behavior:
18+
19+
- Harassment, intimidation, or discrimination
20+
- Public or private insults and derogatory comments
21+
- Publishing others’ private information without consent
22+
- Any other conduct reasonably considered inappropriate
23+
24+
## Enforcement
25+
26+
Instances of unacceptable behavior may be reported by contacting the project team at `<hello@openapi.com>`. All complaints will be reviewed promptly and fairly.
27+
28+
## Attribution
29+
30+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.1.

docs/contributing.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Contributing to Openapi SDK
2+
3+
Thanks for considering contributing! 🎉
4+
We welcome all kinds of contributions: bug reports, feature requests, documentation improvements, and code enhancements.
5+
6+
## How to Contribute
7+
8+
1. **Fork the repository** and clone it locally:
9+
```bash
10+
git clone https://github.com/<username>/<repo>.git
11+
```
12+
13+
2. **Create a branch** for your feature or fix:
14+
```bash
15+
git checkout -b feature/your-feature-name
16+
```
17+
18+
3. **Make your changes** and commit them:
19+
```bash
20+
git commit -m "Add some feature"
21+
```
22+
23+
4. **Push your branch** to your fork:
24+
```bash
25+
git push origin feature/your-feature-name
26+
```
27+
28+
5. **Open a Pull Request** describing your changes.
29+
30+
## Guidelines
31+
32+
* Follow the existing **Rust coding style**.
33+
* Include **tests** for new features or bug fixes when applicable.
34+
* Keep **commit messages clear and concise**.
35+
* Update **documentation** as needed for your changes.
36+
37+
## Reporting Issues
38+
39+
To report bugs or request features, please **open an issue** on GitHub including:
40+
41+
* Clear description of the problem or feature.
42+
* Steps to reproduce (if applicable).
43+
* Relevant logs or screenshots.
44+
45+
Thank you for helping improve Openapi SDK! 🚀

0 commit comments

Comments
 (0)