Skip to content

Commit

Permalink
[#74] Removed PHP8.1 support. (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk authored Mar 30, 2024
1 parent c4c5521 commit 36ac23d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2

- name: Install dependencies
run: composer install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
php-versions: ['8.2', '8.3']

steps:
- name: Checkout code
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2

- name: Install dependencies
run: composer install
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ destination repository.
```shell
composer require drevops/git-artifact
```
or download the latest release from the [GitHub releases page](https://github.com/drevops/git-artifact/releases/latest).

## Usage
```shell
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"source": "https://github.com/drevops/git-artifact"
},
"require": {
"php": ">=8.1",
"monolog/monolog": "^3.5",
"symfony/console": "^6",
"symfony/filesystem": "^6",
"symfony/finder": "^6",
"php": ">=8.2",
"czproject/git-php": "^4.2",
"symfony/process": "^6",
"symfony/monolog-bridge": "^6"
"monolog/monolog": "^3.5",
"symfony/console": "^7",
"symfony/filesystem": "^7",
"symfony/finder": "^7",
"symfony/monolog-bridge": "^7",
"symfony/process": "^7"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
Expand Down

0 comments on commit 36ac23d

Please sign in to comment.