Skip to content

Commit

Permalink
Update tests namespace and public name of PHP SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Dec 30, 2017
1 parent efc2099 commit 0da4d38
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,19 +6,19 @@ All notable changes to `laravel-youtrack-sdk` will be documented in this file.

### Changed

- Updated YouTrack PHP SDK major version to 4.0.0
- Updated PHP YouTrack SDK major version to 4.0.0

## 3.0.0 - 2017-09-13

### Changed

- Updated YouTrack PHP SDK major version to 3.0.0
- Updated PHP YouTrack SDK major version to 3.0.0

## 2.0.0 - 2017-08-27

### Changed

- Updated YouTrack PHP SDK major version to 2.0.0
- Updated PHP YouTrack SDK major version to 2.0.0

## 1.0.0 - 2017-05-22

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@

## Introduction

Laravel wrapper for the [YouTrack PHP SDK](https://github.com/cybercog/youtrack-php-sdk#readme) library provides set of tools to interact with [JetBrains YouTrack Issue Tracking and Project Management software](https://www.jetbrains.com/youtrack/).
Laravel wrapper for the [PHP YouTrack SDK](https://github.com/cybercog/youtrack-php-sdk#readme) library provides set of tools to interact with [JetBrains YouTrack Issue Tracking and Project Management software](https://www.jetbrains.com/youtrack/).

## Contents

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cybercog/laravel-youtrack-sdk",
"description": "Laravel wrapper for YouTrack SDK.",
"description": "Laravel wrapper for PHP YouTrack SDK.",
"type": "library",
"license": "MIT",
"keywords": [
@@ -52,7 +52,7 @@
},
"autoload-dev": {
"psr-4": {
"Cog\\Laravel\\YouTrack\\Tests\\": "tests/"
"Cog\\Tests\\Laravel\\YouTrack\\": "tests/"
}
},
"scripts": {
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -11,15 +11,15 @@
* file that was distributed with this source code.
*/

namespace Cog\Laravel\YouTrack\Tests;
namespace Cog\Tests\Laravel\YouTrack;

use Cog\Laravel\YouTrack\Providers\YouTrackServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;

/**
* Class TestCase.
*
* @package Cog\Laravel\YouTrack\Rest\Tests
* @package Cog\Tests\Laravel\YouTrack
*/
abstract class TestCase extends Orchestra
{
6 changes: 3 additions & 3 deletions tests/Unit/Providers/YouTrackServiceProviderTest.php
Original file line number Diff line number Diff line change
@@ -11,16 +11,16 @@
* file that was distributed with this source code.
*/

namespace Cog\Laravel\YouTrack\Tests\Unit\Providers;
namespace Cog\Tests\Laravel\YouTrack\Unit\Providers;

use Cog\Contracts\YouTrack\Rest\Client\Client as ClientContract;
use Cog\Laravel\YouTrack\Tests\TestCase;
use Cog\Tests\Laravel\YouTrack\TestCase;
use Cog\YouTrack\Rest\Client\YouTrackClient;

/**
* Class YouTrackServiceProviderTest.
*
* @package Cog\Laravel\YouTrack\Tests\Unit\Providers
* @package Cog\Tests\Laravel\YouTrack\Unit\Providers
*/
class YouTrackServiceProviderTest extends TestCase
{

0 comments on commit 0da4d38

Please sign in to comment.