This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.67 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": "pararius/panther-actions",
"type": "library",
"description": "An extension for the browser testing and web scraping library for PHP and Symfony. This adds extra assertions, actions for Symfony Panther.",
"keywords": ["E2E", "testing", "webdriver", "symfony", "behat"],
"homepage": "https://github.com/pararius/panther-actions",
"license": "MIT",
"authors": [
{
"name": "Johnny van de Laar",
"homepage": "https://github.com/jvdlaar"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-zip": "*",
"symfony/panther": "^2.0",
"phpunit/phpunit": "^9.5"
},
"require-dev": {
"behat/behat": "^3.8",
"pararius/cs": "^0.1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"symfony/dotenv": "^5.3 || ^6.0",
"symfony/framework-bundle": "^5.3 || ^6.0",
"symfony/security-core": "^5.3 || ^6.0"
},
"autoload": {
"psr-4": { "PantherActions\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\PantherActions\\": "tests/" }
},
"suggest": {
"behat/behat": "To integrate Symfony Panther with behat.",
"symfony/framework-bundle": "To integrate logging in via Symfony.",
"symfony/security-core": "To integrate logging in via Symfony."
},
"scripts": {
"cs-check": "php-cs-fixer fix -vvv --diff --dry-run",
"cs-fix": "php-cs-fixer fix --verbose --diff",
"phpstan": "phpstan analyze --no-progress --memory-limit=-1",
"phpunit": "phpunit",
"behat": "behat -f pretty"
}
}