Skip to content

Commit 30484a6

Browse files
authored
Merge pull request #109 from sunrise-php/release/v3.0.0
v3
2 parents 06d05af + dbf194a commit 30484a6

File tree

396 files changed

+19378
-10380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

396 files changed

+19378
-10380
lines changed

.circleci/config.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ indent_size = 4
1111
trim_trailing_whitespace = true
1212
insert_final_newline = true
1313

14-
[*.yml]
14+
[*{.json,.xml,.xml.dist,.neon,.yml}]
1515
indent_size = 2

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These are supported funding model platforms
22

33
github: fenric # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4-
patreon: # Replace with a single Patreon username
4+
patreon: afenric
55
open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: "packagist/sunrise/http-router" # Replace with a single Tidelift platform-name/package-name e.g., npm/babel

.scrutinizer.yml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,36 @@
11
build:
2-
environment:
3-
php:
4-
version: '8.0'
2+
image: default-bionic
53
nodes:
64
analysis:
5+
environment:
6+
php: 8.3.16
77
tests:
88
override:
99
- php-scrutinizer-run
1010
coverage:
11+
environment:
12+
php: 8.3.16
1113
tests:
1214
override:
1315
- command: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-clover coverage.xml
1416
coverage:
1517
file: coverage.xml
1618
format: clover
19+
php83:
20+
environment:
21+
php: 8.3.16
22+
tests:
23+
override:
24+
- command: composer test
25+
php82:
26+
environment:
27+
php: 8.2.27
28+
tests:
29+
override:
30+
- command: composer test
31+
php81:
32+
environment:
33+
php: 8.1.31
34+
tests:
35+
override:
36+
- command: composer test

CHANGELOG.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +0,0 @@
1-
# v2.16.0
2-
3-
* New method: `Router::hasRoute(string):bool`.
4-
5-
## v2.15.0
6-
7-
* New middleware: `Sunrise\Http\Router\Middleware\JsonPayloadDecodingMiddleware`.
8-
9-
## v2.14.0
10-
11-
* New method: `Route::getHolder():Reflector`;
12-
* New method: `Router::resolveHostname(string):?string`;
13-
* New method: `Router::getRoutesByHostname(string):array`;
14-
* New method: `RouterBuilder::setEventDispatcher(?EventDispatcherInterface):void`.
15-
16-
## v2.13.0
17-
18-
* Supports for events using the `symfony/event-dispatcher`.

0 commit comments

Comments
 (0)