Skip to content

Commit 707680a

Browse files
authored
Merge pull request #10 from codebar-ag/feature-refresh
Feature Refresh
2 parents f0b0918 + b3c9fae commit 707680a

File tree

4 files changed

+74
-25
lines changed

4 files changed

+74
-25
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+52
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

+6-9
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
4-
url: https://github.com/codebar-ag/laravel-flatfox/discussions/new?category=q-a
5-
about: Ask the community for help
6-
- name: Request a feature
7-
url: https://github.com/codebar-ag/laravel-flatfox/discussions/new?category=ideas
8-
about: Share ideas for new features
9-
- name: Report a bug
10-
url: https://github.com/codebar-ag/laravel-flatfox/issues/new
11-
about: Report a reproducable bug
3+
- name: Questions & Feature Requests
4+
url: https://github.com/codebar-ag/laravel-flatfox/issues/new
5+
about: Ask the community for help
6+
- name: Report a security issue
7+
url: https://github.com/codebar-ag/laravel-flatfox/security/policy
8+
about: Learn how to notify us for sensitive bugs

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ ubuntu-latest, windows-latest ]
16-
php: [ 8.2 ]
16+
php: [ 8.2, 8.3 ]
1717
laravel: [ 10.* ]
1818
stability: [ prefer-lowest, prefer-stable ]
1919
include:

composer.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@
1919
],
2020
"require": {
2121
"php": "^8.2",
22-
"guzzlehttp/guzzle": "^7.5",
22+
"guzzlehttp/guzzle": "^7.8",
2323
"illuminate/contracts": "^10.0",
24-
"saloonphp/laravel-plugin": "^3.0",
25-
"saloonphp/saloon": "^3.0",
24+
"saloonphp/laravel-plugin": "^3.2",
25+
"saloonphp/saloon": "^3.4",
2626
"saloonphp/cache-plugin": "^3.0",
27-
"spatie/laravel-package-tools": "^1.9.2"
27+
"spatie/laravel-package-tools": "^1.16"
2828
},
2929
"require-dev": {
30-
"laravel/pint": "^1.5",
31-
"nunomaduro/collision": "^7.0",
32-
"nunomaduro/larastan": "^2.4.0",
33-
"pestphp/pest": "^2.0",
34-
"orchestra/testbench": "^8.0",
35-
"pestphp/pest-plugin-laravel": "^2.0",
36-
"pestphp/pest-plugin-arch": "^2.0",
37-
"phpstan/extension-installer": "^1.1",
38-
"phpstan/phpstan-deprecation-rules": "^1.0",
39-
"phpstan/phpstan-phpunit": "^1.0",
40-
"spatie/laravel-ray": "^1.9"
30+
"laravel/pint": "^1.13",
31+
"nunomaduro/collision": "^7.10",
32+
"nunomaduro/larastan": "^2.8",
33+
"pestphp/pest": "^2.31",
34+
"orchestra/testbench": "^8.20",
35+
"pestphp/pest-plugin-laravel": "^2.2",
36+
"pestphp/pest-plugin-arch": "^2.6",
37+
"phpstan/extension-installer": "^1.3",
38+
"phpstan/phpstan-deprecation-rules": "^1.1",
39+
"phpstan/phpstan-phpunit": "^1.3",
40+
"spatie/laravel-ray": "^1.33"
4141
},
4242
"autoload": {
4343
"psr-4": {

0 commit comments

Comments
 (0)