zoilomora / editthiscookie-for-guzzle
FileCookieJar implementation for EditThisCookie in Guzzle
Package info
github.com/zoilomora/editthiscookie-for-guzzle
pkg:composer/zoilomora/editthiscookie-for-guzzle
Requires
- php: ^7.4 || ^8.0
- guzzlehttp/guzzle: ^7.2
Requires (Dev)
- pccomponentes/coding-standard: ^1.2
- phpstan/phpstan: ^0.12.59
- phpunit/phpunit: ^9.5
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-08-11 04:22:15 UTC
README
FileCookieJar implementation for Google Chrome EditThisCookie extension in Guzzle.
Usage
This implementation allows the use of cookies exported from the Google Chrome EditThisCookie extension directly in Guzzle and in turn.. the cookies that Guzzle has modified re-import them into the browser.
Example:
Once the website is logged in, export the cookies json in a cookies.json file.
<?php declare(strict_types=1); $cookieFile = './var/cookies.json'; $client = new \GuzzleHttp\Client([ 'cookies' => new \ZoiloMora\EditThisCookie\Guzzle\FileCookieJar($cookieFile), ]);
License
Licensed under the MIT license
Read LICENSE for more information
