├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── Changelog.md ├── LICENSE ├── README.md ├── composer.json └── src └── PhantomInstaller └── Installer.php /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/composer.json -------------------------------------------------------------------------------- /src/PhantomInstaller/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakoch/phantomjs-installer/HEAD/src/PhantomInstaller/Installer.php --------------------------------------------------------------------------------