Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
022c7fa
Updated .gitattributes to force eol=LF on php files
visto9259 Nov 15, 2024
fda1652
Merge pull request #110 from visto9259/3.8.x
visto9259 Nov 15, 2024
070b49c
Lock file maintenance
renovate[bot] Nov 18, 2024
1348120
Update all non-major dependencies to v3.6.2
renovate[bot] Nov 19, 2024
ce0a688
Update all non-major dependencies to v3.6.3
renovate[bot] Nov 22, 2024
5b03828
Lock file maintenance
renovate[bot] Dec 1, 2024
6a6d912
Added PHP 8.4 to CI matrix
visto9259 Jan 3, 2025
55edc85
Dropping CHANGELOG.md file
visto9259 Jan 3, 2025
020d3bc
Added release-on-milestone-closed GH workflow
visto9259 Jan 3, 2025
f5743c5
Merge branch 'LM-Commons:3.8.x' into 3.8.x
visto9259 Jan 3, 2025
b639d15
Merge pull request #115 from visto9259/3.8.x
visto9259 Jan 3, 2025
f6ea7a6
Update all non-major dependencies to v3.7.0
renovate[bot] Jan 3, 2025
0d23a64
Lock file maintenance
renovate[bot] Mar 1, 2025
85a3401
Lock file maintenance
renovate[bot] Apr 1, 2025
b2ac49c
Lock file maintenance
renovate[bot] May 1, 2025
20e8668
Update all non-major dependencies to v3.8.0
renovate[bot] May 27, 2025
c9ad382
Lock file maintenance
renovate[bot] Jun 1, 2025
c85503f
Update all non-major dependencies to v3.8.1
renovate[bot] Jun 6, 2025
862d885
Lock file maintenance
renovate[bot] Jul 1, 2025
a1813a3
Lock file maintenance
renovate[bot] Aug 1, 2025
c7f73fd
Lock file maintenance
renovate[bot] Oct 1, 2025
2ade930
Lock file maintenance
renovate[bot] Nov 1, 2025
a8efa52
Update actions/checkout action to v6
renovate[bot] Nov 20, 2025
d9b04a1
Merge pull request #129 from LM-Commons/renovate/actions-checkout-6.x
visto9259 Nov 25, 2025
ca995ad
Update actions/setup-node action to v6
renovate[bot] Nov 25, 2025
8af6bda
Update dependency node to v24
renovate[bot] Nov 25, 2025
ace871e
Merge pull request #128 from LM-Commons/renovate/node-24.x
visto9259 Nov 25, 2025
f01ae36
Merge pull request #127 from LM-Commons/renovate/actions-setup-node-6.x
visto9259 Nov 25, 2025
b796e3f
Update all non-major dependencies to v3.9.2 (#126)
renovate[bot] Nov 25, 2025
2839f07
Dropped support for php 8.1
visto9259 Nov 25, 2025
4075894
Bumped min versions. Removed unused phpmd/phpmd
visto9259 Nov 25, 2025
c27da41
Merge branch 'LM-Commons:3.9.x' into 3.9.x
visto9259 Nov 25, 2025
66ca6fc
Merge pull request #133 from visto9259/3.9.x
visto9259 Nov 25, 2025
95fc0fe
Fixed php 8.4 deprecations warnings for implicit assignments of null …
visto9259 Nov 25, 2025
a46f0d5
Merge branch 'LM-Commons:3.9.x' into 3.9.x
visto9259 Nov 25, 2025
9a4277b
Merge pull request #134 from visto9259/3.9.x
visto9259 Nov 25, 2025
c6c7442
Adding php 8.5 to CI testing
visto9259 Nov 25, 2025
2976a4e
Merge pull request #135 from visto9259/3.9.x
visto9259 Nov 25, 2025
d681312
Upgraded to Docusaurus 3.9 and React 19
visto9259 Nov 25, 2025
e6c6cae
Merge branch 'LM-Commons:3.9.x' into 3.9.x
visto9259 Nov 25, 2025
f8a9a18
Merge pull request #136 from visto9259/3.9.x
visto9259 Nov 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
/.php_cs export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/tests/ export-ignore
/tests/ export-ignore
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
*.php text eol=lf
4 changes: 2 additions & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
strategy:
matrix:
php_version: ['8.1', '8.2', '8.3']
php_version: ['8.2', '8.3', '8.4', '8.5']
deps: ['--prefer-lowest --prefer-dist', '']
include:
- code-coverage: 'yes'
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Show PHP version
run: php -v

- uses: actions/checkout@v4
- uses: actions/checkout@v6
name: Checkout branch

- name: Validate composer.json and composer.lock
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
shell: bash
working-directory: ./docs
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 18
node-version: 24
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/release-on-milestone-closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions

name: "Automatic Releases"

on:
milestone:
types:
- "closed"

jobs:
release:
uses: laminas/workflow-automatic-releases/.github/workflows/release-on-milestone-closed.yml@1.x
secrets:
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
ORGANIZATION_ADMIN_TOKEN: ${{ secrets.ORGANIZATION_ADMIN_TOKEN }}
SIGNING_SECRET_KEY: ${{ secrets.SIGNING_SECRET_KEY }}
6 changes: 3 additions & 3 deletions .github/workflows/test-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
name: Build GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 18
node-version: 24
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
Expand Down
42 changes: 0 additions & 42 deletions CHANGELOG.md

This file was deleted.

43 changes: 21 additions & 22 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,31 +26,30 @@
],

