Skip to content

Commit a607597

Browse files
authored
Merge pull request #209 from wayofdev/feat/laravel-11
2 parents d4223b6 + 6c41390 commit a607597

File tree

6 files changed

+3177
-1579
lines changed

6 files changed

+3177
-1579
lines changed

.github/.release-please-config.json

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "php",
4+
"packages": {
5+
".": {
6+
"package-name": "laravel-cycle-orm-event-sourcing",
7+
"changelog-path": "/CHANGELOG.md"
8+
}
9+
},
10+
"include-component-in-tag": false,
11+
"changelog-sections": [
12+
{
13+
"type": "feat",
14+
"section": "Features",
15+
"hidden": false
16+
},
17+
{
18+
"type": "fix",
19+
"section": "Bug Fixes",
20+
"hidden": false
21+
},
22+
{
23+
"type": "perf",
24+
"section": "Performance Improvements",
25+
"hidden": false
26+
},
27+
{
28+
"type": "docs",
29+
"section": "Documentation",
30+
"hidden": false
31+
},
32+
{
33+
"type": "deps",
34+
"section": "Dependencies",
35+
"hidden": false
36+
},
37+
{
38+
"type": "refactor",
39+
"section": "Code Refactoring",
40+
"hidden": false
41+
},
42+
{
43+
"type": "test",
44+
"section": "Tests",
45+
"hidden": true
46+
},
47+
{
48+
"type": "build",
49+
"section": "Build System",
50+
"hidden": true
51+
},
52+
{
53+
"type": "ci",
54+
"section": "Continuous Integration",
55+
"hidden": true
56+
},
57+
{
58+
"type": "chore",
59+
"section": "Miscellaneous",
60+
"hidden": true
61+
},
62+
{
63+
"type": "style",
64+
"section": "Styles",
65+
"hidden": true
66+
},
67+
{
68+
"type": "revert",
69+
"section": "Reverts",
70+
"hidden": true
71+
}
72+
]
73+
}

.github/.release-please-manifest.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "1.2.81"
3+
}

.github/workflows/create-release.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# https://github.com/wayofdev/gh-actions/blob/master/.github/workflows/create-release.yml
44
# https://github.com/google-github-actions/release-please-action#release-types-supported
5+
# https://github.com/googleapis/release-please/blob/main/docs/customizing.md
56

67
on: # yamllint disable-line rule:truthy
78
push:
@@ -12,12 +13,15 @@ name: 📦 Create release
1213

1314
jobs:
1415
release:
15-
uses: wayofdev/gh-actions/.github/workflows/create-release.yml@master
16-
with:
17-
os: ubuntu-latest
18-
branch: master
19-
package-name: laravel-cycle-event-sourcing
20-
secrets:
21-
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: 🎉 Create release
19+
uses: googleapis/[email protected]
20+
id: release
21+
with:
22+
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
23+
config-file: .github/.release-please-config.json
24+
manifest-file: .github/.release-please-manifest.json
25+
target-branch: master
2226

2327
...

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
"ext-decimal": "*",
2020
"ext-json": "*",
2121
"beberlei/assert": "^3.3",
22-
"eventsauce/eventsauce": "^3.4",
23-
"illuminate/contracts": "^10.13"
22+
"eventsauce/eventsauce": "^3.6",
23+
"illuminate/contracts": "^10.13 || ^11.0"
2424
},
2525
"require-dev": {
26-
"ergebnis/composer-normalize": "^2.31",
27-
"nunomaduro/larastan": "^2.6",
26+
"ergebnis/composer-normalize": "^2.42",
27+
"larastan/larastan": "^2.9",
2828
"orchestra/testbench": "^8.5",
2929
"pestphp/pest": "^2.6",
3030
"pestphp/pest-plugin-laravel": "^2.0",

0 commit comments

Comments
 (0)