Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cleanup] Decouple changelog generator #5412

Merged
merged 1 commit into from
Jan 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions bin/generate-changelog.php

This file was deleted.

7 changes: 2 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"composer/xdebug-handler": "^3.0.3",
"doctrine/inflector": "^2.0.6",
"fidry/cpu-core-counter": "^0.5.1",
"illuminate/container": "^10.20",
"illuminate/container": "^10.39",
"nette/utils": "^3.2",
"nikic/php-parser": "^4.18.0",
"ondram/ci-detector": "^4.1",
"phpstan/phpdoc-parser": "^1.23",
"phpstan/phpdoc-parser": "^1.24",
"phpstan/phpstan": "^1.10.50",
"react/event-loop": "^1.5",
"react/promise": "^2.10",
Expand All @@ -43,7 +43,6 @@
"webmozart/assert": "^1.11"
},
"require-dev": {
"nategood/httpful": "^0.3.2",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3.11",
Expand All @@ -52,7 +51,6 @@
"phpunit/phpunit": "^10.1",
"rector/phpstan-rules": "^0.7.1",
"rector/rector-generator": "^0.7",
"robiningelbrecht/phpunit-pretty-print": "^1.2.2",
"spatie/enum": "^3.13",
"symplify/easy-ci": "^11.3",
"symplify/easy-coding-standard": "^12.0",
Expand Down Expand Up @@ -93,7 +91,6 @@
"rules-tests",
"tests"
],
"Rector\\Utils\\Tests\\": "utils-tests",
"Rector\\RuleDocGenerator\\": "utils/RuleDocGenerator/src",
"E2e\\Parallel\\Reflection\\Resolver\\": [
"e2e/parallel-reflection-resolver/src/",
Expand Down
1 change: 0 additions & 1 deletion ecs.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
__DIR__ . '/rules-tests',
__DIR__ . '/tests',
__DIR__ . '/utils',
__DIR__ . '/utils-tests',
__DIR__ . '/config',
__DIR__ . '/ecs.php',
__DIR__ . '/rector.php',
Expand Down
1 change: 0 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ parameters:
- tests
- rules-tests
- utils
- utils-tests

scanDirectories:
- stubs
Expand Down
7 changes: 0 additions & 7 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,9 @@
<testsuite name="main">
<directory>tests</directory>
<directory>rules-tests</directory>
<directory>utils-tests</directory>
</testsuite>
</testsuites>

<extensions>
<bootstrap class="RobinIngelbrecht\PHPUnitPrettyPrint\PhpUnitExtension">
<parameter name="enableByDefault" value="false"/>
</bootstrap>
</extensions>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I realized this is not really needed. PHPUnit itself is good enough 👍


<php>
<ini name="memory_limit" value="-1"/>
</php>
Expand Down

This file was deleted.

This file was deleted.

107 changes: 0 additions & 107 deletions utils/ChangelogGenerator/Changelog/ChangelogContentsFactory.php

This file was deleted.

139 changes: 0 additions & 139 deletions utils/ChangelogGenerator/Command/GenerateChangelogCommand.php

This file was deleted.

Loading