symplify icon indicating copy to clipboard operation
symplify copied to clipboard

[DISCONTINUED] Check split packages in their own repositories :)

Results 29 symplify issues
Sort by recently updated
recently updated
newest added

HI, I have the following setup - src\libs\library_one\src\composer.json ``` { "name": "xxx/library_one", "type": "library", "require": { "php": "^7.4" }, "autoload": { "psr-4": { "XXX\\LibraryOne\\": "src" } }, "minimum-stability": "stable" }...

Hi, I can't get paths working with file mask and recursive search. In the README there is an example ```php // or multiple files by path to match against "fnmatch()"...

The vendor/bin/monorepo-builder init command generates ```php $parameters->set(Option::DATA_TO_APPEND, [ ComposerJsonSection::REQUIRE_DEV => [ 'phpunit/phpunit' => '^9.5', ], ]); ``` Option::DATA_TO_APPEND is deprecated, though the deprecation message isn't enormously useful to first-time users:...

On some configuration changes the cache is not properly invalidated. For example this fixer: ```php $ecsConfig->ruleWithConfiguration(FinalInternalClassFixer::class, [ 'annotation_exclude' => ['@not-fix'], 'consider_absent_docblock_as_internal_class' => \true ]); ``` When running it with the...

Hello 👋🏼! I'm actively working to be able to support multiple branches (so you can support e.g. both `1.x` and `2.x` version of your software) using `monorepo-builder` and [monorepo-split-github-action](https://github.com/symplify/monorepo-split-github-action). This...

Hi, in the monorepo builder package's `README.md` file, the [source code provided](https://github.com/symplify/monorepo-builder/blob/main/README.md?plain=1#L74) for the `monorepo-builder.php` file is a bit misleading. The comment says: > // what extra parts to add...

# Problem `MBConfig::packageDirectoriesExcludes` performs an `Assert::allFileExists($packageDirectories);`. This means that paths must either be absolute or relative to the current repository root. However, Symfony's `ExcludeDirectoryFilterIterator` will turn any non-simple (i.e. more...

The monorepo-builder configuration should ignore the package at `packages/monorepo-builder/ignore/composer.json` but the ExcludeFile iterator will only match against a sub-path. Running `composer merge` demonstrates that the invalid package contained in the...

This will report a false positive when `RequireThisOnParentMethodCallRule` is active: ```php abstract class BaseClass { final public function __construct() {} final pubic static function createOne(): static { return new static();...