Skip to content

Commit de77774

Browse files
committed
Release 6.0.0-alpha4 (API Version: 6.0.0-alpha1)
style: apply php-cs-fixer php8.3+ rules chore: Use classmap for lib/ PSR0ish classes feat: Add stub of custom config form fix: Add conditional to hook class template to prevent double declaration issues
1 parent 7906f9a commit de77774

File tree

6 files changed

+110
-1754
lines changed

6 files changed

+110
-1754
lines changed

.horde.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ authors:
2222
active: false
2323
role: lead
2424
version:
25-
release: 6.0.0alpha4
25+
release: 6.0.0-alpha4
2626
api: 6.0.0alpha1
2727
state:
2828
release: alpha
@@ -31,7 +31,7 @@ license:
3131
identifier: GPL-2.0-only
3232
uri: http://www.horde.org/licenses/gpl
3333
classmap:
34-
- lib/
34+
- lib/
3535
dependencies:
3636
required:
3737
php: ^8.1

composer.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"minimum-stability": "dev",
32
"name": "horde/passwd",
43
"description": "Password changing application",
54
"type": "horde-application",
@@ -17,16 +16,11 @@
1716
"role": "lead"
1817
}
1918
],
20-
"time": "2022-11-03",
21-
"repositories": [
22-
{
23-
"type": "composer",
24-
"url": "https://horde-satis.maintaina.com"
25-
}
26-
],
19+
"time": "2025-06-04",
20+
"repositories": [],
2721
"require": {
28-
"horde/horde-installer-plugin": "dev-FRAMEWORK_6_0 || ^2",
29-
"php": "^7.4 || ^8",
22+
"horde/horde-installer-plugin": "dev-FRAMEWORK_6_0 || ^3 || ^2",
23+
"php": "^8.1",
3024
"horde/horde": "^6 || dev-FRAMEWORK_6_0",
3125
"horde/auth": "^3 || dev-FRAMEWORK_6_0",
3226
"horde/core": "^3 || dev-FRAMEWORK_6_0",
@@ -50,6 +44,9 @@
5044
"autoload": {
5145
"psr-0": {
5246
"Passwd": "lib/"
47+
},
48+
"psr-4": {
49+
"Horde\\Passwd\\": "src/"
5350
}
5451
},
5552
"autoload-dev": {
@@ -61,5 +58,10 @@
6158
"allow-plugins": {
6259
"horde/horde-installer-plugin": true
6360
}
61+
},
62+
"extra": {
63+
"branch-alias": {
64+
"dev-FRAMEWORK_6_0": "6.x-dev"
65+
}
6466
}
6567
}

0 commit comments

Comments
 (0)