Skip to content

Commit 5baddb8

Browse files
ralflangRalf Lang
authored and
Ralf Lang
committed
Released Routes-3.0.0alpha4
1 parent de66968 commit 5baddb8

File tree

4 files changed

+31
-31
lines changed

4 files changed

+31
-31
lines changed

composer.json

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"minimum-stability": "dev",
32
"name": "horde/routes",
43
"description": "URL routing/mapping library",
54
"type": "library",
@@ -17,7 +16,7 @@
1716
"role": "lead"
1817
}
1918
],
20-
"time": "2021-03-13",
19+
"time": "2021-10-08",
2120
"repositories": [
2221
{
2322
"type": "composer",
@@ -26,15 +25,21 @@
2625
],
2726
"require": {
2827
"php": "^7",
29-
"horde/exception": "^3 || dev-FRAMEWORK_6_0",
30-
"horde/util": "^3 || dev-FRAMEWORK_6_0"
28+
"horde/exception": "^3",
29+
"horde/util": "^3"
3130
},
31+
"require-dev": {},
3232
"suggest": {
33-
"horde/test": "^3 || dev-FRAMEWORK_6_0"
33+
"horde/test": "^3"
3434
},
3535
"autoload": {
3636
"psr-0": {
3737
"Horde_Routes": "lib/"
3838
}
39+
},
40+
"autoload-dev": {
41+
"psr-4": {
42+
"Horde\\Routes\\Test\\": "test/"
43+
}
3944
}
4045
}

doc/Horde/Routes/CHANGES

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
v3.0.0alpha4
33
------------
44

5-
5+
[rla] Support horde/http_server middleware stacks.
6+
|+
67

78

89
------------

doc/Horde/Routes/changelog.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
state:
55
release: alpha
66
api: alpha
7-
date: 2021-03-13
7+
date: 2021-10-08
88
license:
99
identifier: BSD-2-Clause
1010
uri: http://www.horde.org/licenses/bsd
11-
notes: |+
12-
11+
notes: |
12+
[rla] Support horde/http_server middleware stacks.
13+
|+
1314
3.0.0alpha3:
1415
api: 3.0.0alpha1
1516
state:

package.xml

+15-22
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<email>[email protected]</email>
1818
<active>no</active>
1919
</lead>
20-
<date>2021-03-13</date>
20+
<date>2021-10-08</date>
2121
<version>
2222
<release>3.0.0alpha4</release>
2323
<api>3.0.0alpha1</api>
@@ -28,10 +28,18 @@
2828
</stability>
2929
<license uri="http://www.horde.org/licenses/bsd">BSD-2-Clause</license>
3030
<notes>
31-
*
31+
* [rla] Support horde/http_server middleware stacks.
32+
* |+
3233
</notes>
3334
<contents>
3435
<dir baseinstalldir="/" name="/">
36+
<dir name=".github">
37+
<dir name="workflows">
38+
<file name="ci.yml" role="php" />
39+
<file name="phpdoc.yml" role="php" />
40+
<file name="update-satis.yml" role="php" />
41+
</dir> <!-- /.github/workflows -->
42+
</dir> <!-- /.github -->
3543
<dir name="doc">
3644
<dir name="Horde">
3745
<dir name="Routes">
@@ -92,6 +100,9 @@
92100
</dependencies>
93101
<phprelease>
94102
<filelist>
103+
<install as="workflows/ci.yml" name=".github/workflows/ci.yml" />
104+
<install as="workflows/phpdoc.yml" name=".github/workflows/phpdoc.yml" />
105+
<install as="workflows/update-satis.yml" name=".github/workflows/update-satis.yml" />
95106
<install as="CHANGES" name="doc/Horde/Routes/CHANGES" />
96107
<install as="integration.txt" name="doc/Horde/Routes/integration.txt" />
97108
<install as="manual.txt" name="doc/Horde/Routes/manual.txt" />
@@ -115,25 +126,6 @@
115126
</filelist>
116127
</phprelease>
117128
<changelog>
118-
119-
120-
121-
122-
123-
124-
125-
126-
127-
128-
129-
130-
131-
132-
133-
134-
135-
136-
137129
<release>
138130
<version>
139131
<release>0.4.0</release>
@@ -431,7 +423,8 @@
431423
<date>2021-03-13</date>
432424
<license uri="http://www.horde.org/licenses/bsd">BSD-2-Clause</license>
433425
<notes>
434-
*
426+
* [rla] Support horde/http_server middleware stacks.
427+
* |+
435428
</notes>
436429
</release>
437430
</changelog>

0 commit comments

Comments
 (0)