Skip to content

Commit 36ac23d

Browse files
authored
[#74] Removed PHP8.1 support. (#75)
1 parent c4c5521 commit 36ac23d

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.github/workflows/release-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup PHP
2626
uses: shivammathur/setup-php@v2
2727
with:
28-
php-version: 8.1
28+
php-version: 8.2
2929

3030
- name: Install dependencies
3131
run: composer install

.github/workflows/test-php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
php-versions: ['8.1', '8.2', '8.3']
18+
php-versions: ['8.2', '8.3']
1919

2020
steps:
2121
- name: Checkout code
@@ -81,7 +81,7 @@ jobs:
8181
- name: Setup PHP
8282
uses: shivammathur/setup-php@v2
8383
with:
84-
php-version: 8.1
84+
php-version: 8.2
8585

8686
- name: Install dependencies
8787
run: composer install

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ destination repository.
8888
```shell
8989
composer require drevops/git-artifact
9090
```
91+
or download the latest release from the [GitHub releases page](https://github.com/drevops/git-artifact/releases/latest).
9192

9293
## Usage
9394
```shell

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"source": "https://github.com/drevops/git-artifact"
1616
},
1717
"require": {
18-
"php": ">=8.1",
19-
"monolog/monolog": "^3.5",
20-
"symfony/console": "^6",
21-
"symfony/filesystem": "^6",
22-
"symfony/finder": "^6",
18+
"php": ">=8.2",
2319
"czproject/git-php": "^4.2",
24-
"symfony/process": "^6",
25-
"symfony/monolog-bridge": "^6"
20+
"monolog/monolog": "^3.5",
21+
"symfony/console": "^7",
22+
"symfony/filesystem": "^7",
23+
"symfony/finder": "^7",
24+
"symfony/monolog-bridge": "^7",
25+
"symfony/process": "^7"
2626
},
2727
"require-dev": {
2828
"bamarni/composer-bin-plugin": "^1.8",

0 commit comments

Comments
 (0)