forked from rialto-php/puphpeteer
-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
60 lines (60 loc) · 1.32 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
57
58
59
60
{
"name": "zoon/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": "^8.0",
"ext-json": "*",
"composer/semver": "^3.0",
"zoon/rialto": "^1.5",
"psr/log": "^3.0",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"monolog/monolog": "^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11",
"symfony/console": "^7",
"symfony/filesystem": "^7",
"symfony/process": "^7",
"symfony/var-dumper": "^7",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"Nesk\\Puphpeteer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nesk\\Puphpeteer\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": "npm install",
"test": "./vendor/bin/phpunit",
"update-docs": "php bin/console doc:generate",
"stan": "vendor/bin/phpstan analyze src",
"format": "vendor/bin/php-cs-fixer fix src"
},
"config": {
"sort-packages": true
}
}