Skip to content

Commit 4f2c7d8

Browse files
authored
Merge pull request #6 from codebar-ag/feature-refresh
Feature Refresh
2 parents e66b354 + 5e2abe4 commit 4f2c7d8

File tree

4 files changed

+74
-25
lines changed

4 files changed

+74
-25
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Bug Report
2+
description: Report an Issue or Bug with the Package
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
We're sorry to hear you have a problem. Can you help us solve it by providing the following details.
10+
- type: textarea
11+
id: what-happened
12+
attributes:
13+
label: What happened?
14+
description: What did you expect to happen?
15+
placeholder: I cannot currently do X thing because when I do, it breaks X thing.
16+
validations:
17+
required: true
18+
19+
- type: input
20+
id: package-version
21+
attributes:
22+
label: Package Version
23+
description: What version of our Package are you running? Please be as specific as possible
24+
placeholder: 2.0.0
25+
validations:
26+
required: true
27+
- type: input
28+
id: php-version
29+
attributes:
30+
label: PHP Version
31+
description: What version of PHP are you running? Please be as specific as possible
32+
placeholder: 8.2.0
33+
validations:
34+
required: true
35+
- type: input
36+
id: laravel-version
37+
attributes:
38+
label: Laravel Version
39+
description: What version of Laravel are you running? Please be as specific as possible
40+
placeholder: 9.0.0
41+
validations:
42+
required: true
43+
- type: dropdown
44+
id: operating-systems
45+
attributes:
46+
label: Which operating systems does with happen with?
47+
description: You may select more than one.
48+
multiple: true
49+
options:
50+
- macOS
51+
- Windows
52+
- Linux

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Ask a question
3+
- name: Questions & Feature Requests
44
url: https://github.com/codebar-ag/laravel-bexio/issues/new
55
about: Ask the community for help
6-
- name: Request a feature
7-
url: https://github.com/codebar-ag/laravel-bexio/issues/new
8-
about: Share ideas for new features
9-
- name: Report a bug
10-
url: https://github.com/codebar-ag/laravel-bexio/issues/new
11-
about: Report a reproducable bug
6+
- name: Report a security issue
7+
url: https://github.com/codebar-ag/laravel-bexio/security/policy
8+
about: Learn how to notify us for sensitive bugs

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
max-parallel: 1
1515
matrix:
1616
os: [ ubuntu-latest, windows-latest ]
17-
php: [ 8.2 ]
17+
php: [ 8.2, 8.3 ]
1818
laravel: [ 10.* ]
1919
stability: [ prefer-lowest, prefer-stable ]
2020
include:

composer.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@
2323
],
2424
"require": {
2525
"php": "^8.2",
26-
"guzzlehttp/guzzle": "^7.5",
26+
"guzzlehttp/guzzle": "^7.8",
2727
"illuminate/contracts": "^10.0",
28-
"laravel/framework": "10.*",
29-
"orchestra/testbench": "8.*",
28+
"laravel/framework": "^10.39",
29+
"orchestra/testbench": "^8.19",
3030
"saloonphp/cache-plugin": "^3.0",
31-
"saloonphp/laravel-plugin": "^3.0",
32-
"saloonphp/saloon": "^3.0",
33-
"spatie/laravel-data": "^3.6",
31+
"saloonphp/laravel-plugin": "^3.2",
32+
"saloonphp/saloon": "^3.4",
33+
"spatie/laravel-data": "^3.11",
3434
"spatie/laravel-enum": "^3.0",
35-
"spatie/laravel-package-tools": "^1.9.2"
35+
"spatie/laravel-package-tools": "^1.16"
3636
},
3737
"require-dev": {
38-
"laravel/pint": "^1.5",
39-
"nunomaduro/collision": "^7.0",
40-
"nunomaduro/larastan": "^2.4.0",
41-
"orchestra/testbench": "^8.0",
42-
"pestphp/pest": "^2.0",
43-
"pestphp/pest-plugin-laravel": "^2.0",
44-
"phpstan/extension-installer": "^1.1",
45-
"phpstan/phpstan-deprecation-rules": "^1.0",
46-
"phpstan/phpstan-phpunit": "^1.0",
47-
"spatie/laravel-ray": "^1.9"
38+
"laravel/pint": "^1.13",
39+
"nunomaduro/collision": "^7.10",
40+
"nunomaduro/larastan": "^2.8",
41+
"orchestra/testbench": "^8.19",
42+
"pestphp/pest": "^2.30",
43+
"pestphp/pest-plugin-laravel": "^2.2",
44+
"phpstan/extension-installer": "^1.3",
45+
"phpstan/phpstan-deprecation-rules": "^1.1",
46+
"phpstan/phpstan-phpunit": "^1.3",
47+
"spatie/laravel-ray": "^1.33"
4848
},
4949
"autoload": {
5050
"psr-4": {

0 commit comments

Comments
 (0)