Skip to content

Commit

Permalink
Merge pull request #101 from sunrise-php/release/v2.17.0
Browse files Browse the repository at this point in the history
v2.16.1
  • Loading branch information
fenric authored Apr 19, 2022
2 parents 38311fa + 380006b commit 459948e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
19 changes: 14 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,47 @@ version: 2
jobs:
php71:
docker:
- image: circleci/php:7.1-cli-node-browsers
- image: cimg/php:7.1
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php72:
docker:
- image: circleci/php:7.2-cli-node-browsers
- image: cimg/php:7.2
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php73:
docker:
- image: circleci/php:7.3-cli-node-browsers
- image: cimg/php:7.3
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php74:
docker:
- image: circleci/php:7.4-cli-node-browsers
- image: cimg/php:7.4
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php80:
docker:
- image: circleci/php:8.0-cli-node-browsers
- image: cimg/php:8.0
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php81:
docker:
- image: cimg/php:8.1
steps:
- checkout
- run: php -v
Expand All @@ -53,3 +61,4 @@ workflows:
- php73
- php74
- php80
- php81
2 changes: 1 addition & 1 deletion src/Annotation/Route.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ final class Route
public function __construct(
string $name,
?string $host = null,
string $path,
string $path = '/',
?string $method = null,
array $methods = [],
array $middlewares = [],
Expand Down

0 comments on commit 459948e

Please sign in to comment.