Skip to content

Commit 8d8577c

Browse files
authored
Release 0.5.0 (#28)
* Release 0.4.1 * Minor cleanup * Drop support for old versions of Symfony and php * lowerst fix * fix
1 parent a5cb6c3 commit 8d8577c

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
strategy:
99
max-parallel: 10
1010
matrix:
11-
php: [ '7.2', '7.3', '7.4', '8.0']
12-
sf_version: [ '4.4.*', '5.3.*' ]
11+
php: [ '7.4', '8.0']
12+
sf_version: [ '5.4.*' ]
1313
include:
14-
- php: 8.0
14+
- php: '8.0'
15+
sf_version: '6.0.*'
16+
- php: '8.1'
1517
sf_version: '6.0.*'
1618

1719
steps:
@@ -41,7 +43,7 @@ jobs:
4143
- name: Set up PHP
4244
uses: shivammathur/[email protected]
4345
with:
44-
php-version: 7.3
46+
php-version: 7.4
4547
coverage: none
4648

4749
- name: Checkout code

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

5+
## 0.5.0
6+
7+
### Added
8+
9+
- Support for fractal 0.20.0
10+
11+
### Removed
12+
13+
- Support for PHP 7.2 and 7.3
14+
- Support for Symfony 4
15+
516
## 0.4.0
617

718
### Fixed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
}
1515
],
1616
"require": {
17-
"php": ">=7.2",
17+
"php": ">=7.4",
1818
"ext-json": "*",
1919
"league/fractal": "^0.18 || ^0.19 || ^0.20",
20-
"symfony/http-foundation": "^4.4 || ^5.2 || ^6.0",
21-
"symfony/validator": "^4.4 || ^5.2 || ^6.0"
20+
"symfony/http-foundation": "^5.4 || ^6.0",
21+
"symfony/validator": "^5.4 || ^6.0"
2222
},
2323
"require-dev": {
2424
"nyholm/nsa": "^1.1",
25-
"phpunit/phpunit": "^8.5 || ^9.5"
25+
"phpunit/phpunit": "^9.5"
2626
},
2727
"minimum-stability": "dev",
2828
"prefer-stable": true,

tests/Unit/ResponseFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public function getPerPage(): int
147147
return 10;
148148
}
149149

150-
public function getUrl(int $page): string
150+
public function getUrl($page): string
151151
{
152152
return 'http://dummy-domain-name.dummy-domain';
153153
}

0 commit comments

Comments
 (0)