Brian Henry

Results 82 comments of Brian Henry

I'm not a maintainer of this project, just I use it a lot. Half the problems I've helped with are ones I've already dealt with myself, but then have taken...

I'm pretty sure the test suite won't pass with that change because I need to set the current working directory to a temporary directory to execute `composer install` and then...

The following appears correct: ``` { "minimum-stability": "dev", "prefer-stable" : true, "require": { "aws/aws-sdk-php": "2.8.31" }, "require-dev": { "coenjacobs/mozart": "dev-master", "cweagans/composer-patches": "*" }, "extra": { "patches": { "coenjacobs/mozart": { "Do...

@ChristophWurst I've created a `mozart.phar` to use without requiring Mozart in your `composer.json`, although it does still read its config from your project's `composer.json`. Please try: ``` curl -OL https://github.com/BrianHenryIE/mozart/releases/download/v0.6.0-bh/mozart.phar...

I was picturing adding something like this to the script: ``` curl -OL https://github.com/BrianHenryIE/mozart/releases/download/v0.6.0-bh/mozart.phar php mozart.phar compose rm mozart.phar ``` The `.phar` doesn't depend on Composer except to read the...

I agree it's useful to specify the expected version for the build. I was more describing the mechanics' independence from the project's composer. Did you try the script approach /...

You need a couple of lines in your composer `post-install-cmd` script to copy the files in. Something like: ``` "mkdir -p ./Plugin/mozart/dependencies/Mpdf/data; cp -R vendor/mpdf/mpdf/data ./Plugin/mozart/dependencies/Mpdf/", "mkdir -p ./Plugin/mozart/dependencies/Mpdf/ttfonts; cp...

I think a config object is a very good idea – it gives a good place for input sanitisation (e.g. I think relative directory paths should always have no leading...

The following `ClassmapReplacer.php` will skip classnames that already begin with the prefix. ```php