Skip to content

Commit e517eff

Browse files
committed
WIP
1 parent c796e42 commit e517eff

File tree

4 files changed

+110
-87
lines changed

4 files changed

+110
-87
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Bug Report
22
description: Report an Issue or Bug with the Package
33
title: "[Bug]: "
4-
labels: ["bug"]
4+
labels: [ "bug" ]
55
body:
66
- type: markdown
77
attributes:
@@ -29,8 +29,8 @@ We're sorry to hear you have a problem. Can you help us solve it by providing th
2929
attributes:
3030
label: PHP Version
3131
description: What version of PHP are you running? Please be as specific as possible
32-
placeholder: "8.3.0"
33-
value: "8.3.0"
32+
placeholder: "8.4.0"
33+
value: "8.4.0"
3434
validations:
3535
required: true
3636
- type: input

.github/workflows/dependabot-auto-merge.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ jobs:
1010
runs-on: ubuntu-latest
1111
if: ${{ github.actor == 'dependabot[bot]' }}
1212
steps:
13-
13+
1414
- name: Dependabot metadata
1515
id: metadata
1616
uses: dependabot/[email protected]
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
19-
19+
2020
- name: Auto-merge Dependabot PRs for semver-minor updates
2121
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
2222
run: gh pr merge --auto --merge "$PR_URL"
2323
env:
2424
PR_URL: ${{github.event.pull_request.html_url}}
2525
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
26-
26+
2727
- name: Auto-merge Dependabot PRs for semver-patch updates
2828
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
2929
run: gh pr merge --auto --merge "$PR_URL"

.github/workflows/release.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: release
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
branches:
8+
- main
9+
jobs:
10+
release:
11+
name: Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: '0'
17+
- name: Bump version and push tag
18+
uses: anothrNick/github-tag-action@master
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
21+
WITH_V: true
22+
RELEASE_BRANCHES: main
23+
DEFAULT_BUMP: minor

composer.json

