Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.

Commit f2919e8

Browse files
committed
Rename project to composer-consistency
1 parent 6fb75ef commit f2919e8

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ composer require --dev jakubboucek/composer-vendor-checker
2222
In your app just call `validateReqs()` method:
2323
```php
2424
<?php
25-
use JakubBoucek\ComposerVendorChecker\Checker;
25+
use JakubBoucek\ComposerConsistency\Checker;
2626

2727
Checker::validateReqs(__DIR__);
2828
```

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "jakubboucek/composer-vendor-checker",
32
"description": "Package for your app – it allows your app to check himself has consistent vendor dir (direct API, no CLI)",
3+
"name": "jakubboucek/composer-consistency",
44
"type": "library",
55
"license": "MIT",
66
"authors": [
@@ -15,12 +15,15 @@
1515
},
1616
"autoload": {
1717
"psr-4": {
18-
"JakubBoucek\\ComposerVendorChecker\\": "src/"
18+
"JakubBoucek\\ComposerConsistency\\": "src/"
1919
}
2020
},
2121
"require-dev": {
2222
"phpstan/phpstan": "^0.11"
2323
},
24+
"replace": {
25+
"jakubboucek/composer-vendor-checker": "self.version"
26+
},
2427
"extra": {
2528
"branch-alias": {
2629
"dev-master": "2.0-dev"

src/Checker.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace JakubBoucek\ComposerVendorChecker;
4+
namespace JakubBoucek\ComposerConsistency;
55

66
use RuntimeException;
77

88
/**
99
* Class Checker
1010
* Comparing packages promised by `composer.lock` in versioned part of your project and actually installed packages
1111
* in `/vendor` directory.
12-
* @package JakubBoucek\ComposerVendorChecker
1312
*/
1413
class Checker
1514
{

src/FileReadException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace JakubBoucek\ComposerVendorChecker;
4+
namespace JakubBoucek\ComposerConsistency;
55

66
use RuntimeException;
77
use Throwable;

0 commit comments

Comments
 (0)