summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json64
1 files changed, 64 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..1371ffe
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,64 @@
+{
+ "name": "phpunit/phpunit-selenium",
+ "description": "Selenium Server integration for PHPUnit",
+ "type": "library",
+ "keywords": [
+ "xunit",
+ "phpunit",
+ "testing",
+ "selenium"
+ ],
+ "homepage": "http://www.phpunit.de/",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Giorgio Sironi",
+ "email": "info@giorgiosironi.com",
+ "role": "developer"
+ },
+ {
+ "name": "Ivan Kurnosov",
+ "email": "zerkms@zerkms.com",
+ "role": "developer"
+ },
+ {
+ "name": "Paul Briton",
+ "role": "developer"
+ },
+ {
+ "name": "Patrik Štrba",
+ "role": "developer"
+ },
+ {
+ "name": "Petr Kotek",
+ "role": "developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sb@sebastian-bergmann.de",
+ "role": "original developer"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit-selenium/issues",
+ "irc": "irc://irc.freenode.net/phpunit"
+ },
+ "require": {
+ "php": ">=7.0",
+ "phpunit/phpunit": ">=6.0,<7.0",
+ "sebastian/comparator": "~1.0",
+ "ext-curl": "*",
+ "ext-dom": "*"
+ },
+ "require-dev": {
+ "phing/phing": "2.*"
+ },
+ "autoload": {
+ "classmap": [
+ "PHPUnit/"
+ ]
+ },
+ "include-path": [
+ ""
+ ]
+}