Brian Henry

Results 134 comments of Brian Henry

To skip dependencies, you can use `override_autoload` to ignore a package: ``` "override_autoload": { "symfony/polyfill-php80": {} } ``` Try this: ``` { "require": { "symfony/dependency-injection": "*", "symfony/config": "*" }, "require-dev":...

That's the same problem PR #42 was trying to fix and might be related to issue #58. I think a rewrite of the hierarchical/recursive/parent-child approach Mozart takes to packages to...

@Luc45 I think I've got a solution for you –– I've created a `mozart.phar` to use without requiring Mozart in your composer.json. I does still read its config from your...

Fixed by #63 . Unrelated to `files`. `S3Client.php` ``` use Test\Aws\Common\Client\AbstractClient; use Test\Aws\Common\Client\ClientBuilder; use Test\Aws\Common\Client\ExpiredCredentialsChecker; use Test\Aws\Common\Client\UploadBodyListener; use Test\Aws\Common\Enum\ClientOptions as Options; use Test\Aws\Common\Exception\RuntimeException; use Test\Aws\Common\Exception\InvalidArgumentException; use Test\Aws\Common\Signature\SignatureV4; use Test\Aws\Common\Model\MultipartUpload\AbstractTransfer; use...

PR #63 addresses it : ``` { "name": "christophwurst/rubix-ml-mozart", "license": "MIT", "authors": [ { "name": "Christoph Wurst", "email": "[email protected]" } ], "require": { "rubix/ml": "*" }, "require-dev": { "coenjacobs/mozart": "dev-master",...

A working solution with failing tests, not even ready for a draft PR but good enough for me to use: https://github.com/coenjacobs/mozart/compare/master...BrianHenryIE:empty-namespace-key?expand=1

I can't reproduce that on MacOS 10.15 using Bash shell. I presume since you're writing `\` that you're on Windows? I think the problem is in `Mover::moveFile()` at `Mover.php:179`, which...

Try replace that whole `} else {` and the following few lines with this: ```php } else { $clean = function($path) { return trim( preg_replace('/[\/\\\\]+/', DIRECTORY_SEPARATOR, $path), DIRECTORY_SEPARATOR ); };...

> Because that appears to be the problem here. If I do apply clean there too, the issue is in fact resolved. I did not apply `$clean` to `$file->getPathname()` because...