Fatal error: Call to undefined method Browser\Casper::setOptions()
Closed this issue · 5 comments
When trying the example, added
require 'vendor/autoload.php';
and a composer.json
{
"require": {
"phpcasperjs/phpcasperjs": "dev-master"
}
}
and then ran the script after doing a
composer install
Casperjs and phantomjs are installed of course. Running on OS X 10.9.5.
You are running with the packagist version, it is not up to date with the latest tag from github.
you may use
"require": {
"phpcasperjs/phpcasperjs": "dev-master"
},
"repositories": [
{"type": "vcs", "url": "https://github.com/alwex/php-casperjs"}
]
instead
Is the packagist version now automatically updated?
unfortunately not, I am not the maintainer of the packagist version.
@MisterDr I guess you are the maintainer. Can you transfer the maintenance so an automatic update can be configured?
Hi,
I guess I could do so. Let me see about that.
On Mon, Dec 1, 2014 at 3:38 PM, Thomas Lutz notifications@github.com
wrote:
@MisterDr https://github.com/MisterDr I guess you are the maintainer.
Can you transfer the maintenance so an automatic update can be configured?—
Reply to this email directly or view it on GitHub
#7 (comment).