Skip to content

Commit 2c6dae4

Browse files
author
Anton Komarev
authored
Merge pull request #6 from cybercog/feature/laravel-5.6-support
Add Laravel 5.6 support
2 parents 0da4d38 + 28b7a7c commit 2c6dae4

File tree

11 files changed

+31
-101
lines changed

11 files changed

+31
-101
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

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

5+
## 4.1.0 - 2018-02-08
6+
7+
### Added
8+
9+
- Laravel 5.6 support
10+
11+
### Removed
12+
13+
- Laravel 5.1 support
14+
- Laravel 5.2 support
15+
- Laravel 5.3 support
16+
517
## 4.0.0 - 2017-11-20
618

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

2335
## 1.0.0 - 2017-05-22
2436

25-
- Initial release.
37+
- Initial release

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

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

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Laravel wrapper for the [PHP YouTrack SDK](https://github.com/cybercog/youtrack-
2626
- [Initialize API client](#initialize-api-client)
2727
- [API requests](#api-requests)
2828
- [API responses](#api-responses)
29-
- [Change log](#change-log)
29+
- [Changelog](#changelog)
3030
- [Contributing](#contributing)
3131
- [Testing](#testing)
3232
- [Security](#security)
@@ -225,7 +225,7 @@ $apiResponse = $youtrack->get('/issue/TEST-1');
225225
$location = $apiResponse->statusCode();
226226
```
227227

228-
## Change log
228+
## Changelog
229229

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

composer.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
"require": {
4040
"php": "^7.1",
4141
"cybercog/youtrack-php-sdk": "^4.0",
42-
"illuminate/support": "~5.1.20|~5.2|~5.3|~5.4|~5.5"
42+
"illuminate/support": "~5.4|~5.5|~5.6"
4343
},
4444
"require-dev": {
45-
"friendsofphp/php-cs-fixer": "^1.11",
46-
"phpunit/phpunit": "^5.7"
45+
"friendsofphp/php-cs-fixer": "^2.10",
46+
"phpunit/phpunit": "^5.7|^6.0|^7.0"
4747
},
4848
"autoload": {
4949
"psr-4": {
@@ -57,18 +57,14 @@
5757
},
5858
"scripts": {
5959
"test-install": [
60-
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.1",
61-
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.2",
62-
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.3",
6360
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.4",
64-
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5"
61+
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5",
62+
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.6"
6563
],
6664
"test": [
67-
"./vendor/bin/phpunit --configuration tests/framework/5.1",
68-
"./vendor/bin/phpunit --configuration tests/framework/5.2",
69-
"./vendor/bin/phpunit --configuration tests/framework/5.3",
7065
"./vendor/bin/phpunit --configuration tests/framework/5.4",
71-
"./vendor/bin/phpunit --configuration tests/framework/5.5"
66+
"./vendor/bin/phpunit --configuration tests/framework/5.5",
67+
"./vendor/bin/phpunit --configuration tests/framework/5.6"
7268
]
7369
},
7470
"config": {

tests/framework/5.1/composer.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/framework/5.2/composer.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/framework/5.2/phpunit.xml.dist

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/framework/5.3/composer.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/framework/5.3/phpunit.xml.dist

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/framework/5.6/composer.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"require": {
3+
"illuminate/support": "~5.6.0"
4+
},
5+
"require-dev": {
6+
"orchestra/testbench": "3.6.*"
7+
}
8+
}

0 commit comments

Comments
 (0)