Skip to content

Commit

Permalink
Merge pull request #6 from cybercog/feature/laravel-5.6-support
Browse files Browse the repository at this point in the history
Add Laravel 5.6 support
  • Loading branch information
Anton Komarev authored Feb 8, 2018
2 parents 0da4d38 + 28b7a7c commit 2c6dae4
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 101 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to `laravel-youtrack-sdk` will be documented in this file.

## 4.1.0 - 2018-02-08

### Added

- Laravel 5.6 support

### Removed

- Laravel 5.1 support
- Laravel 5.2 support
- Laravel 5.3 support

## 4.0.0 - 2017-11-20

### Changed
Expand All @@ -22,4 +34,4 @@ All notable changes to `laravel-youtrack-sdk` will be documented in this file.

## 1.0.0 - 2017-05-22

- Initial release.
- Initial release
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017, Anton Komarev <a.komarev@cybercog.su>
Copyright (c) 2018, Anton Komarev <a.komarev@cybercog.su>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Laravel wrapper for the [PHP YouTrack SDK](https://github.com/cybercog/youtrack-
- [Initialize API client](#initialize-api-client)
- [API requests](#api-requests)
- [API responses](#api-responses)
- [Change log](#change-log)
- [Changelog](#changelog)
- [Contributing](#contributing)
- [Testing](#testing)
- [Security](#security)
Expand Down Expand Up @@ -225,7 +225,7 @@ $apiResponse = $youtrack->get('/issue/TEST-1');
$location = $apiResponse->statusCode();
```

## Change log
## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Expand Down
18 changes: 7 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"require": {
"php": "^7.1",
"cybercog/youtrack-php-sdk": "^4.0",
"illuminate/support": "~5.1.20|~5.2|~5.3|~5.4|~5.5"
"illuminate/support": "~5.4|~5.5|~5.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"phpunit/phpunit": "^5.7"
"friendsofphp/php-cs-fixer": "^2.10",
"phpunit/phpunit": "^5.7|^6.0|^7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -57,18 +57,14 @@
},
"scripts": {
"test-install": [
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.1",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.2",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.3",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.4",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5"
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.6"
],
"test": [
"./vendor/bin/phpunit --configuration tests/framework/5.1",
"./vendor/bin/phpunit --configuration tests/framework/5.2",
"./vendor/bin/phpunit --configuration tests/framework/5.3",
"./vendor/bin/phpunit --configuration tests/framework/5.4",
"./vendor/bin/phpunit --configuration tests/framework/5.5"
"./vendor/bin/phpunit --configuration tests/framework/5.5",
"./vendor/bin/phpunit --configuration tests/framework/5.6"
]
},
"config": {
Expand Down
8 changes: 0 additions & 8 deletions tests/framework/5.1/composer.json

This file was deleted.

8 changes: 0 additions & 8 deletions tests/framework/5.2/composer.json

This file was deleted.

31 changes: 0 additions & 31 deletions tests/framework/5.2/phpunit.xml.dist

This file was deleted.

8 changes: 0 additions & 8 deletions tests/framework/5.3/composer.json

This file was deleted.

31 changes: 0 additions & 31 deletions tests/framework/5.3/phpunit.xml.dist

This file was deleted.

8 changes: 8 additions & 0 deletions tests/framework/5.6/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"require": {
"illuminate/support": "~5.6.0"
},
"require-dev": {
"orchestra/testbench": "3.6.*"
}
}
File renamed without changes.

0 comments on commit 2c6dae4

Please sign in to comment.