-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.15 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.15 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
{
"name": "playwright-php/playwright-symfony",
"description": "Playwright PHP integration for Symfony BrowserKit, DomCrawler and WebTestCase",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"playwright",
"symfony",
"browserkit",
"domcrawler",
"test",
"symfony-bundle",
"e2e",
"symfony-e2e",
"symfony-test"
],
"authors": [
{
"name": "Simon André",
"email": "smn.andre@gmail.com",
"homepage": "https://github.com/smnandre"
},
{
"name": "Playwright PHP Contributors",
"homepage": "https://github.com/playwright-php/playwright"
}
],
"require": {
"php": ">=8.3",
"playwright-php/playwright": "^1.1",
"symfony/browser-kit": "^7.0 || ^8.0",
"symfony/framework-bundle": "^7.0 || ^8.0",
"symfony/http-foundation": "^7.0 || ^8.0",
"symfony/http-kernel": "^7.0 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.0",
"symfony/asset": "^7.3",
"symfony/asset-mapper": "^7.0 || ^8.0",
"symfony/css-selector": "^7.0 || ^8.0",
"symfony/event-dispatcher": "^7.0 || ^8.0",
"symfony/mime": "^7.0 || ^8.0",
"symfony/phpunit-bridge": "^7.3 || ^8.0",
"symfony/profiler-pack": "^1.0",
"symfony/security-bundle": "^7.3 || ^8.0"
},
"autoload": {
"psr-4": {
"Playwright\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Playwright\\Symfony\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"scripts": {
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix --diff",
"test": "vendor/bin/phpunit",
"test-e2e": "PLAYWRIGHT_E2E=1 vendor/bin/phpunit"
}
}