Skip to content

Commit

Permalink
Release v6
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Feb 22, 2024
1 parent cda7276 commit 130a5c8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to `cybercog/laravel-youtrack-sdk` will be documented in thi

## [Unreleased]

## [6.0.0] - 2024-02-22

### Added

- Guzzle 7 support

### Removed

- Dropped PHP <= 8.0 support
- Dropped Guzzle 6 support

## [5.3.0] - 2020-09-13

### Added
Expand Down Expand Up @@ -77,7 +88,8 @@ All notable changes to `cybercog/laravel-youtrack-sdk` will be documented in thi

- Initial release

[Unreleased]: https://github.com/cybercog/laravel-youtrack-sdk/compare/5.3.0...master
[Unreleased]: https://github.com/cybercog/laravel-youtrack-sdk/compare/6.0.0...master
[6.0.0]: https://github.com/cybercog/laravel-youtrack-sdk/compare/5.3.0...6.0.0
[5.3.0]: https://github.com/cybercog/laravel-youtrack-sdk/compare/5.2.0...5.3.0
[5.2.0]: https://github.com/cybercog/laravel-youtrack-sdk/compare/5.1.0...5.2.0
[5.1.0]: https://github.com/cybercog/laravel-youtrack-sdk/compare/5.0.0...5.1.0
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Laravel wrapper for the [PHP YouTrack SDK](https://github.com/cybercog/youtrack-
## Requirements

- YouTrack >= 3.0 with REST-API enabled (always enabled, by default)
- PHP >= 7.1
- Guzzle HTTP Client >= 6.2
- PHP >= 8.1
- Guzzle HTTP Client >= 7.0
- Laravel >= 5.1.20

## Installation
Expand All @@ -61,15 +61,15 @@ composer installed.

Once composer is installed, execute the following command in your project root to install this library:

```shell script
```shell
composer require cybercog/laravel-youtrack-sdk
```

## Configuration

Laravel YouTrack SDK designed to work with default config, but it always could be modified. First of all publish it:

```shell script
```shell
php artisan vendor:publish --tag="youtrack-config"
```

Expand Down Expand Up @@ -229,7 +229,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Run the tests with:

```shell script
```shell
vendor/bin/phpunit
```

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"docs": "https://github.com/cybercog/youtrack-php-sdk/wiki"
},
"require": {
"php": "^7.1",
"cybercog/youtrack-php-sdk": "^4.0",
"php": "^8.1",
"cybercog/youtrack-php-sdk": "^5.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0"
},
"require-dev": {
Expand Down

0 comments on commit 130a5c8

Please sign in to comment.