"require": {
"php" : "^7.3 || ^8.0",
"laminas/laminas-authentication" : "^2.7",
"laminas/laminas-crypt" : "^3.0",
"laminas/laminas-form" : "^3.0",
"laminas/laminas-inputfilter" : "^2.10",
"laminas/laminas-loader" : "^2.6",
"laminas/laminas-modulemanager" : "^2.8",
"laminas/laminas-mvc" : "^3.0",
"laminas/laminas-servicemanager" : "^3.0",
"laminas/laminas-stdlib" : "^3.0",
"laminas/laminas-validator" : "^2.13",
"laminas/laminas-db" : "^2.11",
"laminas/laminas-view" : "^2.11",
"laminas/laminas-session" : "^2.9",
"laminas/laminas-http" : "^2.11",
"laminas/laminas-mvc-plugin-flashmessenger" : "^1.2",
"laminas/laminas-i18n" : "^2.10",
"laminas/laminas-mvc-plugin-prg" : "^1.2",
"laminas/laminas-hydrator" : "^4.1"
"php" : "^8.2",
"laminas/laminas-authentication" : "^2.13",
"laminas/laminas-crypt" : "^3.9",
"laminas/laminas-form" : "^3.5",
"laminas/laminas-inputfilter" : "^2.22",
"laminas/laminas-loader" : "^2.9",
"laminas/laminas-modulemanager" : "^2.10",
"laminas/laminas-mvc" : "^3.4",
"laminas/laminas-servicemanager" : "^3.19",
"laminas/laminas-stdlib" : "^3.14",
"laminas/laminas-validator" : "^2.26",
"laminas/laminas-db" : "^2.16",
"laminas/laminas-view" : "^2.24",
"laminas/laminas-session" : "^2.14",
"laminas/laminas-http" : "^2.17",
"laminas/laminas-mvc-plugin-flashmessenger" : "^1.9",
"laminas/laminas-i18n" : "^2.19",
"laminas/laminas-mvc-plugin-prg" : "^1.7",
"laminas/laminas-hydrator" : "^4.6"
},
"require-dev" : {
"phpunit/phpunit" : "^9.5.4",
"phpmd/phpmd" : "^2.7.0",
"squizlabs/php_codesniffer" : "^3.5.5",
"laminas/laminas-captcha" : "^2.6"
"laminas/laminas-captcha" : "^2.14"
},
"suggest": {
"laminas/laminas-captcha" : "Laminas\\Captcha if you want to use the captcha component"
Expand All @@ -72,7 +71,7 @@
},
"config": {
"platform": {
"php": "8.1.99"
"php": "8.2.99"
}
},
"scripts": {
Expand Down
Loading