-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.79 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 1.79 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "playwright-php/playwright",
"description": "Modern PHP library for Playwright automation: browsing, scraping, screenshots, testing, and more.",
"license": "MIT",
"type": "library",
"keywords": [
"playwright",
"php",
"browser",
"automation",
"testing",
"test",
"scraping",
"screenshots",
"web",
"headless",
"chromium",
"firefox",
"webkit"
],
"authors": [
{
"name": "Simon André",
"email": "smn.andre@gmail.com",
"homepage": "https://github.com/smnandre"
},
{
"name": "Playwright PHP Contributors",
"homepage": "https://github.com/playwright-php"
}
],
"require": {
"php": "^8.2",
"psr/clock": "^1.0",
"psr/log": "^3.0",
"symfony/console": "^6.4 || ^7.3 || ^8.0",
"symfony/process": "^6.4 || ^7.3 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"monolog/monolog": "^3.9",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"symfony/var-dumper": "^6.4 || ^7.3 || ^8.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Playwright\\": "src/"
},
"files": [
"src/Testing/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Playwright\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"bin": [
"bin/playwright-install"
]
}