MacFJA
MacFJA
@theofidry Here some the test I run: ``` git clone https://github.com/jiaojie1989/PharBuilder.git --depth 2 git clone https://github.com/symfony/symfony-standard.git --branch v3.0.0 --depth 1 cd PharBuilder git checkout 5fb2559c60a288784d8f377c6b7f0ac81a2573c4 composer install cd .. cd...
The Composer plugin I wrote was to solve very simple but annoying problem: some of my dev dependencies were in conflict with my no-dev dependencies. (mainly because, most of my...
I did some tests yesterday. It's as you said, an issue on Windows only. The Windows console don't handle well non ASCII char in `.bat` file. I didn't find many...
From what I understand, the issue is that the command interpreter (`cmd.exe`) use encoding of the local user (and it's not UTF-8). (some reference from Microsoft: https://devblogs.microsoft.com/commandline/windows-command-line-unicode-and-utf-8-output-text-buffer/) After, I'm not...
Thanks @giacmir for the suggestion and @ElectroLutz for the PR. I left the issue open to keep the idea of custom stub. (I have to figure out some example cases...
@RyanMagnusson Something like: - Generate a stub file with a comment in it that contains the version number (generated at the event `command.package.start`) - Indicate in the composer.json where the...
@PeeHaa Any help is welcome :smiley: I don't plan to work on this for now, so go ahead
I rename the function that give the storage between version `1.3.0` and `2.0.0`. They were given the false impression that the same instance of the storage was given every time....
Right now, no. The built in Storage don't provide this feature. But I was able to easily create a new Storage that encrypt data. I will publish it when I...
Here the new encryption storage: https://github.com/MacFJA/svelte-persistent-store/blob/update/.docs/Examples/04-Encrypted-Storage.md It will be added in a few day when the PR #22 is merged The version will probably bump to `2.0.0` as there are...