Skip to content

Commit f87cd33

Browse files
committedApr 12, 2025·
Merge branch 'v3.x'
·
v3.0.3v3.0.0
2 parents cf73b6b + ab950cb commit f87cd33

File tree

160 files changed

+19789
-5268
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+19789
-5268
lines changed
 

‎.github/CODEOWNERS‎

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Laravel Elasticsearch Package Code Ownership
2+
# Defines who must review changes to specific parts of the codebase.
3+
4+
# Package metadata and config
5+
/composer.json @pdphilip
6+
/LICENSE @pdphilip
7+
/.github/ @pdphilip
8+
/README.md @pdphilip
9+
10+
# Core source code
11+
/src/ @pdphilip
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
## Package version
10+
ex: v2.10.3 (NB!)
11+
12+
13+
## Describe the bug
14+
A clear and concise description of what the bug is.
15+
16+
17+
18+
## To Reproduce
19+
Steps to reproduce the behavior:
20+
21+
22+
23+
## Expected behavior
24+
A clear and concise description of what you expected to happen.
25+
26+
27+
28+
---
29+
**Screenshots**:
30+
If applicable, add screenshots to help explain your problem.
31+
32+
**Component Versions (Paste in the `require` section from your composer.json file):**
33+
```json
34+
"require": {
35+
36+
},
37+
```
38+
39+
**Additional context**:
40+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

‎.github/workflows/phpstan.yml‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: PHPStan
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- github-actions
8+
paths:
9+
- '**.php'
10+
- 'phpstan.neon.dist'
11+
- '.github/workflows/phpstan.yml'
12+
13+
jobs:
14+
phpstan:
15+
name: phpstan
16+
runs-on: ubuntu-latest
17+
timeout-minutes: 5
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Setup PHP
22+
uses: shivammathur/setup-php@v2
23+
with:
24+
php-version: '8.2'
25+
coverage: none
26+
27+
- name: Install composer dependencies
28+
uses: ramsey/composer-install@v3
29+
30+
- name: Run PHPStan
31+
run: ./vendor/bin/phpstan --error-format=github

0 commit comments

Comments
 (0)
Please sign in to comment.