json
json copied to clipboard
json/src/Conversion/JsonConverter.php missing from 1.2.2 tag?
Is this correct for missing json/src/Conversion/JsonConverter.php file and other folders from 1.2.2 tag?
This class was added in 7f958ecfe1044adaa0a90da32376fca5ef8eaf9e which is not part of the latest release yet.
when is the plan to merge this commit to current 1.2.2 tag? I'm wondering if there is mistake somewhere, for my previous project I run composer require webmozart/json after that composer.json has included "webmozart/json": "^1.2" but also I see full folder structure (src/Conversion etc. )
today I did exactly the same installation and there is missing folder structure? folder structure a mean folders under src
I did something wrong?
also documentation referring to missing class like use Webmozart\Json\Conversion\JsonConverter; which doesn't exist in stable 1.2.2
I think I can fix my problem by change from 1.2.2 to dev-master :)
when is the plan to merge this commit to current 1.2.2 tag? I'm wondering if there is mistake somewhere, for my previous project I run composer require webmozart/json after that composer.json has included "webmozart/json": "^1.2" but also I see full folder structure (src/Conversion etc. )
Maybe your minimum-stability
setting was different there so that it allowed the installation of non-stable releases. You can see the actual installed versions by running the composer show
command in your project.
Indeed, this can be the reason thanks for hint :)