Skip to content

Commit 0da4d38

Browse files
committed
Update tests namespace and public name of PHP SDK
1 parent efc2099 commit 0da4d38

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ All notable changes to `laravel-youtrack-sdk` will be documented in this file.
66

77
### Changed
88

9-
- Updated YouTrack PHP SDK major version to 4.0.0
9+
- Updated PHP YouTrack SDK major version to 4.0.0
1010

1111
## 3.0.0 - 2017-09-13
1212

1313
### Changed
1414

15-
- Updated YouTrack PHP SDK major version to 3.0.0
15+
- Updated PHP YouTrack SDK major version to 3.0.0
1616

1717
## 2.0.0 - 2017-08-27
1818

1919
### Changed
2020

21-
- Updated YouTrack PHP SDK major version to 2.0.0
21+
- Updated PHP YouTrack SDK major version to 2.0.0
2222

2323
## 1.0.0 - 2017-05-22
2424

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Introduction
1414

15-
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/).
15+
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/).
1616

1717
## Contents
1818

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cybercog/laravel-youtrack-sdk",
3-
"description": "Laravel wrapper for YouTrack SDK.",
3+
"description": "Laravel wrapper for PHP YouTrack SDK.",
44
"type": "library",
55
"license": "MIT",
66
"keywords": [
@@ -52,7 +52,7 @@
5252
},
5353
"autoload-dev": {
5454
"psr-4": {
55-
"Cog\\Laravel\\YouTrack\\Tests\\": "tests/"
55+
"Cog\\Tests\\Laravel\\YouTrack\\": "tests/"
5656
}
5757
},
5858
"scripts": {

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Cog\Laravel\YouTrack\Tests;
14+
namespace Cog\Tests\Laravel\YouTrack;
1515

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

1919
/**
2020
* Class TestCase.
2121
*
22-
* @package Cog\Laravel\YouTrack\Rest\Tests
22+
* @package Cog\Tests\Laravel\YouTrack
2323
*/
2424
abstract class TestCase extends Orchestra
2525
{

tests/Unit/Providers/YouTrackServiceProviderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Cog\Laravel\YouTrack\Tests\Unit\Providers;
14+
namespace Cog\Tests\Laravel\YouTrack\Unit\Providers;
1515

1616
use Cog\Contracts\YouTrack\Rest\Client\Client as ClientContract;
17-
use Cog\Laravel\YouTrack\Tests\TestCase;
17+
use Cog\Tests\Laravel\YouTrack\TestCase;
1818
use Cog\YouTrack\Rest\Client\YouTrackClient;
1919

2020
/**
2121
* Class YouTrackServiceProviderTest.
2222
*
23-
* @package Cog\Laravel\YouTrack\Tests\Unit\Providers
23+
* @package Cog\Tests\Laravel\YouTrack\Unit\Providers
2424
*/
2525
class YouTrackServiceProviderTest extends TestCase
2626
{

0 commit comments

Comments
 (0)