-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.57 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.57 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
{
"name": "playwright-php/devices",
"description": "Playwright device descriptors in PHP (mobile & desktop screens, user agents, viewports, scale factors, touch/mobile flags).",
"license": "MIT",
"type": "library",
"keywords": [
"playwright",
"devices",
"browsers",
"user-agent",
"descriptors",
"mobile",
"tablet",
"desktop",
"emulation",
"viewport"
],
"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"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Playwright\\Device\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Playwright\\Device\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"thanks": {
"name": "playwright-php/playwright",
"url": "https://github.com/playwright-php/playwright"
}
}
}