Skip to content

Commit 243c706

Browse files
ralflangRalf Lang
authored and
Ralf Lang
committedOct 25, 2023
Development mode for Routes-3.0.0alpha6
1 parent 31b813d commit 243c706

File tree

7 files changed

+70
-28
lines changed

7 files changed

+70
-28
lines changed
 

‎.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,17 @@ jobs:
4242
extensions: bcmath, ctype, curl, dom, gd, gettext, iconv, imagick, json, ldap, mbstring, mysql, opcache, openssl, pcntl, pdo, posix, redis, soap, sockets, sqlite, tokenizer, xmlwriter
4343
ini-values: post_max_size=512M, max_execution_time=360
4444
coverage: xdebug
45-
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}, composer:v2
45+
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}, composer:v2, phpstan
4646
- name: Setup Github Token as composer credential
4747
run: composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
4848
- name: Install horde/test dependency and other dependencies
4949
run: |
5050
## For unclear reasons, github action fails randomly if we do not install before we require.
5151
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer install
5252
COMPOSER_ROOT_VERSION=dev-FRAMEWORK_6_0 composer require --dev horde/test dev-FRAMEWORK_6_0 horde/log dev-FRAMEWORK_6_0
53+
- name: Setup problem matchers for PHPUnit
54+
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
5355
- name: run phpunit
54-
run: phpunit --bootstrap test/Horde/Routes/bootstrap.php test/Horde/Routes/
56+
run: phpunit --bootstrap test/bootstrap.php
57+
- name: run phpstan
58+
run: phpstan analyze src/ --level 1

‎.github/workflows/phpstan.yml

-19
This file was deleted.

‎.horde.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ authors:
2323
active: false
2424
role: lead
2525
version:
26-
release: 3.0.0alpha5
26+
release: 3.0.0alpha6
2727
api: 3.0.0alpha1
2828
state:
2929
release: alpha
@@ -37,6 +37,7 @@ dependencies:
3737
composer:
3838
horde/exception: ^3
3939
horde/util: ^3
40+
horde/support: ^3
4041
psr/http-message: ^1
4142
optional:
4243
composer:

‎composer.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"minimum-stability": "dev",
23
"name": "horde/routes",
34
"description": "URL routing/mapping library",
45
"type": "library",
@@ -25,13 +26,14 @@
2526
],
2627
"require": {
2728
"php": "^7.4 || ^8",
28-
"horde/exception": "^3",
29-
"horde/util": "^3",
29+
"horde/exception": "^3 || dev-FRAMEWORK_6_0",
30+
"horde/util": "^3 || dev-FRAMEWORK_6_0",
31+
"horde/support": "^3 || dev-FRAMEWORK_6_0",
3032
"psr/http-message": "^1"
3133
},
3234
"require-dev": {},
3335
"suggest": {
34-
"horde/test": "^3"
36+
"horde/test": "^3 || dev-FRAMEWORK_6_0"
3537
},
3638
"autoload": {
3739
"psr-0": {

‎doc/Horde/Routes/CHANGES

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
------------
2+
v3.0.0alpha6
3+
------------
4+
5+
6+
7+
18
------------
29
v3.0.0alpha5
310
------------

‎doc/Horde/Routes/changelog.yml

+11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
---
2+
3.0.0alpha6:
3+
api: 3.0.0alpha1
4+
state:
5+
release: alpha
6+
api: alpha
7+
date: 2021-10-28
8+
license:
9+
identifier: BSD-2-Clause
10+
uri: http://www.horde.org/licenses/bsd
11+
notes: |+
12+
213
3.0.0alpha5:
314
api: 3.0.0alpha1
415
state:

‎package.xml

+39-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</lead>
2020
<date>2021-10-28</date>
2121
<version>
22-
<release>3.0.0alpha5</release>
22+
<release>3.0.0alpha6</release>
2323
<api>3.0.0alpha1</api>
2424
</version>
2525
<stability>
@@ -28,7 +28,7 @@
2828
</stability>
2929
<license uri="http://www.horde.org/licenses/bsd">BSD-2-Clause</license>
3030
<notes>
31-
* |+
31+
*
3232
</notes>
3333
<contents>
3434
<dir baseinstalldir="/" name="/">
@@ -141,6 +141,27 @@
141141
</filelist>
142142
</phprelease>
143143
<changelog>
144+
145+
146+
147+
148+
149+
150+
151+
152+
153+
154+
155+
156+
157+
158+
159+
160+
161+
162+
163+
164+
144165
<release>
145166
<version>
146167
<release>0.4.0</release>
@@ -451,11 +472,26 @@
451472
<release>alpha</release>
452473
<api>alpha</api>
453474
</stability>
454-
<date>2021-10-08</date>
475+
<date>2021-10-28</date>
455476
<license uri="http://www.horde.org/licenses/bsd">BSD-2-Clause</license>
456477
<notes>
457478
* |+
458479
</notes>
459480
</release>
481+
<release>
482+
<version>
483+
<release>3.0.0alpha6</release>
484+
<api>3.0.0alpha1</api>
485+
</version>
486+
<stability>
487+
<release>alpha</release>
488+
<api>alpha</api>
489+
</stability>
490+
<date>2021-10-28</date>
491+
<license uri="http://www.horde.org/licenses/bsd">BSD-2-Clause</license>
492+
<notes>
493+
*
494+
</notes>
495+
</release>
460496
</changelog>
461497
</package>

0 commit comments

Comments
 (0)
Please sign in to comment.