PHPackages                             paysera/fork-squizlabs-php-sikuli - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. paysera/fork-squizlabs-php-sikuli

AbandonedArchivedLibrary

paysera/fork-squizlabs-php-sikuli
=================================

1.1.0(8y ago)01961PHPPHP &gt;=5.3

Since Mar 8Pushed 8y ago3 watchersCompare

[ Source](https://github.com/paysera/fork-squizlabs-php-sikuli)[ Packagist](https://packagist.org/packages/paysera/fork-squizlabs-php-sikuli)[ RSS](/packages/paysera-fork-squizlabs-php-sikuli/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (3)Used By (0)

About
=====

[](#about)

PHPSikuli is a PHP5 wrapper for [Sikuli](http://www.sikuli.org/).

Sikuli automates anything you see on the screen. It uses image recognition to identify and control GUI components.

Installation
============

[](#installation)

Sikuli is a Java application, that works on Windows XP+, Mac 10.6+ and most Linux/Unix systems. It requires [Java JRE 6 or JRE 7](http://www.java.com/en/download/manual.jsp) to be installed.

Clone PHPSikuli which includes Sikuli jar file:

```
git clone git@github.com:squizlabs/php-sikuli.git

```

Include either PHPSikuli.php or PHPSikuliBrowser.php in your project.

Documentation
=============

[](#documentation)

Sikuli documentation can be found [here](http://doc.sikuli.org/). Most wrapper methods have same or very similar names however their usage slightly differ. E.g:

```
// Python
topLeft = Location(reg.x, reg.y) # equivalent to
topLeft = reg.getTopLeft()

theWidth = reg.w # equivalent to
theWidth = reg.getW()

reg.h = theWidth # equivalent to
reg.setH(theWidth)

// PHP
$topLeft = $sikuli->createLocation($sikuli->getX($reg), $sikuli->getY($reg));
$topLeft = $sikuli->getTopLeft($reg);

$theWidth = $sikuli->getW($reg);

$sikuli->setH($reg);

```

Code Example
============

[](#code-example)

```
require_once 'PHPSikuli/PHPSikuliBrowser.php';

// Use Firefox.
$sikuli = new PHPSikuliBrowser('firefox');

// Go to Google.
$sikuli->goToURL('http://www.google.com');

// Search for 'Squiz Labs'
$sikuli->type('Squiz Labs');
$sikuli->keyDown('Key.ENTER');

sleep(1);

// Find the Squiz Labs Home page link on the search results page.
$link = $sikuli->find('Home');

// Highlight the found text (region) for 2 seconds.
$sikuli->highlight($link, 2);

// Click the link.
$sikuli->click($link);
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 98.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2986d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9d385187c2b529d5c1189dfc3763972f76738d24293593ff3db876fff82321db?d=identicon)[paysera.com](/maintainers/paysera.com)

---

Top Contributors

[![sertand](https://avatars.githubusercontent.com/u/997564?v=4)](https://github.com/sertand "sertand (78 commits)")[![Thenodai](https://avatars.githubusercontent.com/u/31899898?v=4)](https://github.com/Thenodai "Thenodai (1 commits)")

### Embed Badge

![Health badge](/badges/paysera-fork-squizlabs-php-sikuli/health.svg)

```
[![Health](https://phpackages.com/badges/paysera-fork-squizlabs-php-sikuli/health.svg)](https://phpackages.com/packages/paysera-fork-squizlabs-php-sikuli)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
