Skip to content

Commit c93a702

Browse files
Initial v3 commit
1 parent 6dffdeb commit c93a702

23 files changed

+297
-416
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
version: [ '7.4', '8.0', '8.1' ]
9+
version: [ '8.1', '8.2' ]
1010

1111
steps:
1212
- uses: actions/checkout@v3

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Calculates the total number of years behind their respective newest versions for
1717
- PHP v7.4 or later
1818
- Composer v2
1919

20+
Note that 2.3.0 is the last release that will support PHP 7.4 and 8.0; v3 (expected Q3 2023) will only support PHP 8.1+.
21+
22+
Ongoing commercial support for legacy versions of PHP is available for [Corporate, Premier, and Title Sponsors](https://github.com/sponsors/ecoAPM).
23+
2024
## Installation
2125

2226
### Recommended: Composer

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ecoapm/libyear",
3-
"version": "2.3.0",
3+
"version": "3.0.0",
44
"description": "A simple measure of software dependency freshness",
55
"homepage": "https://libyear.com",
66
"readme": "README.md",
@@ -16,20 +16,20 @@
1616
"libyear"
1717
],
1818
"require": {
19-
"php": ">=7.4",
20-
"ext-json": ">=7.4",
19+
"php": ">=8.1",
20+
"ext-json": ">=8.1",
2121
"composer/semver": "3.3.2",
2222
"guzzlehttp/guzzle": "7.7.0",
2323
"wp-cli/php-cli-tools": "0.11.18"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "9.6.10",
26+
"phpunit/phpunit": "10.2.3",
2727
"mockery/mockery": "1.6.2"
2828
},
2929
"autoload": {
3030
"psr-4": {
31-
"LibYear\\": "src/",
32-
"LibYear\\Tests\\": "tests/"
31+
"ecoAPM\\LibYear\\": "src/",
32+
"ecoAPM\\LibYear\\Tests\\": "tests/"
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)