Skip to content

Commit 3e27930

Browse files
authored
Merge pull request #30 from wundii/dev
namespace renamed
2 parents 6428f80 + 1eb1fa3 commit 3e27930

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+189
-194
lines changed

bin/phplint.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
declare(strict_types=1);
44

5-
use PHPLint\Console\LintApplication;
6-
use PHPLint\DependencyInjection\LintContainerFactory;
5+
use Wundii\PHPLint\Console\LintApplication;
6+
use Wundii\PHPLint\DependencyInjection\LintContainerFactory;
77
use Symfony\Component\Console\Input\ArgvInput;
88

99
@ini_set('memory_limit', '-1');

composer.json

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,25 @@
1515
"require": {
1616
"php": ">=8.1",
1717
"ext-json": "*",
18-
"symfony/cache": "^6.4",
19-
"symfony/config": "^6.4",
20-
"symfony/console": "^6.4",
21-
"symfony/dependency-injection": "^6.4",
22-
"symfony/finder": "^6.4",
23-
"symfony/process": "^6.4",
18+
"symfony/cache": "^6.4 || ^7.0",
19+
"symfony/config": "^6.4 || ^7.0",
20+
"symfony/console": "^6.4 || ^7.0",
21+
"symfony/dependency-injection": "^6.4 || ^7.0",
22+
"symfony/finder": "^6.4 || ^7.0",
23+
"symfony/process": "^6.4 || ^7.0",
2424
"webmozart/assert": "^1.11"
2525
},
2626
"require-dev": {
27-
"phpstan/phpstan": "^1.10",
28-
"phpstan/phpstan-strict-rules": "^1.5",
29-
"phpunit/phpunit": "^10.0",
30-
"rector/rector": "^1.0",
31-
"symfony/var-dumper": "^6.4",
32-
"symplify/easy-coding-standard": "^12.0"
27+
"phpstan/phpstan": "^1.11",
28+
"phpstan/phpstan-strict-rules": "^1.6",
29+
"phpunit/phpunit": "^10.5",
30+
"rector/rector": "^1.2",
31+
"symfony/var-dumper": "^6.4 || ^7.0",
32+
"symplify/easy-coding-standard": "^12.3"
3333
},
3434
"autoload": {
3535
"psr-4": {
36-
"PHPLint\\": "src/"
37-
}
38-
},
39-
"autoload-dev": {
40-
"psr-4": {
41-
"PHPLint\\Tests\\": "tests/"
36+
"Wundii\\PHPLint\\": "src/"
4237
}
4338
},
4439
"scripts": {

config/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
->autoconfigure()
2020
;
2121

22-
$services->load('PHPLint\\', __DIR__ . '/../src/')
22+
$services->load('Wundii\\PHPLint\\', __DIR__ . '/../src/')
2323
->public()
2424
->autowire()
2525
->exclude([

phplint.php

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

33
declare(strict_types=1);
44

5-
use PHPLint\Config\LintConfig;
5+
use Wundii\PHPLint\Config\LintConfig;
66

77
return static function (LintConfig $lintConfig): void {
88
$lintConfig->paths([

src/Bootstrap/BootstrapConfig.php

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

33
declare(strict_types=1);
44

5-
namespace PHPLint\Bootstrap;
5+
namespace Wundii\PHPLint\Bootstrap;
66

77
use Exception;
88

src/Bootstrap/BootstrapConfigInitializer.php

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

33
declare(strict_types=1);
44

5-
namespace PHPLint\Bootstrap;
5+
namespace Wundii\PHPLint\Bootstrap;
66

77
use Exception;
88
use Symfony\Component\Console\Style\SymfonyStyle;

src/Bootstrap/BootstrapConfigRequirer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPLint\Bootstrap;
5+
namespace Wundii\PHPLint\Bootstrap;
66

77
use Closure;
88
use Exception;
9-
use PHPLint\Config\LintConfig;
109
use ReflectionFunction;
1110
use ReflectionNamedType;
11+
use Wundii\PHPLint\Config\LintConfig;
1212

1313
final class BootstrapConfigRequirer
1414
{

src/Bootstrap/BootstrapConfigResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPLint\Bootstrap;
5+
namespace Wundii\PHPLint\Bootstrap;
66

77
use Exception;
8-
use PHPLint\Console\OptionEnum;
8+
use Wundii\PHPLint\Console\OptionEnum;
99

1010
final class BootstrapConfigResolver
1111
{

src/Bootstrap/BootstrapInputResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace PHPLint\Bootstrap;
5+
namespace Wundii\PHPLint\Bootstrap;
66

7-
use PHPLint\Console\OptionEnum;
87
use Symfony\Component\Console\Input\InputInterface;
8+
use Wundii\PHPLint\Console\OptionEnum;
99

1010
final class BootstrapInputResolver
1111
{

src/Cache/LintCache.php

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

33
declare(strict_types=1);
44

5-
namespace PHPLint\Cache;
5+
namespace Wundii\PHPLint\Cache;
66

77
use Psr\Cache\InvalidArgumentException;
88
use Symfony\Component\Cache\Adapter\AdapterInterface;

0 commit comments

Comments
 (0)