Skip to content

Commit e69b7a4

Browse files
committed
Update templates
1 parent 4eafbab commit e69b7a4

13 files changed

+47
-43
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ trim_trailing_whitespace = true
1111
[*.md]
1212
trim_trailing_whitespace = false
1313

14-
[*.yml]
14+
[*.{yml,yaml}]
1515
indent_size = 2

.github/CODE_OF_CONDUCT.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Code of Conduct
2+
3+
The Laravel Code of Conduct can be found in the [Laravel documentation](https://laravel.com/docs/contributions#code-of-conduct).

.github/CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contribution Guide
2+
3+
The Laravel contributing guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).

.github/ISSUE_TEMPLATE/1_Bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "🐛 Bug Report"
2+
name: "Bug report"
33
about: 'Report a general library issue. Please ensure your version is still supported: https://laravel.com/docs/releases#support-policy'
44
---
55

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
name: "Feature request"
3+
about: 'For ideas or feature requests, please make a pull request, or open an issue'
4+
---

.github/ISSUE_TEMPLATE/2_Support_question.md

-14
This file was deleted.

.github/ISSUE_TEMPLATE/3_Feature_request.md

-6
This file was deleted.

.github/ISSUE_TEMPLATE/4_Documentation_issue.md

-8
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Support question
4+
url: https://laravel.com/docs/contributions#support-questions
5+
about: 'This repository is only for reporting bugs. If you need help using the library, click:'
6+
- name: Documentation issue
7+
url: https://github.com/laravel/docs
8+
about: For documentation issues, open a pull request at the laravel/docs repository

.github/ISSUE_TEMPLATE/5_Security_vulnerabilities.md .github/SECURITY.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
---
2-
name: "🔒 Security Vulnerabilities"
3-
about: 'For reporting security-related issues, see: https://github.com/laravel/laravel#security-vulnerabilities'
4-
---
1+
# Security Policy
52

6-
PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, SEE BELOW.
3+
**PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, [SEE BELOW](#reporting-a-vulnerability).**
74

8-
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
5+
## Supported Versions
96

10-
Public PGP Key:
7+
Only the latest major version receives security fixes.
8+
9+
## Reporting a Vulnerability
10+
11+
If you discover a security vulnerability within Laravel, please send an email to Taylor Otwell at [email protected]. All security vulnerabilities will be promptly addressed.
12+
13+
### Public PGP Key
1114

1215
```
1316
-----BEGIN PGP PUBLIC KEY BLOCK-----

.github/SUPPORT.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Support Questions
2+
3+
The Laravel support guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions#support-questions).

.gitignore

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
/vendor
22
/laravel
33
/node_modules
4-
composer.phar
4+
/phpunit.xml
55
composer.lock
6-
.DS_Store
7-
Thumbs.db
8-
phpunit.xml
9-
/.idea
106
.phpunit.result.cache

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@ All of your worker configuration is stored in a single, simple configuration fil
2222

2323
Documentation for Horizon can be found on the [Laravel website](https://laravel.com/docs/horizon).
2424

25+
## Contributing
26+
27+
Thank you for considering contributing to Horizon! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
28+
29+
## Code of Conduct
30+
31+
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
32+
33+
## Security Vulnerabilities
34+
35+
Please review [our security policy](https://github.com/laravel/horizon/security/policy) on how to report security vulnerabilities.
36+
2537
## License
2638

27-
Laravel Horizon is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
39+
Laravel Horizon is open-sourced software licensed under the [MIT license](LICENSE.md).

0 commit comments

Comments
 (0)