Skip to content

v.2.0.0 (2023-03-31)

Compare
Choose a tag to compare
@rvalitov rvalitov released this 30 Mar 17:49
· 33 commits to master since this release
5d89cb4

Supports up to PHP 8.0 and all newest dependencies.
Some dependencies are not supported anymore.
Therefore I had to switch to community driven forks.
As a result such forks are not published in the composer library and have "dev" status.
To use them you need to add the following 2 repositories to your composer.json file, so that composer knows where to look for them.

"repositories": [
    {
      "type": "git",
      "url": "https://github.com/zoonru/puphpeteer.git"
    },
    {
      "type": "git",
      "url": "https://github.com/zoonru/rialto.git"
    }
  ]

Besides, please add the following config (for example, before or after the "repositories" section) to allow composer to use "dev" versions of the packages:

"minimum-stability": "dev",
"prefer-stable": true