Skip to content

Commit

Permalink
Update YouTrack PHP SDK to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Nov 19, 2017
1 parent 9c9d980 commit c95343f
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 4.0.0 - 2017-11-20

### Changed

- Updated YouTrack PHP SDK major version to 4.0.0

## 3.0.0 - 2017-09-13

### Changed
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Laravel wrapper for the [YouTrack PHP SDK](https://github.com/cybercog/youtrack-
- [Contributing](#contributing)
- [Testing](#testing)
- [Security](#security)
- [Credits](#credits)
- [Contributors](#contributors)
- [Alternatives](#alternatives)
- [License](#license)
- [About CyberCog](#about-cybercog)
Expand Down Expand Up @@ -243,11 +243,10 @@ $ composer test

If you discover any security related issues, please email open@cybercog.su instead of using the issue tracker.

## Credits
## Contributors

| | @mention |
|---|---|
| ![@a-komarev](https://avatars2.githubusercontent.com/u/1849174?s=64) | [@a-komarev](https://github.com/a-komarev) |
| <a href="https://github.com/a-komarev">![@a-komarev](https://avatars.githubusercontent.com/u/1849174?s=110)<br />Anton Komarev</a> |
| :---: |

[Laravel YouTrack SDK contributors list](../../contributors)

Expand Down
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"require": {
"php": "^7.1",
"cybercog/youtrack-php-sdk": "^3.0",
"cybercog/youtrack-php-sdk": "^4.0",
"illuminate/support": "~5.1.20|~5.2|~5.3|~5.4|~5.5"
},
"require-dev": {
Expand All @@ -60,13 +60,15 @@
"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.4",
"composer install --prefer-dist --no-interaction --working-dir tests/framework/5.5"
],
"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.4",
"./vendor/bin/phpunit --configuration tests/framework/5.5"
]
},
"config": {
Expand Down
8 changes: 8 additions & 0 deletions tests/framework/5.5/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"require": {
"illuminate/support": "~5.5.0"
},
"require-dev": {
"orchestra/testbench": "3.5.*"
}
}
31 changes: 31 additions & 0 deletions tests/framework/5.5/phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Package">
<directory suffix="Test.php">../../Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<php>
<env name="YOUTRACK_BASE_URI" value="https://youtrack.example.com"/>
<env name="YOUTRACK_AUTH" value="token"/>
<env name="YOUTRACK_TOKEN" value=""/>
<env name="YOUTRACK_USERNAME" value=""/>
<env name="YOUTRACK_PASSWORD" value=""/>
<env name="YOUTRACK_PROJECT" value="TEST"/>
</php>
</phpunit>

0 comments on commit c95343f

Please sign in to comment.