+81-81
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,84 @@
11
{
2-
"name": "codebar-ag/laravel-docuware",
3-
"description": "DocuWare integration with Laravel",
4-
"keywords": [
5-
"laravel",
6-
"docuware",
7-
"codebar-ag",
8-
"laravel-docuware",
9-
"codebar Solutions AG",
10-
"Ricoh Schweiz AG",
11-
"Docu Ware"
12-
],
13-
"homepage": "https://github.com/codebar-ag/laravel-docuware",
14-
"license": "MIT",
15-
"authors": [
16-
{
17-
"name": "Sebastian Bürgin-Fix",
18-
"email": "[email protected]",
19-
"homepage": "https://www.codebar.ch",
20-
"role": "Sofware-Engineer"
2+
"name": "codebar-ag/laravel-docuware",
3+
"description": "DocuWare integration with Laravel",
4+
"keywords": [
5+
"laravel",
6+
"docuware",
7+
"codebar-ag",
8+
"laravel-docuware",
9+
"codebar Solutions AG",
10+
"Ricoh Schweiz AG",
11+
"Docu Ware"
12+
],
13+
"homepage": "https://github.com/codebar-ag/laravel-docuware",
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "Sebastian Bürgin-Fix",
18+
"email": "[email protected]",
19+
"homepage": "https://www.codebar.ch",
20+
"role": "Sofware-Engineer"
21+
},
22+
{
23+
"name": "Rhys Lees",
24+
"role": "Software-Engineer"
25+
}
26+
],
27+
"require": {
28+
"php": "8.2.*|8.3.*|8.4.*",
29+
"guzzlehttp/guzzle": "^7.8",
30+
"illuminate/contracts": "^12.0",
31+
"nesbot/carbon": "^3.8",
32+
"saloonphp/cache-plugin": "^3.0",
33+
"saloonphp/laravel-plugin": "^3.5",
34+
"saloonphp/saloon": "^3.10.1",
35+
"spatie/laravel-package-tools": "^1.19"
2136
},
22-
{
23-
"name": "Rhys Lees",
24-
"role": "Software-Engineer"
25-
}
26-
],
27-
"require": {
28-
"php": "8.2.*|8.3.*|8.4.*",
29-
"guzzlehttp/guzzle": "^7.8",
30-
"illuminate/contracts": "^12.0",
31-
"nesbot/carbon": "^3.8",
32-
"saloonphp/cache-plugin": "^3.0",
33-
"saloonphp/laravel-plugin": "^3.5",
34-
"saloonphp/saloon": "^3.10.1",
35-
"spatie/laravel-package-tools": "^1.16"
36-
},
37-
"require-dev": {
38-
"laravel/pint": "^1.21",
39-
"larastan/larastan": "^v3.1",
40-
"orchestra/testbench": "^10.0",
41-
"pestphp/pest": "^3.7",
42-
"phpstan/extension-installer": "^1.4",
43-
"phpstan/phpstan-deprecation-rules": "^2.0",
44-
"phpstan/phpstan-phpunit": "^2.0",
45-
"spatie/laravel-ray": "^1.39"
46-
},
47-
"autoload": {
48-
"psr-4": {
49-
"CodebarAg\\DocuWare\\": "src"
50-
}
51-
},
52-
"autoload-dev": {
53-
"psr-4": {
54-
"CodebarAg\\DocuWare\\Tests\\": "tests"
55-
}
56-
},
57-
"scripts": {
58-
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
59-
"analyse": "vendor/bin/phpstan analyse",
60-
"test": "vendor/bin/pest",
61-
"test-coverage": "vendor/bin/pest --coverage",
62-
"format": "vendor/bin/pint"
63-
},
64-
"config": {
65-
"sort-packages": true,
66-
"allow-plugins": {
67-
"composer/package-versions-deprecated": true,
68-
"phpstan/extension-installer": true,
69-
"pestphp/pest-plugin": true
70-
}
71-
},
72-
"extra": {
73-
"laravel": {
74-
"providers": [
75-
"CodebarAg\\DocuWare\\DocuWareServiceProvider"
76-
],
77-
"aliases": {
78-
"DocuWare": "CodebarAg\\DocuWare\\Facades\\DocuWare"
79-
}
80-
}
81-
},
82-
"minimum-stability": "dev",
83-
"prefer-stable": true
37+
"require-dev": {
38+
"laravel/pint": "^1.21",
39+
"larastan/larastan": "^v3.1",
40+
"orchestra/testbench": "^10.0",
41+
"pestphp/pest": "^3.7",
42+
"phpstan/extension-installer": "^1.4",
43+
"phpstan/phpstan-deprecation-rules": "^2.0",
44+
"phpstan/phpstan-phpunit": "^2.0",
45+
"spatie/laravel-ray": "^1.39"
46+
},
47+
"autoload": {
48+
"psr-4": {
49+
"CodebarAg\\DocuWare\\": "src"
50+
}
51+
},
52+
"autoload-dev": {
53+
"psr-4": {
54+
"CodebarAg\\DocuWare\\Tests\\": "tests"
55+
}
56+
},
57+
"scripts": {
58+
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
59+
"analyse": "vendor/bin/phpstan analyse",
60+
"test": "vendor/bin/pest",
61+
"test-coverage": "vendor/bin/pest --coverage",
62+
"format": "vendor/bin/pint"
63+
},
64+
"config": {
65+
"sort-packages": true,
66+
"allow-plugins": {
67+
"composer/package-versions-deprecated": true,
68+
"phpstan/extension-installer": true,
69+
"pestphp/pest-plugin": true
70+
}
71+
},
72+
"extra": {
73+
"laravel": {
74+
"providers": [
75+
"CodebarAg\\DocuWare\\DocuWareServiceProvider"
76+
],
77+
"aliases": {
78+
"DocuWare": "CodebarAg\\DocuWare\\Facades\\DocuWare"
79+
}
80+
}
81+
},
82+
"minimum-stability": "dev",
83+
"prefer-stable": true
8484
}

0 commit comments

Comments
 (0)