Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed PHP8.1 support. #75

Merged
merged 2 commits into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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