forked from rialto-php/puphpeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.28 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "nesk/puphpeteer",
"description": "A Puppeteer bridge for PHP, supporting the entire API.",
"keywords": [
"php",
"puppeteer",
"headless-chrome",
"testing",
"web",
"developer-tools",
"automation"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Johann Pardanaud",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"nesk/rialto": "dev-dev",
"psr/log": "^1.0|^2.0|^3.0",
"vierbergenlars/php-semver": "^3.0.2"
},
"require-dev": {
"monolog/monolog": "^2.0",
"phpunit/phpunit": "^9.0",
"symfony/process": "^4.0|^5.0|^6.0",
"symfony/console": "^4.0|^5.0|^6.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sietzekeuning/rialto"
}
],
"autoload": {
"psr-4": {
"Nesk\\Puphpeteer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nesk\\Puphpeteer\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": "npm install",
"test": "./vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}